mirror of
https://github.com/webtorrent/bittorrent-tracker.git
synced 2024-12-13 02:46:29 +00:00
60 lines
2.0 KiB
JavaScript
60 lines
2.0 KiB
JavaScript
module.exports = parseHttpRequest
|
|
|
|
var common = require('../common')
|
|
|
|
function parseHttpRequest (req, opts) {
|
|
if (!opts) opts = {}
|
|
var s = req.url.split('?')
|
|
var params = common.querystringParse(s[1])
|
|
params.type = 'http'
|
|
|
|
if (opts.action === 'announce' || s[0] === '/announce') {
|
|
params.action = common.ACTIONS.ANNOUNCE
|
|
|
|
if (typeof params.info_hash !== 'string' || params.info_hash.length !== 20) {
|
|
throw new Error('invalid info_hash')
|
|
}
|
|
params.info_hash = common.binaryToHex(params.info_hash)
|
|
|
|
if (typeof params.peer_id !== 'string' || params.peer_id.length !== 20) {
|
|
throw new Error('invalid peer_id')
|
|
}
|
|
params.peer_id = common.binaryToHex(params.peer_id)
|
|
|
|
params.port = Number(params.port)
|
|
if (!params.port) throw new Error('invalid port')
|
|
|
|
params.left = Number(params.left)
|
|
if (Number.isNaN(params.left)) params.left = Infinity
|
|
|
|
params.compact = Number(params.compact) || 0
|
|
params.numwant = Math.min(
|
|
Number(params.numwant) || common.DEFAULT_ANNOUNCE_PEERS,
|
|
common.MAX_ANNOUNCE_PEERS
|
|
)
|
|
|
|
params.ip = opts.trustProxy
|
|
? req.headers['x-forwarded-for'] || req.connection.remoteAddress
|
|
: req.connection.remoteAddress.replace(common.REMOVE_IPV4_MAPPED_IPV6_RE, '') // force ipv4
|
|
params.addr = (common.IPV6_RE.test(params.ip) ? '[' + params.ip + ']' : params.ip) + ':' + params.port
|
|
|
|
params.headers = req.headers
|
|
} else if (opts.action === 'scrape' || s[0] === '/scrape') {
|
|
params.action = common.ACTIONS.SCRAPE
|
|
|
|
if (typeof params.info_hash === 'string') params.info_hash = [ params.info_hash ]
|
|
if (Array.isArray(params.info_hash)) {
|
|
params.info_hash = params.info_hash.map(function (binaryInfoHash) {
|
|
if (typeof binaryInfoHash !== 'string' || binaryInfoHash.length !== 20) {
|
|
throw new Error('invalid info_hash')
|
|
}
|
|
return common.binaryToHex(binaryInfoHash)
|
|
})
|
|
}
|
|
} else {
|
|
throw new Error('invalid action in HTTP request: ' + req.url)
|
|
}
|
|
|
|
return params
|
|
}
|