Violets-Cache/index.js

152 lines
4.8 KiB
JavaScript
Raw Normal View History

2024-06-01 13:19:36 -05:00
const express = require("express"),
fs = require("fs"),
path = require("path"),
WebSocket = require('ws')
const PORT = process.env.PORT || 8080
const cachePath = path.join(__dirname, "cache"),
cacheFile = path.join(__dirname, "cache.json")
if (!fs.existsSync(cachePath)) { fs.mkdirSync(cachePath) }
if (!fs.existsSync(cacheFile)) { fs.writeFileSync(cacheFile, "{}") }
var app = express()
2024-06-03 00:04:34 -05:00
const imgWaitMax = 15
2024-06-01 13:19:36 -05:00
app.get("/cached/*", (req, res) => {
var imgURL = req.originalUrl
imgURL = imgURL.substring(imgURL.indexOf("/", 2) + 1)
var imgData = cachedImages[imgURL]
2024-06-03 00:04:34 -05:00
var imgWait = 0
function waitForImage() {
if (imgWait < imgWaitMax) {
imgWait += 0.5
setTimeout(() => {
imgData = cachedImages[imgURL]
if (imgData) {
fs.createReadStream(path.join(cachePath, imgData.file)).pipe(res)
} else {
waitForImage()
}
}, 500);
} else {
fs.createReadStream(path.join(__dirname, "/imgs/notFound.png")).pipe(res)
}
}
2024-06-01 13:19:36 -05:00
if (imgData) {
fs.createReadStream(path.join(cachePath, imgData.file)).pipe(res)
} else {
2024-06-03 00:04:34 -05:00
waitForImage()
2024-06-01 13:19:36 -05:00
}
})
app.listen(PORT, () => {
console.log("Violet's cache is now listening on port: " + PORT)
})
var cachedImages = JSON.parse(fs.readFileSync(cacheFile))
var constants = JSON.parse(fs.readFileSync(path.join(__dirname, "constants.json")))
var activityImages = constants.activityImages
var thumborURL = "https://thumbor.violets-purgatory.dev/unsafe/"
var imgExtension = "png"
var thumborArgs = `filters:format(${imgExtension})/`
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 API Websocket!")
ping(30000)
lastPong = Date.now()
} else if (data.op == 3) {
lastPong = Date.now()
} else if (data.op == 0) {
var lanyardData = data.d
for (let index = 0; index < lanyardData.activities.length; index++) {
const activity = lanyardData.activities[index];
var imgType = undefined
var imgRes = "256x256/"
for (var i = 0; i < 2; i++) {
if (get_img_url(activity, imgType)) {
var url = get_img_url(activity, imgType)
var fn = Object.keys(cachedImages).length + "." + imgExtension
var fp = path.join(cachePath, fn)
if (!cachedImages[url]) {
const response = await (await fetch(thumborURL + imgRes + thumborArgs + url)).arrayBuffer()
fs.writeFileSync(fp, Buffer.from(response))
cachedImages[url] = {
"file": fn,
"lastUpdated": Date.now()
}
fs.writeFileSync(cacheFile, JSON.stringify(cachedImages))
}
imgType = "small_image"
imgRes = "64x64/"
}
}
}
}
})
}
socketeer()