2019-10-16 19:47:53 -03:00
|
|
|
const request = require('request')
|
2019-10-15 23:42:47 -03:00
|
|
|
|
2019-10-16 19:47:53 -03:00
|
|
|
module.exports = async (app, req, res) => {
|
2019-10-15 23:42:47 -03:00
|
|
|
|
2020-09-10 10:02:40 -03:00
|
|
|
if (app.offline) return res.send("-1")
|
|
|
|
|
2019-10-15 23:42:47 -03:00
|
|
|
let amount = 100;
|
|
|
|
let count = req.query.count ? parseInt(req.query.count) : null
|
|
|
|
if (count && count > 0) {
|
2019-11-09 21:59:11 -03:00
|
|
|
if (count > 5000) amount = 5000
|
2019-10-15 23:42:47 -03:00
|
|
|
else amount = count;
|
|
|
|
}
|
|
|
|
|
2020-11-01 17:29:32 -03:00
|
|
|
let params = req.gdParams({
|
2019-10-15 23:42:47 -03:00
|
|
|
count: amount,
|
|
|
|
type: (req.query.hasOwnProperty("creator") || req.query.hasOwnProperty("creators")) ? "creators" : "top",
|
2020-09-29 22:42:18 -03:00
|
|
|
})
|
2019-10-15 23:42:47 -03:00
|
|
|
|
2020-11-01 17:29:32 -03:00
|
|
|
request.post(app.endpoint + 'getGJScores20.php', params, async function(err, resp, body) {
|
2019-10-15 23:42:47 -03:00
|
|
|
|
2019-11-10 18:18:52 -03:00
|
|
|
if (err || body == '-1' || !body) return res.send("-1")
|
2019-10-15 23:42:47 -03:00
|
|
|
scores = body.split('|').map(x => app.parseResponse(x)).filter(x => x[1])
|
|
|
|
if (!scores.length) return res.send("-1")
|
|
|
|
|
|
|
|
scores.forEach(x => {
|
|
|
|
let keys = Object.keys(x)
|
2020-10-02 15:33:24 -03:00
|
|
|
x.rank = +x[6]
|
2019-10-15 23:42:47 -03:00
|
|
|
x.username = x[1]
|
|
|
|
x.playerID = x[2]
|
|
|
|
x.accountID = x[16]
|
2020-10-02 15:33:24 -03:00
|
|
|
x.stars = +x[3]
|
|
|
|
x.demons = +x[4]
|
|
|
|
x.cp = +x[8]
|
|
|
|
x.coins = +x[13]
|
|
|
|
x.usercoins = +x[17]
|
|
|
|
x.diamonds = +x[46]
|
2020-11-12 22:32:15 -03:00
|
|
|
x.icon = {
|
|
|
|
form: ['icon', 'ship', 'ball', 'ufo', 'wave', 'robot', 'spider'][+x[14]],
|
|
|
|
icon: +x[9],
|
|
|
|
col1: +x[10],
|
|
|
|
col2: +x[11],
|
|
|
|
glow: +x[15] > 0
|
|
|
|
}
|
2019-10-15 23:42:47 -03:00
|
|
|
keys.forEach(k => delete x[k])
|
|
|
|
})
|
|
|
|
return res.send(scores)
|
|
|
|
})
|
|
|
|
}
|