forked from MapComplete/MapComplete
		
	
		
			
				
	
	
		
			70 lines
		
	
	
		
			No EOL
		
	
	
		
			2.6 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			70 lines
		
	
	
		
			No EOL
		
	
	
		
			2.6 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
 | 
						|
/*
 | 
						|
 * This script attempt to automatically fix some basic issues when a theme from the custom generator is loaded
 | 
						|
 */
 | 
						|
import {Utils} from "../Utils"
 | 
						|
Utils.runningFromConsole = true;
 | 
						|
import {readFileSync, writeFileSync} from "fs";
 | 
						|
import {LayoutConfigJson} from "../Customizations/JSON/LayoutConfigJson";
 | 
						|
import {Layer} from "leaflet";
 | 
						|
import LayerConfig from "../Customizations/JSON/LayerConfig";
 | 
						|
import SmallLicense from "../Models/smallLicense";
 | 
						|
 | 
						|
if(process.argv.length == 2){
 | 
						|
    console.log("USAGE: ts-node scripts/fixTheme <path to theme>")
 | 
						|
    throw "No path specified"
 | 
						|
}
 | 
						|
 | 
						|
const path = process.argv[2]
 | 
						|
const dir = path.substring(0, path.lastIndexOf("/"))
 | 
						|
 | 
						|
console.log("Fixing up ", path)
 | 
						|
 | 
						|
const themeConfigJson : LayoutConfigJson = JSON.parse(readFileSync(path, "UTF8"))
 | 
						|
 | 
						|
const linuxHints = []
 | 
						|
const licenses : SmallLicense[] = []
 | 
						|
 | 
						|
const replacements: {source: string, destination: string}[] = []
 | 
						|
 | 
						|
for (const layerConfigJson of themeConfigJson.layers) {
 | 
						|
    if(typeof (layerConfigJson) === "string"){
 | 
						|
        continue;
 | 
						|
    }
 | 
						|
    if(layerConfigJson["overpassTags"] !== undefined){
 | 
						|
        const tags = layerConfigJson["overpassTags"];
 | 
						|
        layerConfigJson["overpassTags"] = undefined;
 | 
						|
        layerConfigJson["source"] = { osmTags : tags}
 | 
						|
    }
 | 
						|
    // @ts-ignore
 | 
						|
    const layerConfig = new LayerConfig(layerConfigJson, true)
 | 
						|
    const images : string[] = Array.from(layerConfig.ExtractImages())
 | 
						|
    const remoteImages = images.filter(img => img.startsWith("http"))
 | 
						|
    for (const remoteImage of remoteImages) {
 | 
						|
        linuxHints.push("wget " + remoteImage)
 | 
						|
        const imgPath = remoteImage.substring(remoteImage.lastIndexOf("/") + 1)
 | 
						|
        licenses.push({
 | 
						|
            path: imgPath,
 | 
						|
            license: "",
 | 
						|
            authors: [],
 | 
						|
            sources: [remoteImage]
 | 
						|
        })
 | 
						|
        replacements.push({source: remoteImage, destination: `${dir}/${imgPath}`})
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
let fixedThemeJson = JSON.stringify(themeConfigJson, null , "  ")
 | 
						|
for (const replacement of replacements) {
 | 
						|
    fixedThemeJson = fixedThemeJson.replace(new RegExp(replacement.source, "g"), replacement.destination)
 | 
						|
}
 | 
						|
 | 
						|
const fixScriptPath = dir  + "/fix_script_"+path.replace(/\//g,"_")+".sh"
 | 
						|
writeFileSync(dir + "/generated.license_info.json", JSON.stringify(licenses, null, "  "))
 | 
						|
writeFileSync(fixScriptPath, linuxHints.join("\n"))
 | 
						|
writeFileSync(path+".autofixed.json", fixedThemeJson)
 | 
						|
 | 
						|
console.log(`IMPORTANT:
 | 
						|
 1) run ${fixScriptPath}
 | 
						|
 2) Copy generated.license_info.json over into license_info.json and add the missing attributions and authors
 | 
						|
 3) Verify ${path}.autofixed.json as theme, and rename it to ${path}
 | 
						|
 4) Delete the fix script and other unneeded files`) |