mirror of
https://github.com/wah-su/mstickers.git
synced 2025-04-04 23:34:35 +00:00
feat: add auto index.json generation
This commit is contained in:
parent
23c206fbe6
commit
cdbda95bff
3 changed files with 37 additions and 31 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,3 +1,4 @@
|
|||
node_modules
|
||||
stickerpacks/**/*.json
|
||||
*.html
|
||||
ignore/
|
|
@ -1,6 +1,7 @@
|
|||
const config = {
|
||||
stickerPacksDir: "./stickerpacks",
|
||||
outDir: "./",
|
||||
homeserverUrl: "https://synapse.wah.su/__thumbnail/"
|
||||
}
|
||||
|
||||
module.exports = config
|
40
src/index.js
40
src/index.js
|
@ -4,20 +4,29 @@ const fs = require("fs");
|
|||
const _CreatePackPage = require("./templates/pack");
|
||||
const _CreatePacksIndex = require("./templates/index");
|
||||
|
||||
function GenerateStaticSite() {
|
||||
let PackIndex = null
|
||||
let Packs = [];
|
||||
let PackIndex = null
|
||||
let Packs = [];
|
||||
|
||||
try {
|
||||
PackIndex = JSON.parse(fs.readFileSync(config.stickerPacksDir + "/index.json"));
|
||||
} catch (e) {
|
||||
console.error("No index.json found!");
|
||||
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");
|
||||
|
||||
if (!fs.existsSync(config.outDir)) fs.mkdirSync(config.outDir);
|
||||
PackIndex = {
|
||||
homeserver_url: config.homeserverUrl,
|
||||
packs: files
|
||||
}
|
||||
fs.writeFileSync(config.stickerPacksDir + "/index.json", JSON.stringify(PackIndex));
|
||||
|
||||
PackIndex.packs.forEach((pack) => {
|
||||
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));
|
||||
|
@ -30,11 +39,6 @@ function GenerateStaticSite() {
|
|||
stickers: packFile.stickers.length
|
||||
})
|
||||
console.log("preview for " + packFile.id + " created");
|
||||
})
|
||||
fs.writeFileSync(config.outDir + "/index.html", _CreatePacksIndex(PackIndex, Packs));
|
||||
console.log("Generation complete");
|
||||
|
||||
}
|
||||
|
||||
GenerateStaticSite();
|
||||
module.exports = GenerateStaticSite
|
||||
})
|
||||
fs.writeFileSync(config.outDir + "/index.html", _CreatePacksIndex(PackIndex, Packs));
|
||||
console.log("Generation complete");
|
||||
|
|
Loading…
Add table
Reference in a new issue