mapcomplete/scripts/generateLayouts.ts

243 lines
8.2 KiB
TypeScript
Raw Normal View History

2021-12-21 18:35:31 +01:00
import {appendFileSync, existsSync, mkdirSync, readFileSync, writeFile, writeFileSync} from "fs";
2020-11-17 02:22:48 +01:00
import Locale from "../UI/i18n/Locale";
import Translations from "../UI/i18n/Translations";
import {Translation} from "../UI/i18n/Translation";
import Constants from "../Models/Constants";
2021-04-10 15:01:28 +02:00
import * as all_known_layouts from "../assets/generated/known_layers_and_themes.json"
import {LayoutConfigJson} from "../Models/ThemeConfig/Json/LayoutConfigJson";
import LayoutConfig from "../Models/ThemeConfig/LayoutConfig";
2021-03-17 14:17:33 +01:00
const sharp = require('sharp');
2021-12-21 18:35:31 +01:00
const template = readFileSync("theme.html", "utf8");
const codeTemplate = readFileSync("index_theme.ts.template", "utf8");
2021-03-17 14:17:33 +01:00
2021-01-06 02:21:50 +01:00
function enc(str: string): string {
return encodeURIComponent(str.toLowerCase());
}
const alreadyWritten = []
async function createIcon(iconPath: string, size: number) {
let name = iconPath.split(".").slice(0, -1).join(".");
2020-11-17 16:29:51 +01:00
if (name.startsWith("./")) {
name = name.substr(2)
}
const newname = `${name}${size}.png`
2020-11-06 03:17:27 +01:00
.replace(/\//g, "_")
.replace("assets_", "assets/generated/");
if (alreadyWritten.indexOf(newname) >= 0) {
return newname;
}
alreadyWritten.push(newname);
try {
readFileSync(newname);
return newname; // File already exists - nothing to do
} catch (e) {
// Errors are normal here if this file exists
}
try {
// We already read to file, in order to crash here if the file is not found
2020-11-06 03:17:27 +01:00
readFileSync(iconPath);
let img = await sharp(iconPath)
let resized = await img.resize(size)
await resized.toFile(newname)
} catch (e) {
console.error("Could not read icon", iconPath, "due to", e)
}
return newname;
2020-07-25 18:00:08 +02:00
}
async function createManifest(layout: LayoutConfig) {
const name = layout.id;
2021-03-16 20:03:19 +01:00
Translation.forcedLanguage = "en"
const icons = [];
2020-08-22 03:15:42 +02:00
let icon = layout.icon;
2020-11-06 03:17:27 +01:00
if (icon.endsWith(".svg") || icon.startsWith("<svg") || icon.startsWith("<?xml")) {
// This is an svg. Lets create the needed pngs!
2020-11-06 03:17:27 +01:00
let path = layout.icon;
if (layout.icon.startsWith("<")) {
// THis is already the svg
2020-11-17 16:29:51 +01:00
path = "./assets/generated/" + layout.id + "_logo.svg"
2020-11-06 03:17:27 +01:00
writeFileSync(path, layout.icon)
}
const sizes = [72, 96, 120, 128, 144, 152, 180, 192, 384, 512];
for (const size of sizes) {
const name = await createIcon(path, size);
icons.push({
src: name,
sizes: size + "x" + size,
type: "image/png"
})
}
icons.push({
2020-11-06 03:17:27 +01:00
src: path,
sizes: "513x513",
type: "image/svg"
})
} else if (icon.endsWith(".png")) {
2021-07-06 15:43:21 +02:00
icons.push({
src: icon,
sizes: "513x513",
2021-07-06 15:53:42 +02:00
type: "image/png"
2021-07-06 15:43:21 +02:00
})
} else {
2020-11-06 03:17:27 +01:00
console.log(icon)
throw "Icon is not an svg for " + layout.id
}
2021-06-18 01:24:31 +02:00
const ogTitle = Translations.WT(layout.title).txt;
const ogDescr = Translations.WT(layout.description ?? "").txt;
2021-03-17 14:17:33 +01:00
return {
name: name,
short_name: ogTitle,
start_url: `${layout.id.toLowerCase()}.html`,
2022-01-27 02:10:28 +01:00
lang: "en",
display: "standalone",
background_color: "#fff",
description: ogDescr,
orientation: "portrait-primary, landscape-primary",
2022-01-06 21:05:52 +01:00
icons: icons,
2022-01-26 21:40:38 +01:00
categories: ["map", "navigation"]
2021-03-17 14:17:33 +01:00
};
}
2021-03-17 14:17:33 +01:00
async function createLandingPage(layout: LayoutConfig, manifest) {
2020-11-11 16:23:49 +01:00
Locale.language.setData(layout.language[0]);
2022-01-18 20:18:12 +01:00
const ogTitle = Translations.WT(layout.title).txt.replace(/"/g, '\\"');
const ogDescr = Translations.WT(layout.shortDescription ?? "Easily add and edit geodata with OpenStreetMap").txt.replace(/"/g, '\\"');
const ogImage = layout.socialImage;
let customCss = "";
if (layout.customCss !== undefined && layout.customCss !== "") {
try {
const cssContent = readFileSync(layout.customCss);
customCss = "<style>" + cssContent + "</style>";
} catch (e) {
customCss = `<link rel='stylesheet' href="${layout.customCss}"/>`
}
}
const og = `
2022-01-18 20:18:12 +01:00
<meta property="og:image" content="${ogImage ?? 'assets/SocialImage.png'}">
<meta property="og:title" content="${ogTitle}">
2022-01-18 20:18:12 +01:00
<meta property="og:description" content="${ogDescr}">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@mapcomplete.osm;be">
<meta name="twitter:creator" content="@pietervdvn">
<meta name="twitter:title" content="${ogTitle}">
<meta name="twitter:description" content="${ogDescr}">
<meta name="twitter:image" content="${ogImage}">`
2020-11-06 03:17:27 +01:00
let icon = layout.icon;
if (icon.startsWith("<?xml") || icon.startsWith("<svg")) {
// This already is an svg
2020-11-17 16:29:51 +01:00
icon = `./assets/generated/${layout.id}_icon.svg`
2020-11-06 03:17:27 +01:00
writeFileSync(icon, layout.icon);
}
2021-03-17 14:17:33 +01:00
const apple_icons = []
for (const icon of manifest.icons) {
if (icon.type !== "image/png") {
2021-03-17 14:17:33 +01:00
continue;
}
apple_icons.push(`<link rel="apple-touch-icon" sizes="${icon.sizes}" href="${icon.src}">`)
}
2021-03-16 20:03:19 +01:00
let themeSpecific = [
`<title>${ogTitle}</title>`,
`<link rel="manifest" href="${enc(layout.id)}.webmanifest">`,
og,
customCss,
`<link rel="icon" href="${icon}" sizes="any" type="image/svg+xml">`,
2021-03-17 14:17:33 +01:00
...apple_icons
2021-03-16 20:03:19 +01:00
].join("\n")
let output = template
.replace("Loading MapComplete, hang on...", `Loading MapComplete theme <i>${ogTitle}</i>...`)
2021-12-21 18:35:31 +01:00
.replace(/<!-- THEME-SPECIFIC -->.*<!-- THEME-SPECIFIC-END-->/s, themeSpecific)
.replace("<script src=\"./index.ts\"></script>", `<script src='./index_${layout.id}.ts'></script>`);
try {
output = output
2020-11-06 03:17:27 +01:00
.replace(/<!-- DECORATION 0 START -->.*<!-- DECORATION 0 END -->/s, `<img src='${icon}' width="100%" height="100%">`)
.replace(/<!-- DECORATION 1 START -->.*<!-- DECORATION 1 END -->/s, `<img src='${icon}' width="100%" height="100%">`);
} catch (e) {
console.warn("Error while applying logo: ", e)
}
return output;
}
2022-01-26 21:40:38 +01:00
async function createIndexFor(theme: LayoutConfig) {
const filename = "index_" + theme.id + ".ts"
2021-12-21 18:35:31 +01:00
writeFileSync(filename, `import * as themeConfig from "./assets/generated/themes/${theme.id}.json"\n`)
appendFileSync(filename, codeTemplate)
}
2020-11-17 16:29:51 +01:00
const generatedDir = "./assets/generated";
if (!existsSync(generatedDir)) {
2020-11-17 16:29:51 +01:00
mkdirSync(generatedDir)
}
2022-01-26 21:40:38 +01:00
const blacklist = ["", "test", ".", "..", "manifest", "index", "land", "preferences", "account", "openstreetmap", "custom", "theme"]
// @ts-ignore
const all: LayoutConfigJson[] = all_known_layouts.themes;
2021-04-10 15:01:28 +02:00
for (const i in all) {
const layoutConfigJson: LayoutConfigJson = all[i]
2021-04-10 15:01:28 +02:00
const layout = new LayoutConfig(layoutConfigJson, true, "generating layouts")
const layoutName = layout.id
if (blacklist.indexOf(layoutName.toLowerCase()) >= 0) {
console.log(`Skipping a layout with name${layoutName}, it is on the blacklist`);
continue;
}
const err = err => {
if (err !== null) {
console.log("Could not write manifest for ", layoutName, " because ", err)
}
};
createManifest(layout).then(manifObj => {
2021-02-28 23:46:47 +01:00
const manif = JSON.stringify(manifObj, undefined, 2);
const manifestLocation = encodeURIComponent(layout.id.toLowerCase()) + ".webmanifest";
writeFile(manifestLocation, manif, err);
2021-03-17 14:17:33 +01:00
// Create a landing page for the given theme
createLandingPage(layout, manifObj).then(landing => {
writeFile(enc(layout.id) + ".html", landing, err)
});
2021-12-21 18:35:31 +01:00
createIndexFor(layout)
2021-07-06 15:43:21 +02:00
}).catch(e => console.log("Could not generate the manifest: ", e))
}
2020-10-25 17:26:15 +01:00
2021-03-16 20:03:19 +01:00
createManifest(new LayoutConfig({
2022-01-18 20:18:12 +01:00
icon: "assets/svg/mapcomplete_logo.svg",
id: "index",
layers: [],
maintainer: "Pieter Vander Vennet",
2022-01-18 20:18:12 +01:00
socialImage: "assets/SocialImage.png",
startLat: 0,
startLon: 0,
startZoom: 0,
title: {en: "MapComplete"},
version: Constants.vNumber,
description: {en: "A thematic map viewer and editor based on OpenStreetMap"}
})).then(manifObj => {
2021-03-16 20:03:19 +01:00
const manif = JSON.stringify(manifObj, undefined, 2);
writeFileSync("index.manifest", manif)
})
2021-11-18 23:42:03 +01:00
2020-09-17 19:06:32 +02:00
console.log("All done!");