const path = require('path'), fs = require('fs'), WebSocket = require('ws'), minify = require('minify-html'), activityToHTML = require("./overcomplicatedStatuses.js") // weatherGenerator = require("./weatherGenerator") var constants = JSON.parse(fs.readFileSync(path.join(__dirname, 'constants.json'))) var highlightedWords = constants.highlightedWords var quotes = constants.quotes var titles = constants.titles var globalSpins = 0 var commitCount = "500+" var lanyardData = undefined var uptime = Date.now() var reloads = 0 function firstToUpper(str) { return str.charAt(0).toUpperCase() + str.slice(1) } var thumborURL = "https://thumbor.violets-purgatory.dev/unsafe/" var imgExtension = "png" var thumborArgs = `filters:format(${imgExtension})/` function timeFormatter(seconds) { seconds = Math.ceil(seconds) var minutes = Math.ceil(seconds / 60) var hours = Math.floor(minutes / 60) if (seconds <= 60) { return 'about ' + seconds + ' seconds' } else if (minutes < 60) { return `${minutes} Minutes` } return `${hours} hours and ${minutes % 60} minutes` } function converter(html, query) { var startTime = Date.now() var config = JSON.parse(fs.readFileSync(path.join(__dirname, 'config/config.json'))) reloads += 1 while (html.includes("{PATH_")) { var pagePath = html.substring(html.indexOf("{PATH_")) pagePath = pagePath.substring(6, pagePath.indexOf('}')) var stringIndex = `{PATH_${pagePath}}` pagePath = pagePath.toLowerCase() var pageHTML = fs.readFileSync(path.join(__dirname, 'static', pagePath, 'index.html')).toString() pageHTML = pageHTML.substring(pageHTML.indexOf('
') + 6, pageHTML.indexOf('
')) html = html.replace(stringIndex, pageHTML) } var statusText = "" if (lanyardData) { var statusData = constants.discStatuses[lanyardData.discord_status] var username = lanyardData.discord_user.username if (lanyardData.activities[0] && lanyardData.activities[0].type == 4) { var statusText = `

${lanyardData.activities[0].state}

` } } else { var statusData = constants.discStatuses.offline var username = "bingus_violet" } var bnchName = "Beta" var bnchSub = "beta." if (process.env.BRANCH == "dev") { bnchName = "Stable" bnchSub = "" } var replacers = { "ALL_KEYWORDS": undefined, "ALL_HIGHLIGHTS": Object.keys(highlightedWords).join(", "), "BRANCH_NAME": bnchName, "BRANCH_SUB": bnchSub, "RANDOM_QUOTE": quotes[Math.floor(Math.random() * quotes.length)], "COMMIT_COUNT": commitCount, "QUOTE_COUNT": quotes.length, "RANDOM_TITLE": titles[Math.floor(Math.random() * titles.length)], "DISCORD_STATUS": `${statusData.text}` + ``, "UPTIME": uptime, "TOPBAR": `

Socials

`, "DISCORD_USER": username, "CUSTOM_STATUS": statusText, "SELECTED_VIDEO": () => { if (config.dailyVideoURL) { return `


Random video!

I would call it random daily video but its not at all daily...


` } return `` }, "SPINCOUNT": globalSpins, "UPTIME": timeFormatter((Date.now() - uptime) / 1000), "RELOAD_COUNT": reloads, "WEATHER_MODIFIER": "", "WEATHER_TEXT": "", "ANNOUNCEMENT": fs.readFileSync(path.join(__dirname, "config/announcement.html")), "CACHED_IMAGES": fs.readdirSync(path.join(__dirname, "cached")).length.toString() } replacers.ALL_KEYWORDS = "{" + Object.keys(replacers).join("}{") + "} " var rpTable = Object.keys(replacers) for (let index = 0; index < rpTable.length; index++) { const text = rpTable[index]; html = html.replaceAll(`{${text}}`, replacers[text]) } var bodyHTML = html.substring(html.indexOf("") + 6, html.lastIndexOf("")) var highTable = Object.keys(highlightedWords) for (let index = 0; index < highTable.length; index++) { var term = highTable[index]; var replacement = `${term}` bodyHTML = bodyHTML.replaceAll(`{${term}}`, "TEMPORARY_REPLACE") bodyHTML = bodyHTML.replaceAll(term, replacement) bodyHTML = bodyHTML.replaceAll("TEMPORARY_REPLACE", `${term}`) } bodyHTML = bodyHTML.replaceAll("{ACTIVITIES}", activityToHTML.activitiesToHTML(lanyardData, cachedImages)) html = html.substring(0, html.indexOf("")) + bodyHTML + html.substring(html.indexOf("") + 7) html = html.replaceAll("{LOAD_TIME}", (Date.now() - startTime).toString() + "ms") return html } module.exports = { getActivities: function () { return minify.minify(activityToHTML.activitiesToHTML(lanyardData, cachedImages)) }, middleWare: function (req, res, next) { var filePath = (req.baseUrl + req.path).trim() if (!filePath.includes(".")) { if (filePath.charAt(filePath.length - 1) != '/') { res.redirect(filePath + '/') return } filePath = path.join(filePath, '/index.html') } filePath = path.join(__dirname, 'static', filePath || 'index.html') if (fs.existsSync(filePath)) { var data = fs.readFileSync(filePath).toString() res.contentType(path.basename(filePath)) // if (req.path.includes(".css")) { // res.setHeader("Content-Type", "text/css") // } else if (!req.path.includes(".woff2")) { // data = converter(data, req.query) // } if (filePath.includes(".html")) { data = converter(data, req.query) } if (!filePath.includes(".js")) { data = minify.minify(data) } res.send(data) } else { res.status(404).send(`

404

Uh oh... I think your lost? There's nothing here :P

`) } } } async function updateCommits() { var siteResponse = await (await fetch(`https://git.violets-purgatory.dev/bingus_violet/violets-purgatory/src/branch/${process.env.BRANCH || "origin"}`)).text() var commits = siteResponse.substring(0, siteResponse.indexOf("Commits")) commits = commits.substring(commits.lastIndexOf("") + 3, commits.lastIndexOf("")) // ^ this works for Forgejo (basically everything i use that isnt Github E.G. Codeberg) // commits = commits.substring(commits.lastIndexOf(">") + 1) // ^ This works for Github (fuck you Github) commitCount = commits.toString() if (process.env.BRANCH == "dev") { commitCount += " | Beta site" } } updateCommits() // Lanyard Stuffs var lastLanyardUpdate = Date.now() var lastPong = 0 var activityImages = constants.activityImages var cachedImages = {} function get_img_url(activity, size = "large_image") { if ("assets" in activity) { var image = activity.assets[size] if (image) { if (image.includes("https/")) { return decodeURIComponent('https://' + image.substr(image.indexOf('https/') + 6, image.length)) } else if (image.includes("spotify")) { return decodeURIComponent('https://i.scdn.co/image/' + image.substr(image.indexOf('spotify:') + 8, image.length)) } else { return decodeURIComponent('https://cdn.discordapp.com/app-assets/' + activity.application_id + "/" + image + ".png") } } } if (!image && size == "large_image") { if (activity.name in activityImages) { return decodeURIComponent(activityImages[activity.name]) } } return null } function socketeer() { var lanyard = new WebSocket('https://api.violets-purgatory.dev') lanyard.on("error", (error) =>{ console.log(error) }) lanyard.on("close", () => { console.log("Connection Closed. Attempting Reconnect in 30 seconds.") setTimeout(() => { socketeer() }, 30000); }) function ping(dur) { lanyard.send(JSON.stringify({ op: 3 })) setTimeout(() => { ping(dur) if (Date.now() - lastPong > 120000) { lanyard.close() console.log("Max duration since last pong exceeded- Closing socket.") } }, dur); } lanyard.addEventListener("message", async (res) => { var data = JSON.parse(res.data) // console.log(data.op) if (data.op == 1) { console.log("Connected to Discord Websocket!") ping(30000) lastPong = Date.now() } else if (data.op == 3) { lastPong = Date.now() } else if (data.op == 0) { lanyardData = data.d lastLanyardUpdate = Date.now() for (let index = 0; index < lanyardData.activities.length; index++) { const activity = lanyardData.activities[index]; if (get_img_url(activity)) { var url = get_img_url(activity) var fn = Math.ceil(Math.random() * 100_000_000_000).toString() + "." + imgExtension var fp = path.join(__dirname, 'cached', fn) if (!cachedImages[url]) { const response = await (await fetch(thumborURL + "200x200/" + thumborArgs + url)).arrayBuffer() fs.writeFileSync(fp, Buffer.from(response)) cachedImages[url] = fn } } if (get_img_url(activity, "small_image")) { var url = get_img_url(activity, "small_image") var fn = Math.ceil(Math.random() * 100_000_000_000).toString() + "." + imgExtension var fp = path.join(__dirname, 'cached', fn) if (!cachedImages[url]) { const response = await (await fetch(thumborURL + "64x64/" + thumborArgs + url)).arrayBuffer() fs.writeFileSync(fp, Buffer.from(response)) cachedImages[url] = fn } } } } else if (data.op == 4) { globalSpins = data.spins } }) } socketeer()