2022-07-02 01:59:26 +02:00
|
|
|
/***
|
|
|
|
* Parses presets from the iD repository and extracts some usefull tags from them
|
|
|
|
*/
|
|
|
|
import ScriptUtils from "./ScriptUtils";
|
|
|
|
import {existsSync, readFileSync, writeFileSync} from "fs";
|
|
|
|
import * as known_languages from "../assets/language_native.json"
|
|
|
|
import {LayerConfigJson} from "../Models/ThemeConfig/Json/LayerConfigJson";
|
|
|
|
import {QuestionableTagRenderingConfigJson} from "../Models/ThemeConfig/Json/QuestionableTagRenderingConfigJson";
|
|
|
|
import SmallLicense from "../Models/smallLicense";
|
|
|
|
|
|
|
|
interface IconThief {
|
|
|
|
steal(iconName: string): boolean
|
|
|
|
}
|
|
|
|
|
2022-07-02 02:45:59 +02:00
|
|
|
interface IdPresetJson {
|
2022-07-02 01:59:26 +02:00
|
|
|
icon: string,
|
|
|
|
geometry: ("point" | "line" | "area")[]
|
|
|
|
/**
|
|
|
|
* Extra search terms
|
|
|
|
*/
|
|
|
|
terms: string []
|
|
|
|
tags: Record<string, string>
|
|
|
|
name: string,
|
2022-07-02 02:45:59 +02:00
|
|
|
searchable?: boolean,
|
2022-07-02 01:59:26 +02:00
|
|
|
}
|
|
|
|
|
2022-07-02 02:45:59 +02:00
|
|
|
class IdPreset implements IdPresetJson {
|
|
|
|
private _preset: IdPresetJson;
|
|
|
|
|
|
|
|
constructor(preset: IdPresetJson) {
|
|
|
|
this._preset = preset;
|
|
|
|
}
|
|
|
|
|
|
|
|
public get searchable(): boolean {
|
|
|
|
return this._preset.searchable
|
|
|
|
}
|
|
|
|
|
|
|
|
public get name() {
|
|
|
|
return this._preset.name
|
|
|
|
}
|
|
|
|
|
|
|
|
public get terms() {
|
|
|
|
return this._preset.terms
|
|
|
|
}
|
|
|
|
|
|
|
|
public get tags() {
|
|
|
|
return this._preset.tags
|
|
|
|
}
|
|
|
|
|
|
|
|
public get geometry() {
|
|
|
|
return this._preset.geometry
|
|
|
|
}
|
|
|
|
|
|
|
|
public get icon(): string {
|
|
|
|
return this._preset.icon
|
|
|
|
}
|
|
|
|
|
|
|
|
static fromFile(file: string): IdPreset {
|
|
|
|
return new IdPreset(JSON.parse(readFileSync(file, 'utf8')))
|
|
|
|
}
|
|
|
|
|
|
|
|
public parseTags(): string | { and: string[] } {
|
|
|
|
const preset = this._preset;
|
|
|
|
const tagKeys = Object.keys(preset.tags)
|
|
|
|
if (tagKeys.length === 1) {
|
|
|
|
return tagKeys[0] + "=" + preset.tags[tagKeys[0]]
|
|
|
|
} else {
|
|
|
|
return {
|
|
|
|
and: tagKeys.map(key => key + "=" + preset.tags[key])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
class MakiThief implements IconThief {
|
|
|
|
public readonly _prefix: string;
|
2022-07-02 01:59:26 +02:00
|
|
|
private readonly _directory: string;
|
2022-07-02 02:45:59 +02:00
|
|
|
private readonly _license: SmallLicense;
|
2022-07-02 01:59:26 +02:00
|
|
|
private readonly _targetDir: string;
|
2022-07-02 02:45:59 +02:00
|
|
|
|
|
|
|
constructor(directory: string, targetDir: string,
|
|
|
|
license: SmallLicense,
|
|
|
|
prefix: string = "maki-") {
|
|
|
|
this._license = license;
|
2022-07-02 01:59:26 +02:00
|
|
|
this._directory = directory;
|
|
|
|
this._targetDir = targetDir;
|
2022-07-02 02:45:59 +02:00
|
|
|
this._prefix = prefix;
|
2022-07-02 01:59:26 +02:00
|
|
|
}
|
2022-07-02 02:45:59 +02:00
|
|
|
|
|
|
|
public steal(iconName: string): boolean {
|
|
|
|
const target = this._targetDir + iconName + ".svg"
|
|
|
|
if (existsSync(target)) {
|
|
|
|
return true
|
2022-07-02 01:59:26 +02:00
|
|
|
}
|
2022-07-02 02:45:59 +02:00
|
|
|
try {
|
|
|
|
|
|
|
|
const file = readFileSync(this._directory + iconName + ".svg", "utf8")
|
|
|
|
writeFileSync(target, file, 'utf8')
|
2022-07-02 01:59:26 +02:00
|
|
|
|
2022-07-02 02:45:59 +02:00
|
|
|
writeFileSync(target + ".license_info.json",
|
|
|
|
JSON.stringify(
|
|
|
|
{...this._license, path: this._prefix + iconName + ".svg"}), 'utf8')
|
|
|
|
console.log("Successfully stolen " + iconName)
|
2022-07-02 01:59:26 +02:00
|
|
|
return true
|
2022-07-02 02:45:59 +02:00
|
|
|
} catch (e) {
|
|
|
|
console.log("Could not steal " + iconName + " due to " + e.message)
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
class AggregateIconThief implements IconThief {
|
|
|
|
private readonly makiThiefs: MakiThief[];
|
|
|
|
|
|
|
|
constructor(makiThiefs: MakiThief[]) {
|
|
|
|
this.makiThiefs = makiThiefs;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public steal(iconName: string): boolean {
|
|
|
|
for (const makiThief1 of this.makiThiefs) {
|
|
|
|
if (iconName.startsWith(makiThief1._prefix)) {
|
|
|
|
return makiThief1.steal(iconName.substr(makiThief1._prefix.length))
|
|
|
|
}
|
2022-07-02 01:59:26 +02:00
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
class IdThief {
|
|
|
|
private readonly _idPresetsRepository: string;
|
|
|
|
|
|
|
|
private readonly _tranlationFiles: Record<string, object> = {}
|
|
|
|
private readonly _knownLanguages: string[]
|
|
|
|
private readonly _iconThief: IconThief;
|
|
|
|
|
|
|
|
public constructor(idPresetsRepository: string, iconThief: IconThief) {
|
|
|
|
this._idPresetsRepository = idPresetsRepository;
|
|
|
|
this._iconThief = iconThief;
|
|
|
|
const knownById = ScriptUtils.readDirRecSync(`${this._idPresetsRepository}/dist/translations/`)
|
|
|
|
.map(pth => pth.substring(pth.lastIndexOf('/') + 1, pth.length - '.json'.length))
|
|
|
|
.filter(lng => !lng.endsWith('.min'));
|
2022-07-02 02:45:59 +02:00
|
|
|
const missing = Object.keys(known_languages).filter(lng => knownById.indexOf(lng.replace('-', '_')) < 0)
|
2022-07-02 01:59:26 +02:00
|
|
|
this._knownLanguages = knownById.filter(lng => known_languages[lng] !== undefined)
|
|
|
|
console.log("Id knows following languages:", this._knownLanguages.join(", "), "missing:", missing)
|
|
|
|
}
|
|
|
|
|
|
|
|
public getTranslation(language: string, ...path: string[]) {
|
|
|
|
let obj = this.loadTranslationFile(language)[language]
|
|
|
|
for (const p of path) {
|
|
|
|
obj = obj[p]
|
|
|
|
if (obj === undefined) {
|
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return obj
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-07-02 02:45:59 +02:00
|
|
|
/**
|
|
|
|
* Creates a mapRendering-mapping for the 'shop' theme
|
|
|
|
*/
|
|
|
|
public readShopIcons(): { if: string | { and: string[] }, then: string }[] {
|
|
|
|
|
|
|
|
const dir = this._idPresetsRepository + "/data/presets/shop"
|
|
|
|
|
|
|
|
const mappings:
|
|
|
|
{
|
|
|
|
if: string | { and: string[] },
|
|
|
|
then: string
|
|
|
|
}[] = []
|
|
|
|
const files = ScriptUtils.readDirRecSync(dir, 1);
|
|
|
|
for (const file of files) {
|
|
|
|
const preset = IdPreset.fromFile(file);
|
|
|
|
|
|
|
|
if (!this._iconThief.steal(preset.icon)) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
const mapping = {
|
|
|
|
if: preset.parseTags(),
|
|
|
|
then: "circle:white;./assets/layers/shops/" + preset.icon + ".svg"
|
|
|
|
}
|
|
|
|
mappings.push(mapping)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return mappings
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-07-02 01:59:26 +02:00
|
|
|
/**
|
|
|
|
* Creates a tagRenderingConfigJson for the 'shop' theme
|
|
|
|
*/
|
2022-07-02 02:45:59 +02:00
|
|
|
public readShopPresets(): { if, then, hideInAnswer?: string | boolean }[] {
|
2022-07-02 01:59:26 +02:00
|
|
|
|
|
|
|
const dir = this._idPresetsRepository + "/data/presets/shop"
|
|
|
|
|
|
|
|
const mappings:
|
|
|
|
{
|
2022-07-02 02:45:59 +02:00
|
|
|
if: string | { and: string[] },
|
2022-07-02 01:59:26 +02:00
|
|
|
then: Record<string, string>,
|
|
|
|
hideInAnswer?: string | boolean
|
2022-07-02 02:45:59 +02:00
|
|
|
icon?: {
|
|
|
|
|
2022-07-02 01:59:26 +02:00
|
|
|
path: string,
|
|
|
|
/**
|
|
|
|
* Size of the image
|
|
|
|
*/
|
|
|
|
class: "small" | "medium" | "large" | string
|
|
|
|
}
|
|
|
|
}[] = []
|
|
|
|
const files = ScriptUtils.readDirRecSync(dir, 1);
|
|
|
|
for (const file of files) {
|
2022-07-02 02:45:59 +02:00
|
|
|
const name = file.substring(file.lastIndexOf('/') + 1, file.length - '.json'.length)
|
|
|
|
const preset = IdPreset.fromFile(file)
|
2022-07-02 01:59:26 +02:00
|
|
|
|
2022-07-02 02:45:59 +02:00
|
|
|
if (preset.searchable === false) {
|
2022-07-02 01:59:26 +02:00
|
|
|
continue
|
|
|
|
}
|
2022-07-02 02:45:59 +02:00
|
|
|
|
|
|
|
console.log(` ${name} (shop=${preset.tags["shop"]}), ${preset.icon}`)
|
|
|
|
|
|
|
|
const thenClause: Record<string, string> = {
|
2022-07-02 01:59:26 +02:00
|
|
|
en: preset.name
|
|
|
|
}
|
|
|
|
for (const lng of this._knownLanguages) {
|
2022-07-02 02:45:59 +02:00
|
|
|
const tr = this.getTranslation(lng, "presets", "presets", "shop/" + name, "name")
|
|
|
|
if (tr === undefined) {
|
2022-07-02 01:59:26 +02:00
|
|
|
continue
|
|
|
|
}
|
2022-07-02 02:45:59 +02:00
|
|
|
thenClause[lng.replace('-', '_')] = tr
|
2022-07-02 01:59:26 +02:00
|
|
|
}
|
2022-07-02 02:45:59 +02:00
|
|
|
|
|
|
|
let tag = preset.parseTags();
|
2022-07-02 01:59:26 +02:00
|
|
|
const mapping = {
|
|
|
|
if: tag,
|
|
|
|
then: thenClause
|
|
|
|
}
|
2022-07-02 02:45:59 +02:00
|
|
|
if (preset.tags["shop"] == "yes") {
|
2022-07-02 01:59:26 +02:00
|
|
|
mapping["hideInAnswer"] = true
|
|
|
|
mapping.if["en"] = "Unspecified shop"
|
|
|
|
}
|
2022-07-02 02:45:59 +02:00
|
|
|
|
|
|
|
if (this._iconThief.steal(preset.icon)) {
|
2022-07-02 01:59:26 +02:00
|
|
|
mapping["icon"] = {
|
2022-07-02 02:45:59 +02:00
|
|
|
path: "./assets/layers/shops/" + preset.icon + ".svg",
|
|
|
|
class: "medium"
|
2022-07-02 01:59:26 +02:00
|
|
|
}
|
2022-07-02 02:45:59 +02:00
|
|
|
} else {
|
|
|
|
console.log(preset.icon + " could not be stolen :(")
|
2022-07-02 01:59:26 +02:00
|
|
|
}
|
2022-07-02 02:45:59 +02:00
|
|
|
|
2022-07-02 01:59:26 +02:00
|
|
|
mappings.push(mapping)
|
2022-07-02 02:45:59 +02:00
|
|
|
|
2022-07-02 01:59:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return mappings
|
|
|
|
}
|
|
|
|
|
|
|
|
private loadTranslationFile(language: string): object {
|
|
|
|
const cached = this._tranlationFiles[language]
|
|
|
|
if (cached) {
|
|
|
|
return cached
|
|
|
|
}
|
|
|
|
return this._tranlationFiles[language] = JSON.parse(readFileSync(`${this._idPresetsRepository}/dist/translations/${language}.json`, 'utf8'))
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
const targetDir = "./assets/layers/shops/"
|
2022-07-02 02:45:59 +02:00
|
|
|
|
|
|
|
const makiThief = new MakiThief('../maki/icons/', targetDir + "maki-", {
|
|
|
|
authors: ['Maki icon set'],
|
|
|
|
license: 'CC0',
|
|
|
|
path: null,
|
|
|
|
sources: ["https://github.com/mapbox/maki"]
|
|
|
|
}, 'maki-');
|
|
|
|
|
|
|
|
|
|
|
|
const temakiThief = new MakiThief('../temaki/icons/', targetDir + "temaki-", {
|
|
|
|
authors: ['Temaki icon set'],
|
|
|
|
license: 'CC0',
|
|
|
|
path: null,
|
|
|
|
sources: ["https://github.com/ideditor/temaki"]
|
|
|
|
}, 'temaki-');
|
|
|
|
const fasThief = new MakiThief('../Font-Awesome/svgs/solid/', targetDir + "fas-", {
|
|
|
|
authors: ['Font-Awesome icon set'],
|
|
|
|
license: 'CC-BY 4.0',
|
|
|
|
path: null,
|
|
|
|
sources: ["https://github.com/FortAwesome/Font-Awesome"]
|
|
|
|
}, 'fas-');
|
2022-07-02 01:59:26 +02:00
|
|
|
const iconThief = new AggregateIconThief(
|
2022-07-02 02:45:59 +02:00
|
|
|
[makiThief, temakiThief, fasThief]
|
2022-07-02 01:59:26 +02:00
|
|
|
)
|
|
|
|
|
2022-07-02 02:45:59 +02:00
|
|
|
const thief = new IdThief("../id-tagging-schema/", iconThief)
|
2022-07-02 01:59:26 +02:00
|
|
|
|
2022-07-02 02:45:59 +02:00
|
|
|
const shopLayerPath = targetDir + "shops.json"
|
|
|
|
const shopLayer = <LayerConfigJson>JSON.parse(readFileSync(shopLayerPath, 'utf8'))
|
|
|
|
const type = <QuestionableTagRenderingConfigJson>shopLayer.tagRenderings.find(tr => tr["id"] == "shops-type-from-id")
|
|
|
|
type.mappings = thief.readShopPresets()
|
|
|
|
shopLayer.mapRendering[0]["icon"]["mappings"] = thief.readShopIcons()
|
|
|
|
writeFileSync(shopLayerPath, JSON.stringify(shopLayer, null, " "), 'utf8')
|