2020-12-26 01:42:23 +08:00
|
|
|
<?php
|
2021-02-26 15:15:13 +08:00
|
|
|
require_once('../include/bittorrent_announce.php');
|
2022-03-19 14:55:43 +08:00
|
|
|
$apiLocalHost = nexus_env('TRACKER_API_LOCAL_HOST');
|
|
|
|
|
if ($apiLocalHost) {
|
|
|
|
|
do_log("[TRACKER_API_LOCAL_HOST] $apiLocalHost");
|
|
|
|
|
$response = request_local_api(trim($apiLocalHost, '/') . '/api/scrape');
|
|
|
|
|
if (empty($response)) {
|
|
|
|
|
err("error from TRACKER_API_LOCAL_HOST");
|
|
|
|
|
} else {
|
|
|
|
|
exit(benc_resp_raw($response));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
require ROOT_PATH . 'include/core.php';
|
2021-06-09 02:23:09 +08:00
|
|
|
//require_once('../include/benc.php');
|
2020-12-26 01:42:23 +08:00
|
|
|
dbconn_announce();
|
|
|
|
|
|
|
|
|
|
// BLOCK ACCESS WITH WEB BROWSERS AND CHEATS!
|
|
|
|
|
block_browser();
|
|
|
|
|
|
|
|
|
|
preg_match_all('/info_hash=([^&]*)/i', $_SERVER["QUERY_STRING"], $info_hash_array);
|
|
|
|
|
$fields = "info_hash, times_completed, seeders, leechers";
|
|
|
|
|
|
|
|
|
|
if (count($info_hash_array[1]) < 1) {
|
2021-03-18 20:32:35 +08:00
|
|
|
err("Require info_hash.");
|
|
|
|
|
// $query = "SELECT $fields FROM torrents ORDER BY id";
|
2020-12-26 01:42:23 +08:00
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
$query = "SELECT $fields FROM torrents WHERE " . hash_where_arr('info_hash', $info_hash_array[1]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$res = sql_query($query);
|
|
|
|
|
|
|
|
|
|
if (mysql_num_rows($res) < 1){
|
|
|
|
|
err("Torrent not registered with this tracker.");
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-09 02:23:09 +08:00
|
|
|
$torrent_details = [];
|
2020-12-26 01:42:23 +08:00
|
|
|
while ($row = mysql_fetch_assoc($res)) {
|
2021-06-09 02:23:09 +08:00
|
|
|
$torrent_details[$row['info_hash']] = [
|
|
|
|
|
'complete' => (int)$row['seeders'],
|
|
|
|
|
'downloaded' => (int)$row['times_completed'],
|
|
|
|
|
'incomplete' => (int)$row['leechers']
|
|
|
|
|
];
|
2020-12-26 01:42:23 +08:00
|
|
|
}
|
|
|
|
|
|
2021-06-09 02:23:09 +08:00
|
|
|
$d = ['files' => $torrent_details];
|
|
|
|
|
benc_resp($d);
|