104 lines
3.3 KiB
JavaScript
104 lines
3.3 KiB
JavaScript
const fs = require('fs')
|
|
|
|
var updateTime = (process.env.UPDATE_TIME || 30)
|
|
|
|
var clientId = "1176317740512985119"
|
|
|
|
const steamID = process.env.STEAM_ID
|
|
|
|
const thumborURL = "https://thumbor-production-0e82.up.railway.app/unsafe/fit-in/512x512/filters:fill(transparent)/"
|
|
|
|
// if (clientId == undefined) {
|
|
// console.error("No client ID was defined! Please check the documentation for how to add one.")
|
|
// return
|
|
// }
|
|
|
|
if (steamID == undefined) {
|
|
console.error("No Steam ID was defined! Please check the documentation for how to add one.")
|
|
return
|
|
}
|
|
|
|
var RPC = require("discord-rpc")
|
|
|
|
const client = new RPC.Client({ transport: 'websocket' })
|
|
|
|
client.login({ clientId })
|
|
|
|
var startTime = Date.now()
|
|
|
|
var prevGame = ""
|
|
|
|
function update() {
|
|
fetch(`https://steamcommunity.com/miniprofile/${steamID}`)
|
|
.then((data) => {
|
|
return data.text()
|
|
})
|
|
.then((html) => {
|
|
var json = {
|
|
"name": "nothing",
|
|
"presence": "",
|
|
"img": "",
|
|
"pfp": html.substring(html.indexOf('<img src="https://avatars') + 10, html.indexOf("medium")) + "full.jpg",
|
|
"username": ""
|
|
}
|
|
|
|
if (html.includes("game_name")) {
|
|
var blah = html.substring(html.indexOf('game_name">') + 11, html.length)
|
|
json["name"] = blah.substring(0, blah.indexOf("</span>"))
|
|
}
|
|
|
|
if (html.includes("presence")) {
|
|
var blah = html.substring(html.indexOf('presence">') + 10, html.length)
|
|
json["presence"] = blah.substring(0, blah.indexOf("</span>"))
|
|
} else if (html.includes("game_state") && json.name != "nothing") {
|
|
var blah = html.substring(html.indexOf('game_state">') + 12, html.length)
|
|
json["presence"] = blah.substring(0, blah.indexOf("</span>"))
|
|
}
|
|
|
|
if (html.includes("persona")) {
|
|
var blah = html.substring(html.indexOf("persona"), html.length)
|
|
json.username = blah.substring(blah.indexOf(">") + 1, blah.indexOf("</span>"))
|
|
}
|
|
|
|
if (html.includes("game_logo")) {
|
|
var blah = html.substring(html.indexOf('game_logo" src="') + 'game_logo" src="'.length + 8, html.indexOf("capsule"))
|
|
json.img = thumborURL + blah + "logo.png"
|
|
}
|
|
|
|
if (prevGame != json.name) {
|
|
prevGame = json.name
|
|
startTime = Date.now()
|
|
}
|
|
|
|
client.setActivity({
|
|
details: `Playing ${json.name}`,
|
|
state: json.presence,
|
|
startTimestamp: startTime,
|
|
largeImageText: json.name,
|
|
largeImageKey: json.img,
|
|
smallImageText: json.username,
|
|
smallImageKey: json.pfp,
|
|
});
|
|
|
|
if (json.gameName == "nothing") {
|
|
updateTime = (process.env.UPDATE_TIME || 30) * 2.5
|
|
} else {
|
|
updateTime = (process.env.UPDATE_TIME || 30)
|
|
}
|
|
})
|
|
setTimeout(() => {
|
|
update()
|
|
}, updateTime * 1000);
|
|
}
|
|
|
|
client.on('ready', () => {
|
|
update()
|
|
});
|
|
|
|
process.on('uncaughtException', (err, origin) => {
|
|
fs.writeSync(
|
|
process.stderr.fd,
|
|
`Caught exception: ${err}\n` +
|
|
`Exception origin: ${origin}`,
|
|
)
|
|
})
|