2024-02-08 12:30:38 -06:00
|
|
|
const path = require('path'),
|
2024-02-12 08:46:49 -06:00
|
|
|
fs = require('fs'),
|
|
|
|
WebSocket = require('ws'),
|
2024-02-18 08:01:58 -06:00
|
|
|
minify = require('minify-html'),
|
2024-04-24 14:42:44 -05:00
|
|
|
activityToHTML = require("./overcomplicatedStatuses.js")
|
|
|
|
// weatherGenerator = require("./weatherGenerator")
|
2024-02-08 12:30:38 -06:00
|
|
|
|
|
|
|
var config = JSON.parse(fs.readFileSync(path.join(__dirname, 'config.json')))
|
2024-02-08 17:52:26 -06:00
|
|
|
|
2024-02-08 12:30:38 -06:00
|
|
|
var highlightedWords = config.highlightedWords
|
2024-02-08 17:52:26 -06:00
|
|
|
var quotes = config.quotes
|
2024-02-08 18:28:33 -06:00
|
|
|
var titles = config.titles
|
2024-02-08 12:30:38 -06:00
|
|
|
|
2024-04-21 13:01:21 -05:00
|
|
|
var globalSpins = 0
|
|
|
|
|
2024-03-03 21:51:28 -06:00
|
|
|
var commitCount = "400+"
|
2024-02-08 17:28:17 -06:00
|
|
|
|
2024-02-12 08:46:49 -06:00
|
|
|
var lanyardData = undefined
|
2024-02-08 16:03:40 -06:00
|
|
|
|
2024-02-12 08:46:49 -06:00
|
|
|
var uptime = Date.now()
|
2024-04-23 09:08:04 -05:00
|
|
|
var reloads = 0
|
2024-02-08 16:03:40 -06:00
|
|
|
|
2024-04-16 14:38:32 -05:00
|
|
|
function firstToUpper(str) {
|
|
|
|
return str.charAt(0).toUpperCase() + str.slice(1)
|
|
|
|
}
|
|
|
|
|
2024-04-20 07:12:16 -05:00
|
|
|
var thumborURL = "https://thumbor.violets-purgatory.dev/unsafe/"
|
2024-04-25 20:01:02 -05:00
|
|
|
var imgExtension = "png"
|
|
|
|
var thumborArgs = `filters:format(${imgExtension})/`
|
2024-04-20 07:12:16 -05:00
|
|
|
|
2024-04-23 09:08:04 -05:00
|
|
|
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`
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2024-03-03 23:57:30 -06:00
|
|
|
function converter(html, query) {
|
2024-04-23 09:08:04 -05:00
|
|
|
reloads += 1
|
|
|
|
var startTime = Date.now()
|
2024-02-18 08:01:58 -06:00
|
|
|
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('<main>') + 6, pageHTML.indexOf('</main>'))
|
|
|
|
html = html.replace(stringIndex, pageHTML)
|
|
|
|
}
|
|
|
|
|
|
|
|
var statusText = ""
|
|
|
|
|
2024-02-12 08:46:49 -06:00
|
|
|
if (lanyardData) {
|
|
|
|
var statusData = config.discStatuses[lanyardData.discord_status]
|
2024-02-18 08:01:58 -06:00
|
|
|
var username = lanyardData.discord_user.username
|
|
|
|
|
|
|
|
if (lanyardData.activities[0] && lanyardData.activities[0].type == 4) {
|
|
|
|
var statusText = `<hr><p>${lanyardData.activities[0].state}</p>`
|
|
|
|
}
|
2024-02-12 08:46:49 -06:00
|
|
|
} else {
|
|
|
|
var statusData = config.discStatuses.offline
|
2024-02-18 08:01:58 -06:00
|
|
|
var username = "bingus_violet"
|
2024-02-12 08:46:49 -06:00
|
|
|
}
|
2024-02-18 08:01:58 -06:00
|
|
|
|
2024-03-03 23:57:30 -06:00
|
|
|
var time = new Date(Date.now())
|
|
|
|
|
2024-04-16 14:38:32 -05:00
|
|
|
var bnchName = "Beta"
|
|
|
|
var bnchSub = "beta."
|
|
|
|
|
|
|
|
if (process.env.BRANCH == "dev") {
|
|
|
|
bnchName = "Stable"
|
|
|
|
bnchSub = ""
|
|
|
|
}
|
|
|
|
|
2024-02-12 08:46:49 -06:00
|
|
|
var replacers = {
|
2024-04-16 14:38:32 -05:00
|
|
|
"BRANCH_NAME": bnchName,
|
|
|
|
"BRANCH_SUB": bnchSub,
|
2024-02-12 08:46:49 -06:00
|
|
|
"COMMIT_COUNT": commitCount,
|
|
|
|
"RANDOM_QUOTE": quotes[Math.floor(Math.random() * quotes.length)],
|
|
|
|
"QUOTE_COUNT": quotes.length,
|
|
|
|
"RANDOM_TITLE": titles[Math.floor(Math.random() * titles.length)],
|
|
|
|
"DISCORD_STATUS":
|
|
|
|
`<span style="color: ${statusData.color};">${statusData.text}</span>` +
|
2024-02-12 15:52:17 -06:00
|
|
|
`<style>.pfp { border-color: ${statusData.color} }</style>`,
|
2024-02-13 11:12:46 -06:00
|
|
|
"UPTIME": uptime,
|
2024-02-18 08:01:58 -06:00
|
|
|
"TOPBAR": `<div id="topbar"><h3><a href="/socials">Socials</a></h3></div>`,
|
|
|
|
"DISCORD_USER": username,
|
2024-04-17 11:12:42 -05:00
|
|
|
"CUSTOM_STATUS": statusText,
|
2024-04-21 13:01:21 -05:00
|
|
|
"LATEST_YOUTUBE": "filler",
|
2024-04-23 09:08:04 -05:00
|
|
|
"SPINCOUNT": globalSpins,
|
|
|
|
"UPTIME": timeFormatter((Date.now() - uptime) / 1000),
|
2024-04-24 15:41:03 -05:00
|
|
|
"RELOAD_COUNT": reloads,
|
|
|
|
"WEATHER_MODIFIER": "",
|
|
|
|
"WEATHER_TEXT": ""
|
2024-02-12 08:46:49 -06:00
|
|
|
}
|
2024-02-08 17:52:26 -06:00
|
|
|
|
2024-02-12 08:46:49 -06:00
|
|
|
var rpTable = Object.keys(replacers)
|
2024-02-08 17:52:26 -06:00
|
|
|
|
2024-02-12 08:46:49 -06:00
|
|
|
for (let index = 0; index < rpTable.length; index++) {
|
|
|
|
const text = rpTable[index];
|
|
|
|
html = html.replaceAll(`{${text}}`, replacers[text])
|
|
|
|
}
|
2024-02-08 18:28:33 -06:00
|
|
|
|
2024-02-13 08:49:28 -06:00
|
|
|
var bodyHTML = html.substring(html.indexOf("<body>") + 6, html.lastIndexOf("</body>"))
|
|
|
|
var highTable = Object.keys(highlightedWords)
|
2024-04-24 15:41:03 -05:00
|
|
|
|
2024-02-13 08:49:28 -06:00
|
|
|
for (let index = 0; index < highTable.length; index++) {
|
|
|
|
var term = highTable[index];
|
|
|
|
var replacement = `<span style="color: ${highlightedWords[term]}">${term}</span>`
|
2024-02-13 08:55:52 -06:00
|
|
|
|
|
|
|
bodyHTML = bodyHTML.replaceAll(`{${term}}`, "TEMPORARY_REPLACE")
|
2024-02-13 08:49:28 -06:00
|
|
|
bodyHTML = bodyHTML.replaceAll(term, replacement)
|
2024-02-13 08:57:08 -06:00
|
|
|
bodyHTML = bodyHTML.replaceAll("TEMPORARY_REPLACE", `${term}`)
|
2024-02-13 08:49:28 -06:00
|
|
|
}
|
|
|
|
|
2024-02-28 19:02:30 -06:00
|
|
|
bodyHTML = bodyHTML.replaceAll("{ACTIVITIES}", activityToHTML.activitiesToHTML(lanyardData, cachedImages))
|
|
|
|
|
2024-02-13 08:49:28 -06:00
|
|
|
html = html.substring(0, html.indexOf("<body>")) + bodyHTML + html.substring(html.indexOf("</body>") + 7)
|
|
|
|
|
2024-04-23 09:08:04 -05:00
|
|
|
html = html.replaceAll("{LOAD_TIME}", (Date.now() - startTime).toString() + "ms")
|
|
|
|
|
2024-02-08 12:30:38 -06:00
|
|
|
return html
|
|
|
|
}
|
|
|
|
|
2024-02-08 17:30:52 -06:00
|
|
|
module.exports = {
|
2024-03-08 10:49:47 -06:00
|
|
|
getActivities: function () {
|
2024-04-20 16:46:12 -05:00
|
|
|
return minify.minify(activityToHTML.activitiesToHTML(lanyardData, cachedImages))
|
2024-03-08 10:49:47 -06:00
|
|
|
},
|
|
|
|
|
2024-02-08 17:30:52 -06:00
|
|
|
middleWare: function (req, res, next) {
|
|
|
|
|
2024-02-12 11:12:15 -06:00
|
|
|
var filePath = (req.baseUrl + req.path).trim()
|
|
|
|
|
2024-04-18 21:39:08 -05:00
|
|
|
if (!filePath.includes(".")) {
|
2024-02-12 11:12:15 -06:00
|
|
|
if (filePath.charAt(filePath.length - 1) != '/') {
|
|
|
|
res.redirect(filePath + '/')
|
|
|
|
return
|
|
|
|
}
|
|
|
|
filePath = path.join(filePath, '/index.html')
|
2024-02-08 17:30:52 -06:00
|
|
|
}
|
2024-02-12 11:12:15 -06:00
|
|
|
|
2024-02-08 17:30:52 -06:00
|
|
|
filePath = path.join(__dirname, 'static', filePath || 'index.html')
|
|
|
|
if (fs.existsSync(filePath)) {
|
|
|
|
var data = fs.readFileSync(filePath).toString()
|
2024-03-30 01:26:45 -05:00
|
|
|
|
|
|
|
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")) {
|
2024-03-03 23:57:30 -06:00
|
|
|
data = converter(data, req.query)
|
2024-02-08 17:30:52 -06:00
|
|
|
}
|
2024-02-13 11:12:46 -06:00
|
|
|
|
2024-04-20 12:15:04 -05:00
|
|
|
if (!filePath.includes(".js")) {
|
|
|
|
data = minify.minify(data)
|
|
|
|
}
|
2024-04-20 06:50:20 -05:00
|
|
|
|
2024-03-30 01:26:45 -05:00
|
|
|
res.send(data)
|
2024-02-08 17:30:52 -06:00
|
|
|
} else {
|
|
|
|
res.status(404).send(`
|
2024-02-12 15:51:12 -06:00
|
|
|
<link rel="stylesheet" href="/style.css">
|
|
|
|
<h1>404</h1>
|
|
|
|
<p>Uh oh... I think your lost? There's nothing here :P</p>
|
2024-02-08 17:30:52 -06:00
|
|
|
`)
|
|
|
|
}
|
2024-02-08 12:30:38 -06:00
|
|
|
}
|
|
|
|
}
|
2024-02-08 17:28:17 -06:00
|
|
|
|
|
|
|
async function updateCommits() {
|
2024-04-21 19:13:18 -05:00
|
|
|
var siteResponse = await (await fetch(`https://git.violets-purgatory.dev/bingus_violet/violets-purgatory/src/branch/${process.env.BRANCH || "origin"}`)).text()
|
2024-04-21 13:32:01 -05:00
|
|
|
var commits = siteResponse.substring(0, siteResponse.indexOf("Commits"))
|
2024-04-21 13:33:24 -05:00
|
|
|
|
2024-04-21 19:13:18 -05:00
|
|
|
commits = commits.substring(commits.lastIndexOf("<b>") + 3, commits.lastIndexOf("</b>"))
|
2024-04-21 13:32:01 -05:00
|
|
|
// ^ this works for Forgejo (codeberg)
|
|
|
|
|
2024-04-21 19:13:18 -05:00
|
|
|
// commits = commits.substring(commits.lastIndexOf(">") + 1)
|
2024-04-21 13:32:01 -05:00
|
|
|
// ^ This works for Github (fuck you Github)
|
|
|
|
|
2024-04-17 11:21:02 -05:00
|
|
|
commitCount = commits.toString()
|
|
|
|
if (process.env.BRANCH == "dev") {
|
|
|
|
commitCount += " | Beta site!"
|
|
|
|
}
|
2024-02-08 17:28:17 -06:00
|
|
|
}
|
|
|
|
|
2024-02-12 08:46:49 -06:00
|
|
|
updateCommits()
|
|
|
|
|
|
|
|
// Lanyard Stuffs
|
|
|
|
|
|
|
|
var lastLanyardUpdate = Date.now()
|
2024-03-18 20:57:48 -05:00
|
|
|
var lastPong = 0
|
2024-02-12 08:46:49 -06:00
|
|
|
|
|
|
|
var activityImages = config.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))
|
2024-03-24 16:54:09 -05:00
|
|
|
} else {
|
|
|
|
return decodeURIComponent('https://cdn.discordapp.com/app-assets/' + activity.application_id + "/" + image + ".png")
|
2024-02-12 08:46:49 -06:00
|
|
|
}
|
2024-03-24 16:55:00 -05:00
|
|
|
}
|
2024-02-12 08:46:49 -06:00
|
|
|
}
|
|
|
|
|
2024-03-23 12:37:22 -05:00
|
|
|
if (!image && size == "large_image") {
|
2024-02-12 08:46:49 -06:00
|
|
|
if (activity.name in activityImages) {
|
|
|
|
return decodeURIComponent(activityImages[activity.name])
|
|
|
|
}
|
|
|
|
}
|
2024-03-23 12:37:22 -05:00
|
|
|
return null
|
2024-02-12 08:46:49 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function socketeer() {
|
|
|
|
var lanyard = new WebSocket('https://api.violets-purgatory.dev')
|
2024-03-18 20:57:48 -05:00
|
|
|
|
|
|
|
lanyard.on("error", (error) =>{
|
|
|
|
console.log(error)
|
|
|
|
})
|
|
|
|
|
|
|
|
lanyard.on("close", () => {
|
|
|
|
console.log("Connection Closed. Attempting Reconnect in 30 seconds.")
|
|
|
|
setTimeout(() => {
|
|
|
|
socketeer()
|
2024-04-20 16:46:12 -05:00
|
|
|
}, 30000);
|
2024-03-18 20:57:48 -05:00
|
|
|
})
|
|
|
|
|
2024-02-12 08:46:49 -06:00
|
|
|
function ping(dur) {
|
|
|
|
lanyard.send(JSON.stringify({
|
|
|
|
op: 3
|
|
|
|
}))
|
|
|
|
setTimeout(() => {
|
|
|
|
ping(dur)
|
|
|
|
if (Date.now() - lastPong > 120000) {
|
|
|
|
lanyard.close()
|
2024-03-18 20:57:48 -05:00
|
|
|
console.log("Max duration since last pong exceeded- Closing socket.")
|
2024-02-12 08:46:49 -06:00
|
|
|
}
|
|
|
|
}, dur);
|
|
|
|
}
|
|
|
|
|
|
|
|
lanyard.addEventListener("message", async (res) => {
|
|
|
|
var data = JSON.parse(res.data)
|
2024-03-18 21:22:32 -05:00
|
|
|
// console.log(data.op)
|
2024-02-12 08:46:49 -06:00
|
|
|
if (data.op == 1) {
|
2024-03-18 20:57:48 -05:00
|
|
|
console.log("Connected to Discord Websocket!")
|
2024-02-12 08:46:49 -06:00
|
|
|
ping(30000)
|
|
|
|
lastPong = Date.now()
|
2024-03-18 21:22:32 -05:00
|
|
|
} else if (data.op == 3) {
|
|
|
|
lastPong = Date.now()
|
2024-02-12 08:46:49 -06:00
|
|
|
} 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)
|
2024-04-25 20:01:02 -05:00
|
|
|
var fn = Math.ceil(Math.random() * 100_000_000_000).toString() + "." + imgExtension
|
2024-04-18 21:39:08 -05:00
|
|
|
var fp = path.join(__dirname, 'cached', fn)
|
2024-02-12 08:46:49 -06:00
|
|
|
|
|
|
|
if (!cachedImages[url]) {
|
2024-04-25 20:01:02 -05:00
|
|
|
const response = await (await fetch(thumborURL + "200x200/" + thumborArgs + url)).arrayBuffer()
|
|
|
|
console.log(url)
|
2024-02-12 08:46:49 -06:00
|
|
|
fs.writeFileSync(fp, Buffer.from(response))
|
|
|
|
|
|
|
|
cachedImages[url] = fn
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (get_img_url(activity, "small_image")) {
|
|
|
|
var url = get_img_url(activity, "small_image")
|
2024-04-25 20:01:02 -05:00
|
|
|
var fn = Math.ceil(Math.random() * 100_000_000_000).toString() + "." + imgExtension
|
2024-04-18 21:39:08 -05:00
|
|
|
var fp = path.join(__dirname, 'cached', fn)
|
2024-02-12 08:46:49 -06:00
|
|
|
|
|
|
|
if (!cachedImages[url]) {
|
2024-04-25 20:01:02 -05:00
|
|
|
const response = await (await fetch(thumborURL + "64x64/" + thumborArgs + url)).arrayBuffer()
|
2024-02-12 08:46:49 -06:00
|
|
|
|
|
|
|
fs.writeFileSync(fp, Buffer.from(response))
|
|
|
|
|
|
|
|
cachedImages[url] = fn
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-04-21 13:01:21 -05:00
|
|
|
} else if (data.op == 4) {
|
|
|
|
globalSpins = data.spins
|
2024-02-12 08:46:49 -06:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
socketeer()
|