bittorrent-tracker/lib/swarm.js

104 lines
2.6 KiB
JavaScript
Raw Normal View History

2014-12-10 15:47:41 +00:00
module.exports = Swarm
2014-12-11 20:53:39 +00:00
var debug = require('debug')('bittorrent-tracker')
2014-12-10 15:47:41 +00:00
// Regard this as the default implementation of an interface that you
// need to support when overriding Server.getSwarm()
function Swarm (infoHash, server) {
this.peers = {}
this.complete = 0
this.incomplete = 0
}
Swarm.prototype.announce = function (params, cb) {
var self = this
var peer = self.peers[params.addr]
// Dispatch announce event
var fn = '_onAnnounce_' + params.event
if (self[fn]) {
self[fn](params, peer) // process event
if (params.left === 0 && peer) peer.complete = true
2014-12-10 15:47:41 +00:00
cb(null, {
complete: self.complete,
incomplete: self.incomplete,
peers: self._getPeers(params.numwant)
})
} else {
cb(new Error('invalid event'))
2014-12-10 15:47:41 +00:00
}
}
2014-12-10 15:47:41 +00:00
Swarm.prototype._onAnnounce_started = function (params, peer) {
if (peer) {
debug('unexpected `started` event from peer that is already in swarm')
return this._onAnnounce_update(params, peer) // treat as an update
}
if (params.left === 0) this.complete += 1
else this.incomplete += 1
peer = this.peers[params.addr] = {
ip: params.ip,
port: params.port,
peerId: params.peer_id,
complete: false
2014-12-10 15:47:41 +00:00
}
}
2014-12-10 15:47:41 +00:00
Swarm.prototype._onAnnounce_stopped = function (params, peer) {
if (!peer) {
debug('unexpected `stopped` event from peer that is not in swarm')
return // do nothing
2014-12-10 15:47:41 +00:00
}
if (peer.complete) this.complete -= 1
else this.incomplete -= 1
this.peers[params.addr] = null
}
Swarm.prototype._onAnnounce_completed = function (params, peer) {
if (!peer) {
debug('unexpected `completed` event from peer that is not in swarm')
return this._onAnnounce_started(params, peer) // treat as a start
2014-12-10 15:47:41 +00:00
}
if (peer.complete) {
debug('unexpected `completed` event from peer that is already marked as completed')
return // do nothing
}
this.complete += 1
this.incomplete -= 1
peer.complete = true
}
2014-12-10 15:47:41 +00:00
Swarm.prototype._onAnnounce_update = function (params, peer) {
if (!peer) {
debug('unexpected `update` event from peer that is not in swarm')
return this._onAnnounce_started(params, peer) // treat as a start
}
2014-12-10 15:47:41 +00:00
}
Swarm.prototype._getPeers = function (numwant) {
var peers = []
for (var peerId in this.peers) {
if (peers.length >= numwant) break
var peer = this.peers[peerId]
if (!peer) continue // ignore null values
peers.push({
'peer id': peer.peerId,
ip: peer.ip,
port: peer.port
})
}
return peers
}
2014-12-11 20:53:39 +00:00
Swarm.prototype.scrape = function (params, cb) {
2014-12-10 15:47:41 +00:00
cb(null, {
complete: this.complete,
incomplete: this.incomplete
})
}