const express = require('express'), path = require('path'), fs = require('fs'), WebSocket = require('ws'), minify = require('minify-html') var app = express() const PORT = process.env.PORT || 8080 const staticpath = path.join(__dirname, 'static') const resourcePath = path.join(__dirname, 'resources') const mainpage = resourcePath + '/mainPage.html' var lanyardData = undefined var config = JSON.parse(fs.readFileSync(path.join(__dirname, 'config.json'))) var thumborInstances = config.thumborInstances var activityImages = config.activityImages var highlight = config.highlightedWords var uptime = Date.now() var lastLanyardUpdate = Date.now() var thumbCount = 0 function getThumbor() { thumbCount += 1 return thumborInstances[thumbCount % thumborInstances.length] + "unsafe" } app.use(express.static(staticpath)) app.listen(PORT, () => { console.log("Violet's Purgatory is now listening on port: " + PORT) }) var randomQuotes = config.quotes function timeFormatter(seconds) { seconds = Math.ceil(seconds) var minutes = Math.floor(seconds / 60) if (seconds % 60 < 10) { return `${minutes}:0${seconds % 60}` } else { return `${minutes}:${seconds % 60}` } } function gameTimeFormatter(seconds) { seconds = Math.ceil(seconds) var minutes = Math.ceil(seconds / 60) var hours = Math.floor(minutes / 60) if (seconds <= 60) { return 'Under a minute' } else if (minutes < 60) { return `${minutes} Minutes` } return `${hours} hours and ${minutes % 60} minutes` } function pageUpdate() { var genStart = Date.now() var statuses = { "online": { "text": "Online", "color": "rgb(100, 255, 100)" }, "dnd": { "text": "DND", "color": "rgb(255, 100, 100)" }, "idle": { "text": "Idle", "color": "rgb(255, 255, 75)" }, "offline": { "text": "Offline", "color": "rgb(125, 125, 125)" } } var html = fs.readFileSync(mainpage).toString() var addedHTML = "" if (lanyardData) { var statusData = statuses[lanyardData.discord_status] addedHTML += `

${statusData.text}

` addedHTML += `` } html = html.replace("{LANYARD_STATUS}", addedHTML) addedHTML = "" if (lanyardData && lanyardData.activities.length > 0) { if (lanyardData.activities[0].type == 4) { var status = lanyardData.activities[0] addedHTML += "

" if (status.emoji) { if (status.emoji.id) { addedHTML += ` ` } else { addedHTML += status.emoji.name } } if (status.state) { addedHTML += `"` // addedHTML += (status.state || "") var splitStatus = status.state.split(' ') for (let index = 0; index < splitStatus.length; index++) { const text = splitStatus[index]; if (highlight[text]) { addedHTML += `${text}` } else { addedHTML += text } addedHTML += ' ' } addedHTML.trimEnd() addedHTML += `"` } addedHTML += ` - ${lanyardData.discord_user.display_name} ${new Date(Date.now()).getFullYear()}

` } } html = html.replace("{LANYARD_QUOTE}", addedHTML) addedHTML = "" var debounce = false if (lanyardData && lanyardData.activities.length > 0) { for (let index = 0; index < lanyardData.activities.length; index++) { const activity = lanyardData.activities[index]; var found = false for (let index = 0; index < lanyardData.activities.length; index++) { const act = lanyardData.activities[index] if (act.name == activity.name) { if (Object.keys(act).length > Object.keys(activity).length) { found = true } } } if (found) { continue } if (!debounce && activity.type != 4) { addedHTML += `


What I'm up to:

` debounce = true } function get_img() { if ("assets" in activity) { var image = undefined if ("large_image" in activity.assets) { image = activity.assets.large_image } else if ("small_image" in activity.assets) { image = activity.assets.small_image } 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) { if (activity.name in activityImages) { return decodeURIComponent(activityImages[activity.name]) } else { return decodeURIComponent(`https://cdn.discordapp.com/app-assets/680748054038577165/680775885317472448.png`) // This was supposed to be temporary but it kinda stuck honestly lol (It's an ultrakill icon) } } } function songStats() { var html = `` if (activity.assets && activity.assets.large_text != activity.details) { html += `
Album: ${activity.assets.large_text || " "}
Artist: ${activity.state || " "} ` } else { html += `
Artist: ${activity.state || " "}` } return html } if (activity.type == 2) { var timeLeft = Math.round((activity.timestamps.end - Date.now()) / 1000) var currentPercent = (Date.now() - activity.timestamps.start) / (activity.timestamps.end - activity.timestamps.start) * 100 addedHTML += `

Listening to ${activity.name}
Song: ${activity.details || " "} ${songStats()}
${timeFormatter((activity.timestamps.end - activity.timestamps.start) / 1000)}

` } else if (activity.type == 0) { var time = activity.created_at if (activity.timestamps) { time = activity.timestamps.start } if (!activity.assets) { activity.assets = {"large_text": " ", "small_text": " "} } addedHTML += `

Playing ${activity.name}
${activity.details || activity.assets.large_text || " "}
${activity.state || activity.assets.small_text || " "}
${gameTimeFormatter((Date.now() - time) / 1000)}

` } else if (activity.type != 4) { var time = activity.created_at if (activity.timestamps) { time = activity.timestamps.start } if (!activity.assets) { activity.assets = {"large_text": " ", "small_text": " "} } addedHTML += `

${activity.name}
${activity.details || activity.assets.large_text || " "}
${activity.state || activity.assets.small_text || " "}
${gameTimeFormatter((Date.now() - time) / 1000)}

` } } } if (addedHTML) { addedHTML += "
" } html = html.replace("{LANYARD_FULL}", addedHTML) addedHTML = "" var socialsHTML = fs.readFileSync(path.join(__dirname, 'static/socials/index.html')).toString() addedHTML += socialsHTML.substring(socialsHTML.indexOf("

"), socialsHTML.indexOf("")) html = html.replace("{SOCIALS}", addedHTML) addedHTML = "" // var faqHTML = fs.readFileSync(path.join(__dirname, 'static/faq/index.html')).toString() // addedHTML += faqHTML.substring(faqHTML.indexOf("

"), faqHTML.indexOf("")) html = html.replace("{FAQ}", ``) var now = new Date() currentMonth = now.getMonth() + 1 if ([11, 12].includes(currentMonth)) { // The Below HTML is copy and pasted from that one site :> html = html.replace("{SEASONAL_EFFECT}", fs.readFileSync(path.join(__dirname, 'static/snow.html'))) } else { html = html.replace("{SEASONAL_EFFECT}", "") } html = '\n' + html html = html.replace("{THUMBOR}", getThumbor()) var quote = randomQuotes[Math.floor(Math.random() * randomQuotes.length)] var splitQuote = quote.split(' ') var finalQuote = '' for (let index = 0; index < splitQuote.length; index++) { const text = splitQuote[index]; if (highlight[text]) { finalQuote += `${text}` } else { finalQuote += text } finalQuote += ' ' } quote = finalQuote.trim() quote = quote.replace("{QUOTE_COUNT}", randomQuotes.length) html = html.replace("{RANDOM_QUOTE}", quote) if (process.env.BRANCH == "dev") { html = html.replace("{OPPOSITE_URL}", "www") html = html.replace("{OPPOSITE_BRANCH}", "Main") } else { html = html.replace("{OPPOSITE_URL}", "beta") html = html.replace("{OPPOSITE_BRANCH}", "Beta") } html = html.replace("{UPTIME}", gameTimeFormatter((Date.now() - uptime) / 1000) + ' ago') html = html.replace("{LAST_LANYARD}", gameTimeFormatter((Date.now() - lastLanyardUpdate) / 1000) + ' ago') html = html.replace("{QUOTE_COUNT}", randomQuotes.length) html = html.replace("{GENERATION_TIME}", Math.ceil(Date.now() - genStart).toString() + 'ms') //fs.writeFileSync(path.join(__dirname, 'static/index.html'), html) return html } // Lanyard Stuffs var lanyard = new WebSocket('wss://api.lanyard.rest/socket') function beat(dur) { lanyard.send(JSON.stringify({ op: 3 })) setTimeout(() => { beat(dur) }, dur); } lanyard.addEventListener("message", (res) => { var data = JSON.parse(res.data) if (data.op == 1) { beat(data.d.heartbeat_interval) lanyard.send(JSON.stringify({ op: 2, d: { subscribe_to_id: "534132311781015564" } })) } else if (data.op == 0) { lanyardData = data.d lastLanyardUpdate = Date.now() } }) app.get('/', (req, res) => { res.send(minify.minify(pageUpdate())) }) app.use((req, res, next) => { res.status(404).send(`

404

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

`) })