GDBrowser/api/comments.js
2019-10-16 22:20:24 -04:00

56 lines
No EOL
1.8 KiB
JavaScript

const request = require('request')
module.exports = async (app, req, res) => {
let params = {
userID : req.params.id,
accountID : req.params.id,
levelID: req.params.id,
page: req.query.page || 0,
secret: app.secret,
mode: req.query.hasOwnProperty("top") ? "1" : "0",
}
let path = "getGJComments21"
if (req.query.type == "commentHistory") path = "getGJCommentHistory"
else if (req.query.type == "profile") path = "getGJAccountComments20"
request.post(`http://boomlings.com/database/${path}.php`, {
form : params}, async function(err, resp, body) {
if (body == '-1' || !body) return res.send("-1")
comments = body.split('|')
comments = comments.map(x => x.split(':'))
comments = comments.map(x => x.map(x => app.parseResponse(x, "~")))
if (req.query.type == "profile") comments.filter(x => x[0][2])
else comments = comments.filter(x => x[1][1])
if (!comments.length) return res.send("-1")
let commentArray = []
comments.forEach(c => {
var x = c[0] //comment info
var y = c[1] //account info
let comment = {}
comment.content = Buffer.from(x[2], 'base64').toString();
comment.likes = x[4]
comment.date = (x[9] || "?") + " ago"
if (req.query.type == "commentHistory") comment.levelID = x[1]
if (req.query.type != "profile") {
comment.username = y[1] || "Unknown"
comment.playerID = x[3]
comment.accountID = y[16]
comment.form = ['icon', 'ship', 'ball', 'ufo', 'wave', 'robot', 'spider'][Number(y[14])]
if (x[10] > 0) comment.percent = x[10]
if (x[12] && x[12].includes(',')) comment.modColor = true
}
commentArray.push(comment)
})
return res.send(commentArray)
})
}