代码拉取完成,页面将自动刷新
<?php
require_once('include/bittorrent_announce.php');
require_once('include/benc.php');
dbconn_announce();
//1. BLOCK ACCESS WITH WEB BROWSERS AND CHEATS!
$agent = $_SERVER["HTTP_USER_AGENT"];
block_browser();
//2. GET ANNOUNCE VARIABLES
// get string type passkey, info_hash, peer_id, event, ip from client
foreach (array("passkey", "info_hash", "peer_id", "event", "ipv6") as $x) {
if (isset($_GET["$x"]))
$GLOBALS[$x] = $_GET[$x];
}
// get integer type port, downloaded, uploaded, left from client
foreach (array("port", "downloaded", "uploaded", "left", "compact", "no_peer_id") as $x) {
$GLOBALS[$x] = 0 + $_GET[$x];
}
//3. CHECK TORRENTS AND USERS INFOMATION
// check info_hash, peer_id and passkey
foreach (array("passkey", "info_hash", "peer_id", "port", "downloaded", "uploaded", "left") as $x) {
if (!isset($x)) {
err("丢失的$x");
}
}
foreach (array("info_hash", "peer_id") as $x) {
if (strlen($GLOBALS[$x]) != 20) {
err("无效的$x (" . strlen($GLOBALS[$x]) . " - " . rawurlencode($GLOBALS[$x]) . ")");
}
}
if (strlen($passkey) != 32) {
err("无效的PassKey (" . strlen($passkey) . " - $passkey)");
}
//4. GET IP AND CHECK PORT
$ip = getip();
$pattern = '/^fe80:/';
if (preg_match($pattern, $ipv6)) {//如果提交上来的IPv6地址匹配到"fe80:",则IPv6地址为空
$ipv6 = "";
}
if (!$port || $port > 0xffff) {
err("无效的端口");
}
if (!ip2long($ip)) { //Disable compact announce with IPv6
$compact = 0;
}
// check port and connectable
if (portblacklisted($port)) {
err("端口: $port 是被禁止的。");
}
//5. GET PEER LIST
// Number of peers that the client would like to receive from the tracker.This value is permitted to be zero. If omitted, typically defaults to 50 peers.
$rsize = 50;
foreach (array("numwant", "num want", "num_want") as $k) {
if (isset($_GET[$k])) {
$rsize = 0 + $_GET[$k];
break;
}
}
// set if seeder based on left field
$seeder = ($left == 0) ? "yes" : "no";
// check passkey
if (!$az = $Cache->get_value('user_passkey_' . $passkey . '_content')) {
$res = sql_query("SELECT id, downloadpos, enabled, uploaded, downloaded, class, parked, clientselect, showclienterror, limitd FROM users WHERE passkey = " . sqlesc(mysql_real_escape_string($passkey)) . " LIMIT 1");
$az = mysql_fetch_array($res);
$Cache->cache_value('user_passkey_' . $passkey . '_content', $az, 950);
}
if (!$az) {
err("无效的PassKey,请在 $BASEURL 重新下载种子文件。");
}
$userid = 0 + $az['id'];
//3. CHECK IF CLIENT IS ALLOWED
$clicheck_res = check_client($peer_id, $agent, &$client_familyid);
if ($clicheck_res) {
if ($az['showclienterror'] == 'no') {
sql_query("UPDATE users SET showclienterror = 'yes' WHERE id = " . sqlesc($userid));
$Cache->delete_value('user_passkey_' . $passkey . '_content');
}
err($clicheck_res);
} elseif ($az['showclienterror'] == 'yes') {
$USERUPDATESET[] = "showclienterror = 'no'";
$Cache->delete_value('user_passkey_' . $passkey . '_content');
}
//永久屏蔽的客户端列表
$useragent = substr($peer_id, 0, 8);
$agentarray = array("-SD", "-NP", "-BC", "-BB", "-SZ", "-AG", "-ML");
foreach ($agentarray as $bannedclient) {
if (strpos($useragent, $bannedclient) !== FALSE) {
err("客户端是被禁止的,请使用被允许的客户端");
}
}
//检查种子是否被BAN
if (!$torrent = $Cache->get_value('torrent_hash_' . $info_hash . '_content')) {
$res = sql_query("SELECT id, owner, sp_state, seeders, leechers, UNIX_TIMESTAMP(added) AS ts, banned, limitd FROM torrents WHERE " . hash_where("info_hash", $info_hash));
$torrent = mysql_fetch_array($res);
$Cache->cache_value('torrent_hash_' . $info_hash . '_content', $torrent, 350);
}
if (!$torrent) {
err("此种子没有在 $BASEURL 注册");
//} elseif ($torrent['banned'] == 'yes' && $az['class'] < $seebanned_class) {
} elseif ($torrent['banned'] == 'yes') {
err("此种子被禁止下载");
}
//限制资源权限检查
if ($torrent['limitd'] == 'yes' && $az['class'] < UC_MODERATOR && $torrent['owner'] != $az['id'] && $az['limitd'] != 'yes') {//种子是限制资源,下载者等级<管理员,不是发布者本人,又没有限制资源下载权限,都不满足时拒绝连接
err("你没有下载限制资源的权限");
}
//找到该种子的Peers
$torrentid = $torrent["id"];
$numpeers = $torrent["seeders"] + $torrent["leechers"];
if ($seeder == 'yes') {
$only_leech_query = " AND seeder = 'no' ";
$newnumpeers = $torrent["leechers"];
} else {
$only_leech_query = "";
$newnumpeers = $numpeers;
}
if ($newnumpeers > $rsize) {
$limit = " ORDER BY RAND() LIMIT $rsize";
} else {
$limit = "";
}
$announce_wait = 30;
$fields = "seeder, peer_id, ip, ipv6, port, uploaded, downloaded, (" . TIMENOW . " - UNIX_TIMESTAMP(last_action)) AS announcetime, UNIX_TIMESTAMP(prev_action) AS prevts";
//$peerlistsql = "SELECT " . $fields . " FROM peers WHERE torrent = " . $torrentid . " AND connectable = 'yes' " . $only_leech_query . $limit;
$peerlistsql = "SELECT " . $fields . " FROM peers WHERE torrent = " . $torrentid . $only_leech_query . $limit;
$res = sql_query($peerlistsql);
$real_annnounce_interval = $announce_interval;
if ($anninterthreeage && ($anninterthree > $announce_wait) && (TIMENOW - $torrent['ts']) >= ($anninterthreeage * 86400)) {
$real_annnounce_interval = $anninterthree;
} elseif ($annintertwoage && ($annintertwo > $announce_wait) && (TIMENOW - $torrent['ts']) >= ($annintertwoage * 86400)) {
$real_annnounce_interval = $annintertwo;
}
$resp = "d" . benc_str("interval") . "i" . $real_annnounce_interval . "e" . benc_str("min interval") . "i" . $announce_wait . "e" . benc_str("complete") . "i" . $torrent["seeders"] . "e" . benc_str("incomplete") . "i" . $torrent["leechers"] . "e" . benc_str("peers");
$peer_list = "";
unset($self);
// bencoding the peers info get for this announce
while ($row = mysql_fetch_assoc($res)) {
$row["peer_id"] = hash_pad($row["peer_id"]);
// $peer_id is the announcer's peer_id while $row["peer_id"] is randomly selected from the peers table
if ($row["peer_id"] === $peer_id) {
$self = $row;
continue;
}
if ($compact == 1) {
$longip = ip2long($row['ip']);
if ($longip) {//Ignore ipv6 address
$peer_list .= pack("Nn", sprintf("%d", $longip), $row['port']);
}
} elseif ($no_peer_id == 1) {
$peer_list .= "d" .
benc_str("ip") . benc_str($row["ip"]) .
benc_str("port") . "i" . $row["port"] . "e" .
"e";
if ($row['ipv6']) {
$peer_list .= "d" .
benc_str("ip") . benc_str($row["ipv6"]) .
benc_str("port") . "i" . $row["port"] . "e" .
"e";
}
} else {
$peer_list .= "d" .
benc_str("ip") . benc_str($row["ip"]) .
benc_str("peer id") . benc_str($row["peer_id"]) .
benc_str("port") . "i" . $row["port"] . "e" .
"e";
if ($row['ipv6']) {
$peer_list .= "d" .
benc_str("ip") . benc_str($row["ipv6"]) .
benc_str("peer id") . benc_str($row["peer_id"]) .
benc_str("port") . "i" . $row["port"] . "e" .
"e";
}
}
}
if ($compact == 1) {
$resp .= benc_str($peer_list);
} else {
$resp .= "l" . $peer_list . "e";
}
$resp .= "e";
$selfwhere = "torrent = $torrentid AND " . hash_where("peer_id", $peer_id);
//no found in the above random selection
if (!isset($self)) {
$res = sql_query("SELECT $fields FROM peers WHERE $selfwhere LIMIT 1");
$row = mysql_fetch_assoc($res);
if ($row) {
$self = $row;
}
}
// min announce time
if (isset($self) && $self['prevts'] > (TIMENOW - $announce_wait))
err('更新Tracker太频繁了,至少需要等待 ' . $announce_wait . ' 秒');
// current peer_id, or you could say session with tracker not found in table peers
if (!isset($self)) {
$valid = mysql_fetch_row(sql_query("SELECT COUNT(*) FROM peers WHERE torrent = $torrentid AND userid = " . sqlesc($userid)));
if ($valid[0] > 1 && $seeder == 'no') {
if ($az['class'] <= UC_NEXUS_MASTER) {
err("在同一时间只能在一个地方下载!");
}
}
if ($valid[0] > 3 && $seeder == 'yes') {
if ($az['class'] <= UC_NEXUS_MASTER) {
err("在同一时间最多只能在三个地方做种!");
}
}
/*
if ($az["enabled"] == "no") {
err("你的帐号被禁用。");
} elseif ($az["parked"] == "yes") {
err("你的帐号已封存。");
} elseif ($az["downloadpos"] == "no") {
err("你的下载权限被禁止。");
}
* 允许以上用户继续做种
*/
if ($az["class"] < UC_VIP) {
$ratio = (($az["downloaded"] > 0) ? ($az["uploaded"] / $az["downloaded"]) : 1);
$gigs = $az["downloaded"] / (1024 * 1024 * 1024);
if ($waitsystem == "yes") {
if ($gigs > 10) {
$elapsed = floor((TIMENOW - $torrent["ts"]) / 3600);
if ($ratio < 0.2)
$wait = 24;
elseif ($ratio < 0.3)
$wait = 12;
elseif ($ratio < 0.4)
$wait = 6;
elseif ($ratio < 0.5)
$wait = 3;
else
$wait = 0;
} else {
$wait = 0;
}
if ($elapsed < $wait) {
err("分享率过低!需要等待" . number_format($wait - $elapsed) . "小时后才能开始下载。");
}
}
if ($maxdlsystem == "yes") {
if ($gigs > 10) {
if ($ratio < 0.2)
$max = 1;
elseif ($ratio < 0.3)
$max = 2;
elseif ($ratio < 0.4)
$max = 3;
elseif ($ratio < 0.5)
$max = 4;
else
$max = 0;
}
if ($max > 0) {
$res = sql_query("SELECT COUNT(*) AS num FROM peers WHERE userid = '$userid' AND seeder = 'no'") or err("Tracker error 5");
$row = mysql_fetch_assoc($res);
if ($row['num'] >= $max)
err("分享率过低!同一时间最多只能下载{$max}个资源。");
}
}
}
} else {
$upthis = $trueupthis = max(0, $uploaded - $self["uploaded"]);
$downthis = $truedownthis = max(0, $downloaded - $self["downloaded"]);
$announcetime = ($self["seeder"] == "yes" ? "seedtime = seedtime + $self[announcetime]" : "leechtime = leechtime + $self[announcetime]");
$is_cheater = false;
if ($cheaterdet_security) {
if ($az['class'] < $nodetect_security && $self['announcetime'] > 10) {
$is_cheater = check_cheater($userid, $torrent['id'], $upthis, $downthis, $self['announcetime'], $torrent['seeders'], $torrent['leechers']);
}
}
if ($az["class"] >= UC_VIP)
$downseedbonus = 0;
else
$downseedbonus = -$truedownthis / 1024 * 0.00001; //下载影响积分,单位每K
$upseedbonus = $trueupthis / 1024 * 0.000001; //上传影响积分,单位每K
if (!$is_cheater && ($trueupthis > 0 || $truedownthis > 0)) {
$global_promotion_state = get_global_sp_state();
if ($global_promotion_state == 1) {
if ($ratioless == 'yes') {
if ($torrent['sp_state'] == 3) {//2x
$USERUPDATESET[] = "uploaded = uploaded + 2 * $trueupthis" . ", seedbonus = seedbonus + $upseedbonus";
$USERUPDATESET[] = "downloaded = downloaded + $truedownthis" . ", seedbonus = seedbonus + $downseedbonus";
} elseif ($torrent['sp_state'] == 1) {
if ($torrent['owner'] == $userid && $uploaderdouble_torrent > 0) {
$upthis = $trueupthis * $uploaderdouble_torrent;
}
$USERUPDATESET[] = "uploaded = uploaded + $upthis" . ", seedbonus = seedbonus + $upseedbonus";
$USERUPDATESET[] = "downloaded = downloaded + $truedownthis" . ", seedbonus = seedbonus + $downseedbonus";
}
} else {
if ($torrent['sp_state'] == 3) {//2x
$USERUPDATESET[] = "uploaded = uploaded + 2 * $trueupthis" . ", seedbonus = seedbonus + $upseedbonus";
$USERUPDATESET[] = "downloaded = downloaded + $truedownthis" . ", seedbonus = seedbonus + $downseedbonus";
} elseif ($torrent['sp_state'] == 4) {//2xFree
$USERUPDATESET[] = "uploaded = uploaded + 2 * $trueupthis" . ", seedbonus = seedbonus + $upseedbonus";
} elseif ($torrent['sp_state'] == 6) {//2x50%
$USERUPDATESET[] = "uploaded = uploaded + 2 * $trueupthis" . ", seedbonus = seedbonus + $upseedbonus";
$USERUPDATESET[] = "downloaded = downloaded + $truedownthis / 2" . ", seedbonus = seedbonus + $downseedbonus / 2";
} else {
if ($torrent['owner'] == $userid && $uploaderdouble_torrent > 0) {
$upthis = $trueupthis * $uploaderdouble_torrent;
}
if ($torrent['sp_state'] == 2) {//Free
$USERUPDATESET[] = "uploaded = uploaded + $upthis" . ", seedbonus = seedbonus + $upseedbonus";
} elseif ($torrent['sp_state'] == 5) {//50%
$USERUPDATESET[] = "uploaded = uploaded + $upthis" . ", seedbonus = seedbonus + $upseedbonus";
$USERUPDATESET[] = "downloaded = downloaded + $truedownthis / 2" . ", seedbonus = seedbonus + $downseedbonus / 2";
} elseif ($torrent['sp_state'] == 7) {//30%
$USERUPDATESET[] = "uploaded = uploaded + $upthis" . ", seedbonus = seedbonus + $upseedbonus";
$USERUPDATESET[] = "downloaded = downloaded + $truedownthis * 3 / 10" . ", seedbonus = seedbonus + $downseedbonus * 3 / 10";
} elseif ($torrent['sp_state'] == 1) {
$USERUPDATESET[] = "uploaded = uploaded + $upthis" . ", seedbonus = seedbonus + $upseedbonus";
$USERUPDATESET[] = "downloaded = downloaded + $truedownthis" . ", seedbonus = seedbonus + $downseedbonus";
}
}
}
}
if ($ratioless == 'no') {
if ($global_promotion_state == 3) {//2x
if ($uploaderdouble_torrent > 2 && $torrent['owner'] == $userid && $uploaderdouble_torrent > 0)
$upthis = $trueupthis * $uploaderdouble_torrent;
else
$upthis = 2 * $trueupthis;
$USERUPDATESET[] = "uploaded = uploaded + $upthis" . ", seedbonus = seedbonus + $upseedbonus";
$USERUPDATESET[] = "downloaded = downloaded + $truedownthis" . ", seedbonus = seedbonus + $downseedbonus";
} elseif ($global_promotion_state == 2) {//Free
if ($torrent['owner'] == $userid && $uploaderdouble_torrent > 0)
$upthis = $trueupthis * $uploaderdouble_torrent;
$USERUPDATESET[] = "uploaded = uploaded + $upthis" . ", seedbonus = seedbonus + $upseedbonus";
} elseif ($global_promotion_state == 4) {//2xFree
if ($uploaderdouble_torrent > 2 && $torrent['owner'] == $userid && $uploaderdouble_torrent > 0)
$upthis = $trueupthis * $uploaderdouble_torrent;
else
$upthis = 2 * $trueupthis;
$USERUPDATESET[] = "uploaded = uploaded + $upthis" . ", seedbonus = seedbonus + $upseedbonus";
} elseif ($global_promotion_state == 5) {//50%
if ($torrent['owner'] == $userid && $uploaderdouble_torrent > 0)
$upthis = $trueupthis * $uploaderdouble_torrent;
$USERUPDATESET[] = "uploaded = uploaded + $upthis" . ", seedbonus = seedbonus + $upseedbonus";
$USERUPDATESET[] = "downloaded = downloaded + $truedownthis / 2" . ", seedbonus = seedbonus + $downseedbonus / 2";
} elseif ($global_promotion_state == 6) {//2x50%
if ($uploaderdouble_torrent > 2 && $torrent['owner'] == $userid && $uploaderdouble_torrent > 0)
$upthis = $trueupthis * $uploaderdouble_torrent;
else
$upthis = 2 * $trueupthis;
$USERUPDATESET[] = "uploaded = uploaded + $upthis" . ", seedbonus = seedbonus + $upseedbonus";
$USERUPDATESET[] = "downloaded = downloaded + $truedownthis / 2" . ", seedbonus = seedbonus + $downseedbonus / 2";
} elseif ($global_promotion_state == 7) {//30%
if ($torrent['owner'] == $userid && $uploaderdouble_torrent > 0)
$upthis = $trueupthis * $uploaderdouble_torrent;
$USERUPDATESET[] = "uploaded = uploaded + $upthis" . ", seedbonus = seedbonus + $upseedbonus";
$USERUPDATESET[] = "downloaded = downloaded + $truedownthis * 3 / 10" . ", seedbonus = seedbonus + $downseedbonus";
}
}
}
}
$dt = sqlesc(date("Y-m-d H:i:s"));
$updateset = array();
// set non-type event
if (!isset($event))
$event = "";
if (isset($self) && $event == "stopped") {
sql_query("DELETE FROM peers WHERE $selfwhere") or err("D Err");
if (mysql_affected_rows()) {
$updateset[] = ($self["seeder"] == "yes" ? "seeders = seeders - 1" : "leechers = leechers - 1");
sql_query("UPDATE snatched SET uploaded = uploaded + $trueupthis, downloaded = downloaded + $truedownthis, to_go = $left, $announcetime, last_action = " . $dt . " WHERE torrentid = $torrentid AND userid = $userid") or err("SL Err 1");
}
} elseif (isset($self)) {
if ($event == "completed") {
$finished = ", finishedat = " . TIMENOW;
$finished_snatched = ", completedat = " . $dt . ", finished = 'yes'";
$updateset[] = "times_completed = times_completed + 1";
}
sql_query("UPDATE peers SET ip = " . sqlesc($ip) . ", ipv6 = " . sqlesc($ipv6) . ", port = $port, uploaded = $uploaded, downloaded = $downloaded, to_go = $left, prev_action = last_action, last_action = $dt, seeder = '$seeder', agent = " . sqlesc($agent) . " $finished WHERE $selfwhere") or err("PL Err 1");
if (mysql_affected_rows()) {
if ($seeder <> $self["seeder"])
$updateset[] = ($seeder == "yes" ? "seeders = seeders + 1, leechers = leechers - 1" : "seeders = seeders - 1, leechers = leechers + 1");
sql_query("UPDATE snatched SET uploaded = uploaded + $trueupthis, downloaded = downloaded + $truedownthis, to_go = $left, $announcetime, last_action = " . $dt . " $finished_snatched WHERE torrentid = $torrentid AND userid = $userid") or err("SL Err 2");
}
} else {
if (validip($ip)) {
$sockres = @pfsockopen("tcp://[" . $ip . "]", $port, $errno, $errstr, 5); //可连接否解决
} else {
$sockres = @pfsockopen("tcp://" . $ip, $port, $errno, $errstr, 5);
}
if ($errno == 111) {//目标拒绝连接,错误代号为111
$connectable = "no";
} else {
$connectable = "yes";
@fclose($sockres);
}
/*
* 先判断UserID,TorrentID,IP和Port是否有一样的记录存在
* 如果存在则删掉已经存在的记录并插入新的记录
* 如果不存在则插入新的记录
*/
if ($ipv6) {
sql_query("DELETE FROM peers WHERE torrent = $torrentid AND userid = $userid AND ip = " . sqlesc($ip) . " AND ipv6 = " . sqlesc($ipv6) . " port = $port");
} else {
sql_query("DELETE FROM peers WHERE torrent = $torrentid AND userid = $userid AND ip = " . sqlesc($ip) . " AND port = $port");
}
sql_query("INSERT INTO peers (torrent, userid, peer_id, ip, port, connectable, uploaded, downloaded, to_go, started, last_action, seeder, agent, downloadoffset, uploadoffset, passkey, ipv6) VALUES ($torrentid, $userid, " . sqlesc($peer_id) . ", " . sqlesc($ip) . ", $port, '$connectable', $uploaded, $downloaded, $left, $dt, $dt, '$seeder', " . sqlesc($agent) . ", $downloaded, $uploaded, " . sqlesc(mysql_real_escape_string($passkey)) . ", '$ipv6')") or err("PL Err 2");
if (mysql_affected_rows()) {
$updateset[] = ($seeder == "yes" ? "seeders = seeders + 1" : "leechers = leechers + 1");
$check = mysql_num_rows(sql_query("SELECT torrentid FROM snatched WHERE torrentid = $torrentid AND userid = $userid"));
if ($check == 0) {
sql_query("INSERT INTO snatched (torrentid, userid, ip, port, uploaded, downloaded, to_go, startdat, last_action) VALUES ($torrentid, $userid, " . sqlesc($ip) . ", $port, $uploaded, $downloaded, $left, $dt, $dt)") or err("SL Err 3");
} else {
sql_query("UPDATE snatched SET to_go = $left, last_action = " . $dt . " WHERE torrentid = $torrentid AND userid = $userid") or err("SL Err 4");
}
}
}
if (count($updateset)) { // Update only when there is change in peer counts
$updateset[] = "visible = 'yes'";
$updateset[] = "last_action = $dt";
sql_query("UPDATE torrents SET " . join(",", $updateset) . " WHERE id = $torrentid");
}
if ($client_familyid != 0 && $client_familyid != $az['clientselect'])
$USERUPDATESET[] = "clientselect = " . sqlesc($client_familyid);
if (count($USERUPDATESET) && $userid) {
sql_query("UPDATE users SET " . join(", ", $USERUPDATESET) . " WHERE id = " . $userid);
}
benc_resp_raw($resp);
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。