2014-12-10 16:47:41 +01:00
|
|
|
module.exports = Swarm
|
|
|
|
|
|
2014-12-11 12:53:39 -08:00
|
|
|
var debug = require('debug')('bittorrent-tracker')
|
2015-05-19 04:32:09 -07:00
|
|
|
var randomIterate = require('random-iterate')
|
2014-12-11 12:53:39 -08:00
|
|
|
|
2014-12-10 16:47:41 +01:00
|
|
|
// Regard this as the default implementation of an interface that you
|
2016-01-03 19:50:23 +01:00
|
|
|
// need to support when overriding Server.createSwarm() and Server.getSwarm()
|
2014-12-10 16:47:41 +01:00
|
|
|
function Swarm (infoHash, server) {
|
|
|
|
|
this.peers = {}
|
|
|
|
|
this.complete = 0
|
|
|
|
|
this.incomplete = 0
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Swarm.prototype.announce = function (params, cb) {
|
|
|
|
|
var self = this
|
2016-03-11 17:21:19 -08:00
|
|
|
var id = params.type === 'ws' ? params.peer_id : params.addr
|
2016-03-11 10:09:09 +01:00
|
|
|
var peer = self.peers[id]
|
2014-12-10 16:47:41 +01:00
|
|
|
|
2015-07-27 15:19:18 -07:00
|
|
|
if (params.event === 'started') {
|
|
|
|
|
self._onAnnounceStarted(params, peer)
|
|
|
|
|
} else if (params.event === 'stopped') {
|
|
|
|
|
self._onAnnounceStopped(params, peer)
|
|
|
|
|
} else if (params.event === 'completed') {
|
|
|
|
|
self._onAnnounceCompleted(params, peer)
|
|
|
|
|
} else if (params.event === 'update') {
|
|
|
|
|
self._onAnnounceUpdate(params, peer)
|
2014-12-10 17:01:34 +01:00
|
|
|
} else {
|
|
|
|
|
cb(new Error('invalid event'))
|
2015-07-27 15:19:18 -07:00
|
|
|
return
|
2014-12-10 16:47:41 +01:00
|
|
|
}
|
2015-07-27 15:19:18 -07:00
|
|
|
cb(null, {
|
|
|
|
|
complete: self.complete,
|
|
|
|
|
incomplete: self.incomplete,
|
2015-12-05 00:41:56 -08:00
|
|
|
peers: self._getPeers(params.numwant, params.peer_id, !!params.socket)
|
2015-07-27 15:19:18 -07:00
|
|
|
})
|
2014-12-10 17:01:34 +01:00
|
|
|
}
|
2014-12-10 16:47:41 +01:00
|
|
|
|
2015-03-27 16:19:06 +13:00
|
|
|
Swarm.prototype.scrape = function (params, cb) {
|
|
|
|
|
cb(null, {
|
|
|
|
|
complete: this.complete,
|
|
|
|
|
incomplete: this.incomplete
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-27 15:19:18 -07:00
|
|
|
Swarm.prototype._onAnnounceStarted = function (params, peer) {
|
2014-12-10 17:01:34 +01:00
|
|
|
if (peer) {
|
|
|
|
|
debug('unexpected `started` event from peer that is already in swarm')
|
2015-07-27 15:46:49 -07:00
|
|
|
return this._onAnnounceUpdate(params, peer) // treat as an update
|
2014-12-10 17:01:34 +01:00
|
|
|
}
|
2014-12-11 13:43:11 -08:00
|
|
|
|
2014-12-10 17:01:34 +01:00
|
|
|
if (params.left === 0) this.complete += 1
|
|
|
|
|
else this.incomplete += 1
|
2016-03-11 17:21:19 -08:00
|
|
|
var id = params.type === 'ws' ? params.peer_id : params.addr
|
2016-03-11 10:09:09 +01:00
|
|
|
peer = this.peers[id] = {
|
2016-03-13 15:51:08 +01:00
|
|
|
type: params.type,
|
2015-04-20 20:02:05 -07:00
|
|
|
complete: params.left === 0,
|
2015-03-29 21:08:26 +13:00
|
|
|
peerId: params.peer_id, // as hex
|
2016-03-13 15:51:08 +01:00
|
|
|
ip: params.ip,
|
|
|
|
|
port: params.port,
|
2015-03-27 16:19:06 +13:00
|
|
|
socket: params.socket // only websocket
|
2014-12-10 16:47:41 +01:00
|
|
|
}
|
2014-12-10 17:01:34 +01:00
|
|
|
}
|
2014-12-10 16:47:41 +01:00
|
|
|
|
2015-07-27 15:19:18 -07:00
|
|
|
Swarm.prototype._onAnnounceStopped = function (params, peer) {
|
2014-12-10 17:01:34 +01:00
|
|
|
if (!peer) {
|
|
|
|
|
debug('unexpected `stopped` event from peer that is not in swarm')
|
|
|
|
|
return // do nothing
|
2014-12-10 16:47:41 +01:00
|
|
|
}
|
2014-12-11 13:43:11 -08:00
|
|
|
|
2014-12-10 17:01:34 +01:00
|
|
|
if (peer.complete) this.complete -= 1
|
|
|
|
|
else this.incomplete -= 1
|
2016-03-11 17:21:19 -08:00
|
|
|
var id = params.type === 'ws' ? params.peer_id : params.addr
|
2016-03-11 10:34:07 +01:00
|
|
|
delete this.peers[id]
|
2014-12-10 17:01:34 +01:00
|
|
|
}
|
|
|
|
|
|
2015-07-27 15:19:18 -07:00
|
|
|
Swarm.prototype._onAnnounceCompleted = function (params, peer) {
|
2014-12-10 17:01:34 +01:00
|
|
|
if (!peer) {
|
|
|
|
|
debug('unexpected `completed` event from peer that is not in swarm')
|
2015-07-27 15:46:49 -07:00
|
|
|
return this._onAnnounceStarted(params, peer) // treat as a start
|
2014-12-10 16:47:41 +01:00
|
|
|
}
|
2014-12-10 17:01:34 +01:00
|
|
|
if (peer.complete) {
|
|
|
|
|
debug('unexpected `completed` event from peer that is already marked as completed')
|
|
|
|
|
return // do nothing
|
|
|
|
|
}
|
2014-12-11 13:43:11 -08:00
|
|
|
|
2014-12-10 17:01:34 +01:00
|
|
|
this.complete += 1
|
|
|
|
|
this.incomplete -= 1
|
|
|
|
|
peer.complete = true
|
|
|
|
|
}
|
2014-12-10 16:47:41 +01:00
|
|
|
|
2015-07-27 15:19:18 -07:00
|
|
|
Swarm.prototype._onAnnounceUpdate = function (params, peer) {
|
2014-12-10 17:01:34 +01:00
|
|
|
if (!peer) {
|
|
|
|
|
debug('unexpected `update` event from peer that is not in swarm')
|
2015-07-27 15:46:49 -07:00
|
|
|
return this._onAnnounceStarted(params, peer) // treat as a start
|
2014-12-10 17:01:34 +01:00
|
|
|
}
|
2015-05-03 16:38:16 -07:00
|
|
|
|
|
|
|
|
if (!peer.complete && params.left === 0) {
|
|
|
|
|
this.complete += 1
|
|
|
|
|
this.incomplete -= 1
|
|
|
|
|
peer.complete = true
|
|
|
|
|
}
|
2014-12-10 16:47:41 +01:00
|
|
|
}
|
|
|
|
|
|
2015-12-05 00:41:56 -08:00
|
|
|
Swarm.prototype._getPeers = function (numwant, ownPeerId, isWebRTC) {
|
2014-12-10 16:47:41 +01:00
|
|
|
var peers = []
|
2015-05-19 04:32:09 -07:00
|
|
|
var ite = randomIterate(Object.keys(this.peers))
|
2015-07-27 15:19:18 -07:00
|
|
|
var peerId
|
|
|
|
|
while ((peerId = ite()) && peers.length < numwant) {
|
2014-12-10 16:47:41 +01:00
|
|
|
var peer = this.peers[peerId]
|
2015-12-05 00:41:56 -08:00
|
|
|
if (isWebRTC && peer.peerId === ownPeerId) continue // don't send peer to itself
|
2016-03-13 15:51:08 +01:00
|
|
|
if ((isWebRTC && peer.type !== 'ws') || (!isWebRTC && peer.type === 'ws')) continue // send proper peer type
|
2015-12-05 00:41:56 -08:00
|
|
|
peers.push(peer)
|
2014-12-10 16:47:41 +01:00
|
|
|
}
|
2015-07-27 15:19:18 -07:00
|
|
|
return peers
|
2014-12-10 16:47:41 +01:00
|
|
|
}
|