diff --git a/.gitignore b/.gitignore index c68fb4b..7d75651 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ node_modules stickerpacks/**/*.json +*.html ignore/ \ No newline at end of file diff --git a/src/config.js b/src/config.js index 72d4a3d..5fb19a6 100644 --- a/src/config.js +++ b/src/config.js @@ -1,6 +1,7 @@ const config = { stickerPacksDir: "./stickerpacks", outDir: "./", + homeserverUrl: "https://synapse.wah.su/__thumbnail/" } module.exports = config \ No newline at end of file diff --git a/src/index.js b/src/index.js index bdcc88a..a2c1700 100644 --- a/src/index.js +++ b/src/index.js @@ -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 \ No newline at end of file +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");