0

我们正在做一个网站,您可以在其中编辑 torrent 文件的跟踪器。

我们目前正在搜索的SEEDS和。PEERSTRACKER

我们很困惑它是如何工作的。有没有人知道如何在 中显示SEEDSPEERS的 torrent 文件PHP

就像在 中一样TORRENTEDITOR.COM,我们已经看到了这样的代码,但我们不明白它是如何工作的,请帮助我们。

    // global $seedsandpeers;
    if ($seedsandpeers === TRUE){
    if (!empty($array["announce-list"])){
        $announce = $array["announce-list"];
    // Possibly HtTp://
        $announce = strtolower($announce);
    if (substr($announce, 0, 7) === "http://"){
        if ((substr_count($announce, "/announce")) == 1){
            $scrape = str_replace('/announce', '/scrape', $announce);
            $httpget = "?info_hash=";
            $binsha1 = pack("H*", $infohash);
            $binsha1s = addslashes($binsha1);
            $fullurl = "$scrape$httpget$binsha1";
            $httpurl = pathurlencode($fullurl);
    sapeerconnect($httpurl, $binsha1s, $torrentsize);
    }  else {
$error = '<BR><label style="font-family:timesnewroman;font-size:12px;">Bad Tracker enter code hereURL for scraping (Maybe trackerless torrent).<br>' ;
echo $error;
}
}
else {
$error = '<BR><label style="font-family:timesnewroman;font-size:12px;">Bad Tracker URL for scraping (Maybe trackerless torrent).<br>';
echo $error;
}
}
}
4

1 回答 1

1

所以我研究了一下,看起来你可以解码一个 .torrent 文件:$

<?php
include 'functions.php';

$torrent_data = bdec(file_get_contents('test.torrent'));

$info=strtolower(sha1(benc($torrent_data['info'])));
$scrape=str_replace('announce','scrape',$torrent_data['announce']);
$sources=bdec(@file_get_contents($scrape.'?info_hash='.urlencode(hex2bin($info))));

$c=count($torrent_data['info']['files']);
echo '<h2>Files</h2>';

$files=array();
if($c > 1)
{
    for ($i = 0; $i < $c; $i++) $files[]=$torrent_data['info']['files'][$i]['path']['1'];
    sort($files);
    foreach($files as $file) echo $file."<br>";
}
else echo $torrent_data['info']['name']."<br>";

$seeds = $sources['files'][hex2bin($info)]['complete'];
$leechs = $sources['files'][hex2bin($info)]['incomplete'];
$downloads = $sources['files'][hex2bin($info)]['downloaded'];

echo '<h2>Sources</h2>'.
    '<b>Seeds:</b> '.$seeds.'<br/>'.
    '<b>Leechs:</b> '.$leechs.'<br/>' .
    '<b>Downloads:</b> '.$downloads.'<br/>';
?>

要使用此代码,您首先需要包含一个带有 benc、bdec 和 hex2bin 函数的文件。您可以从这里获得这些功能

我准备了一个测试用例,可以在这里找到

希望这有帮助。

于 2014-01-23T04:09:07.530 回答