GDBrowser/api/profile.js

79 lines
2.5 KiB
JavaScript
Raw Normal View History

module.exports = async (app, req, res, api, getLevels) => {
const request = require('request')
const fs = require('fs')
request.post('http://boomlings.com/database/getGJUsers20.php', {
form: {
str: getLevels || req.params.id,
secret: app.secret
}
}, function (err1, res1, b1) {
let gdSearchResult = app.parseResponse(b1)
request.post('http://boomlings.com/database/getGJUserInfo20.php', {
form: {
targetAccountID: gdSearchResult[16],
secret: app.secret
}
}, function (err2, res2, body) {
if (body == '-1') {
if (!api) return res.redirect('/search/' + req.params.id)
else return res.send("-1")
}
let account = app.parseResponse(body)
let userData = {
username: app.clean(account[1]),
playerID: account[2],
accountID: account[16],
rank: account[30],
stars: account[3],
diamonds: account[46],
coins: account[13],
userCoins: account[17],
demons: account[4],
cp: account[8],
friendRequests: account[19] == "0",
messages: account[18] == "0" ? "all" : account[18] == "1" ? "friends" : "off",
commentHistory: account[50] == "0" ? "all" : account[50] == "1" ? "friends" : "off",
moderator: account[49],
youtube: app.clean(account[20]) || null,
twitter: app.clean(account[44]) || null,
twitch: app.clean(account[45]) || null,
icon: account[21],
ship: account[22],
ball: account[23],
ufo: account[24],
wave: account[25],
robot: account[26],
spider: account[43],
col1: account[10],
col2: account[11],
deathEffect: account[48],
glow: account[28] == "1",
}
if (getLevels) {
req.params.text = account[2]
return app.modules.search(app, req, res)
}
else if (api) return res.send(userData)
else return fs.readFile('./html/profile.html', 'utf8', function(err, data) {
let html = data;
let variables = Object.keys(userData)
variables.forEach(x => {
let regex = new RegExp(`\\[\\[${x.toUpperCase()}\\]\\]`, "g")
html = html.replace(regex, app.clean(userData[x]))
})
return res.send(html)
})
})
})
}