nodejs中的bittorrent tracker播种机和leecher

 张珮娟7063 发布于 2023-01-08 16:08

我需要在nodejs中设置一个示例bittorrent跟踪器,播种器和leecher.我已经写了所有代码,但它不起作用,我不知道为什么.我使用bittorrent-tracker启动了一个跟踪器,使用nt编写了torrent文件,并使用bittorrent-tracker作为播种器连接到跟踪器(bt-tracker同时具有客户端和服务器).

最后,我启动了另一个只有torrent文件并连接到跟踪器的客户端.我能够看到torrent中的文件(在download/leecher客户端中).但文件下载本身不会启动.


正在使用的代码://跟踪器:

var Server = require('bittorrent-tracker').Server
var port=6881

var server = new Server({
  udp: true, // enable udp server? [default=true]
  http: true // enable http server? [default=true]
})

server.on('error', function (err) {
  // fatal server error!
  console.log(err.message)
})

server.on('warning', function (err) {
  // client sent bad data. probably not a problem, just a buggy client.

  console.log(err.message)
})

server.on('listening', function () {
  console.log('tracker server is listening!')
})

// start tracker server listening!
server.listen(port)

// listen for individual tracker messages from peers:

server.on('start', function (addr, params) {
  console.log('got start message from ' + addr)
  console.log('params in the message: ' + JSON.stringify(params))
})

server.on('complete', function (addr, params) {})
server.on('update', function (addr, params) {})
server.on('stop', function (addr, params) {})

// get info hashes for all torrents in the tracker server
console.log(Object.keys(server.torrents))

// torrent文件编写器和播种器的代码

var nt=require('nt');
var fs=require('fs');

//var rs=nt.make('udp://tracker.publicbt.com:80');
//rs.pipe(fs.createWriteStream('param.torrent'));

function postWrite(){
  var cl=require('bittorrent-tracker').Client;
  var parseTorrent=require('parse-torrent');
  var torrent=fs.readFileSync(__dirname + '/param.torrent');
  var parsedTorrent=parseTorrent(torrent);
  console.log(parsedTorrent);

  var peerId = new Buffer('81276382172123141133')
  var port = 6882

  var client = new cl(peerId, port, parsedTorrent)

  client.on('error', function (err) {
    console.log(err.message)
    // a tracker was unavailable or sent bad data to the client. you can probably ignore it
  })

  client.start()

  client.on('update', function (data) {
    console.log('got an announce response from tracker: ' + data.announce)
    console.log('number of seeders in the swarm: ' + data.complete)
    console.log('number of leechers in the swarm: ' + data.incomplete)
  })

  client.once('peer', function (addr) {
    console.log('found a peer: ' + addr) // 85.10.239.191:48623
  })

  // announce that download has completed (and you are now a seeder)
  client.complete();

  client.update()
}

function writeTorrentFile() {
  nt.makeWrite('param.torrent', 'udp://hola.127.0.0.1.xip.io:6881', '/Users/param/personal/nodejs/uploader/files', 
  //  ['hello-world.txt'], function(err, torrent){
    ['hello-world.txt'], {}, function(err, torrent){
      console.log(err);
      console.log(torrent);
      nt.read('param.torrent', function(err, torrent) {
        if (err) throw err;
        console.log('Info hash:', torrent.metadata.info);
      });

      postWrite();
    });
}
writeTorrentFile();

// leecher的代码

var BitTorrentClient = require('bittorrent-client');
var fs = require('fs');

var file = fs.readFileSync(__dirname + '/param.torrent')

var client = BitTorrentClient({
  maxPeers: 100,          // Max number of peers to connect to (per torrent)
  path: __dirname, // Where to save the torrent file data
  dht: true,              // Whether or not to enable DHT
  verify: true            // Verify previously stored data before starting
});

client.add(file);

client.on('torrent', function (torrent) {
  // torrent metadata has been fetched
  console.log(torrent.name)

  torrent.files.forEach(function (file) {
    console.log("selecting "+file.name+" for download");
    console.log(file.path)
    st=file.createReadStream()
    st.on('data', function(chunk){
      console.log(chunk)
    });
  })
})

leecher上的数据事件永远不会被调用 - 即使它进入了torrent的文件循环!

1 个回答
  • 您需要使用实际的torrent客户端来播种.现在,你只是使用bittorrent-tracker它只是告诉跟踪服务器你是播种机,但实际上并没有包含任何代码来发送文件到同行,事实上,甚至没有监听任何端口.要实际播种,您应该使用完整的torrent客户端.

    在你的例子中,你已经在使用bittorrent-client(由我创作),但我建议你继续使用,webtorrent因为我bittorrent-client不久前已经弃用了.

    这是种子文件的一些代码:

    var WebTorrent = require('webtorrent')
    var client = new WebTorrent()
    client.seed('/path/to/file', function (torrent) {
      console.log('Client is seeding:', torrent.magnetUri)
    })
    

    以下是完整的文档client.seed:https://github.com/feross/webtorrent/blob/master/docs/api.md#clientseedinput-opts-function-onseed-torrent-

    2023-01-08 16:10 回答
撰写答案
今天,你开发时遇到什么问题呢?
立即提问
热门标签
PHP1.CN | 中国最专业的PHP中文社区 | PNG素材下载 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有