feat: add auto index.json generation

This commit is contained in:
Kentai Radiquum 2025-01-15 21:45:01 +05:00
parent 23c206fbe6
commit cdbda95bff
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
3 changed files with 37 additions and 31 deletions

1
.gitignore vendored
View file

@ -1,3 +1,4 @@
node_modules
stickerpacks/**/*.json
*.html
ignore/

View file

@ -1,6 +1,7 @@
const config = {
stickerPacksDir: "./stickerpacks",
outDir: "./",
homeserverUrl: "https://synapse.wah.su/__thumbnail/"
}
module.exports = config

View file

@ -4,37 +4,41 @@ const fs = require("fs");
const _CreatePackPage = require("./templates/pack");
const _CreatePacksIndex = require("./templates/index");
function GenerateStaticSite() {
let PackIndex = null
let Packs = [];
try {
PackIndex = JSON.parse(fs.readFileSync(config.stickerPacksDir + "/index.json"));
} catch (e) {
console.error("No index.json found!");
process.exit(1);
}
if (!fs.existsSync(config.outDir)) fs.mkdirSync(config.outDir);
PackIndex.packs.forEach((pack) => {
const packFile = JSON.parse(fs.readFileSync(config.stickerPacksDir + "/" + pack));
if (!fs.existsSync(config.outDir + "/" + packFile.id)) fs.mkdirSync(config.outDir + "/" + packFile.id);
fs.writeFileSync(config.outDir + "/" + packFile.id + "/index.html", _CreatePackPage(PackIndex, packFile));
Packs.push({
id: packFile.id,
name: packFile.title,
image: packFile.stickers[0].id,
author: (packFile.hasOwnProperty("author") && packFile.author) ? packFile.author.name : null,
rating: packFile.hasOwnProperty("rating") ? packFile.rating : null,
stickers: packFile.stickers.length
})
console.log("preview for " + packFile.id + " created");
})
fs.writeFileSync(config.outDir + "/index.html", _CreatePacksIndex(PackIndex, Packs));
console.log("Generation complete");
let PackIndex = null
let Packs = [];
const dirents = fs.readdirSync(config.stickerPacksDir, { withFileTypes: true });
const files = dirents
.filter(dirent => dirent.isFile())
.filter(dirent => dirent.name.endsWith(".json"))
.map(dirent => dirent.name);
if (files.length == 0) {
console.error("[ERROR] NO Sticker Packs Found!");
process.exit(1);
}
console.log("[INFO] Found " + files.length + " sticker packs");
GenerateStaticSite();
module.exports = GenerateStaticSite
PackIndex = {
homeserver_url: config.homeserverUrl,
packs: files
}
fs.writeFileSync(config.stickerPacksDir + "/index.json", JSON.stringify(PackIndex));
if (!fs.existsSync(config.outDir)) fs.mkdirSync(config.outDir);
PackIndex.packs.forEach((pack) => {
const packFile = JSON.parse(fs.readFileSync(config.stickerPacksDir + "/" + pack));
if (!fs.existsSync(config.outDir + "/" + packFile.id)) fs.mkdirSync(config.outDir + "/" + packFile.id);
fs.writeFileSync(config.outDir + "/" + packFile.id + "/index.html", _CreatePackPage(PackIndex, packFile));
Packs.push({
id: packFile.id,
name: packFile.title,
image: packFile.stickers[0].id,
author: (packFile.hasOwnProperty("author") && packFile.author) ? packFile.author.name : null,
rating: packFile.hasOwnProperty("rating") ? packFile.rating : null,
stickers: packFile.stickers.length
})
console.log("preview for " + packFile.id + " created");
})
fs.writeFileSync(config.outDir + "/index.html", _CreatePacksIndex(PackIndex, Packs));
console.log("Generation complete");