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
|
node_modules
|
||||||
stickerpacks/**/*.json
|
stickerpacks/**/*.json
|
||||||
|
*.html
|
||||||
ignore/
|
ignore/
|
|
@ -1,6 +1,7 @@
|
||||||
const config = {
|
const config = {
|
||||||
stickerPacksDir: "./stickerpacks",
|
stickerPacksDir: "./stickerpacks",
|
||||||
outDir: "./",
|
outDir: "./",
|
||||||
|
homeserverUrl: "https://synapse.wah.su/__thumbnail/"
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = config
|
module.exports = config
|
66
src/index.js
66
src/index.js
|
@ -4,37 +4,41 @@ const fs = require("fs");
|
||||||
const _CreatePackPage = require("./templates/pack");
|
const _CreatePackPage = require("./templates/pack");
|
||||||
const _CreatePacksIndex = require("./templates/index");
|
const _CreatePacksIndex = require("./templates/index");
|
||||||
|
|
||||||
function GenerateStaticSite() {
|
let PackIndex = null
|
||||||
let PackIndex = null
|
let Packs = [];
|
||||||
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");
|
|
||||||
|
|
||||||
|
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();
|
PackIndex = {
|
||||||
module.exports = GenerateStaticSite
|
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");
|
||||||
|
|
Loading…
Add table
Reference in a new issue