'; $peers_cnt = $seed_count = $leech_count = 0; $seeders = $leechers = ''; $tor_info = []; $template->assign_vars([ 'SEED_COUNT' => false, 'LEECH_COUNT' => false, 'TOR_SPEED_UP' => false, 'TOR_SPEED_DOWN' => false, 'SHOW_RATIO_WARN' => false ]); // Define show peers mode (count only || user names with complete % || full details) $cfg_sp_mode = $bb_cfg['bt_show_peers_mode']; $get_sp_mode = $_GET['spmode'] ?? ''; $s_mode = 'count'; if ($cfg_sp_mode == SHOW_PEERS_NAMES) { $s_mode = 'names'; } elseif ($cfg_sp_mode == SHOW_PEERS_FULL) { $s_mode = 'full'; } if ($bb_cfg['bt_allow_spmode_change']) { if ($get_sp_mode == 'names') { $s_mode = 'names'; } elseif ($get_sp_mode == 'full') { $s_mode = 'full'; } } $bt_topic_id = $t_data['topic_id']; $bt_user_id = $userdata['user_id']; $attach_id = $attachments['_' . $post_id][$i]['attach_id']; $tracker_status = $attachments['_' . $post_id][$i]['tracker_status']; $download_count = declension((int)$attachments['_' . $post_id][$i]['download_count'], 'times'); $tor_file_size = humn_size($attachments['_' . $post_id][$i]['filesize']); $tor_file_time = bb_date($attachments['_' . $post_id][$i]['filetime']); $tor_reged = (bool)$tracker_status; $show_peers = (bool)$bb_cfg['bt_show_peers']; $locked = ($t_data['forum_status'] == FORUM_LOCKED || $t_data['topic_status'] == TOPIC_LOCKED); $tor_auth = ($bt_user_id != GUEST_UID && (($bt_user_id == $poster_id && !$locked) || $is_auth['auth_mod'])); $tor_auth_reg = ($tor_auth && $t_data['allow_reg_tracker'] && $post_id == $t_data['topic_first_post_id']); $tor_auth_del = ($tor_auth && $tor_reged); $tracker_link = ($tor_reged) ? $lang['BT_REG_YES'] : $lang['BT_REG_NO']; $download_link = DL_URL . $attach_id; $description = ($comment) ?: preg_replace("#" . "." . TORRENT_EXT . "$#i", '', $display_name); if ($tor_auth_reg || $tor_auth_del) { $reg_tor_url = '' . $lang['BT_REG_ON_TRACKER'] . ''; $unreg_tor_url = '' . $lang['BT_UNREG_FROM_TRACKER'] . ''; $tracker_link = ($tor_reged) ? $unreg_tor_url : $reg_tor_url; } if ($bb_cfg['tracker']['use_old_torrent_name_format']) { $display_name = '[' . $bb_cfg['server_name'] . '].t' . $bt_topic_id . '.' . TORRENT_EXT; } else { $display_name = $t_data['topic_title'] . ' [' . $bb_cfg['server_name'] . '-' . $bt_topic_id . ']' . '.' . TORRENT_EXT; } if (!$tor_reged) { $template->assign_block_vars('postrow.attach.tor_not_reged', [ 'DOWNLOAD_NAME' => $display_name, 'TRACKER_LINK' => $tracker_link, 'ATTACH_ID' => $attach_id, 'S_UPLOAD_IMAGE' => $upload_image, 'U_DOWNLOAD_LINK' => $download_link, 'FILESIZE' => $tor_file_size, 'DOWNLOAD_COUNT' => $download_count, 'POSTED_TIME' => $tor_file_time, ]); if ($comment) { $template->assign_block_vars('postrow.attach.tor_not_reged.comment', ['COMMENT' => $comment]); } } else { $sql = "SELECT bt.*, u.user_id, u.username, u.user_rank FROM " . BB_BT_TORRENTS . " bt LEFT JOIN " . BB_USERS . " u ON(bt.checked_user_id = u.user_id) WHERE bt.attach_id = $attach_id"; if (!$result = DB()->sql_query($sql)) { bb_die('Could not obtain torrent information'); } $tor_info = DB()->sql_fetchrow($result); DB()->sql_freeresult($result); } if ($tor_reged && !$tor_info) { DB()->query("UPDATE " . BB_ATTACHMENTS_DESC . " SET tracker_status = 0 WHERE attach_id = $attach_id"); bb_die('Torrent status fixed'); } if ($tor_auth) { $template->assign_vars([ 'TOR_CONTROLS' => true, 'TOR_ATTACH_ID' => $attach_id ]); if ($t_data['self_moderated'] || $is_auth['auth_mod']) { $template->assign_vars(['AUTH_MOVE' => true]); } } if ($tor_reged && $tor_info) { $tor_size = ($tor_info['size']) ?: 0; $tor_completed_count = declension((int)$tor_info['complete_count'], 'times'); $tor_id = $tor_info['topic_id']; $tor_type = $tor_info['tor_type']; // Magnet link $user_passkey = \TorrentPier\Legacy\Torrent::getPasskey($bt_user_id); $tor_magnet = create_magnet($tor_info['info_hash'], $tor_info['info_hash_v2'], $user_passkey, html_ent_decode($t_data['topic_title']), $tor_size); // ratio limits $min_ratio_dl = $bb_cfg['bt_min_ratio_allow_dl_tor']; $min_ratio_warn = $bb_cfg['bt_min_ratio_warning']; $dl_allowed = true; $user_ratio = 0; if (($min_ratio_dl || $min_ratio_warn) && ($bt_user_id != $poster_id && $bt_user_id != GUEST_UID)) { $sql = "SELECT u.*, dl.user_status FROM " . BB_BT_USERS . " u LEFT JOIN " . BB_BT_DLSTATUS . " dl ON dl.user_id = $bt_user_id AND dl.topic_id = $bt_topic_id WHERE u.user_id = $bt_user_id LIMIT 1"; } else { $sql = "SELECT user_status FROM " . BB_BT_DLSTATUS . " WHERE user_id = $bt_user_id AND topic_id = $bt_topic_id LIMIT 1"; } $bt_userdata = DB()->fetch_row($sql); $user_status = $bt_userdata['user_status'] ?? null; if (($min_ratio_dl || $min_ratio_warn) && (isset($user_status) && $user_status != DL_STATUS_COMPLETE) && ($bt_user_id != $poster_id && $bt_user_id != GUEST_UID) && $tor_type != TOR_TYPE_GOLD) { if (($user_ratio = get_bt_ratio($bt_userdata)) !== null) { $dl_allowed = ($user_ratio > $min_ratio_dl); } if ((isset($user_ratio, $min_ratio_warn) && $user_ratio < $min_ratio_warn && TR_RATING_LIMITS) || ($bt_userdata['u_down_total'] < MIN_DL_FOR_RATIO)) { $template->assign_vars([ 'SHOW_RATIO_WARN' => true, 'RATIO_WARN_MSG' => sprintf($lang['BT_RATIO_WARNING_MSG'], $min_ratio_dl, $bb_cfg['ratio_url_help']), ]); } } if (!$dl_allowed) { $template->assign_block_vars('postrow.attach.tor_reged', []); $template->assign_vars([ 'TOR_BLOCKED' => true, 'TOR_BLOCKED_MSG' => sprintf($lang['BT_LOW_RATIO_FOR_DL'], round($user_ratio, 2), "search.php?dlu=$bt_user_id&dlc=1"), ]); } else { $template->assign_block_vars('postrow.attach.tor_reged', [ 'DOWNLOAD_NAME' => $display_name, 'TRACKER_LINK' => $tracker_link, 'ATTACH_ID' => $attach_id, 'TOR_SILVER_GOLD' => $tor_type, 'TOR_TYPE' => is_gold($tor_type), // torrent status mod 'TOR_FROZEN' => !IS_AM ? (isset($bb_cfg['tor_frozen'][$tor_info['tor_status']]) && !(isset($bb_cfg['tor_frozen_author_download'][$tor_info['tor_status']]) && $userdata['user_id'] == $tor_info['poster_id'])) ? true : '' : '', 'TOR_STATUS_TEXT' => $lang['TOR_STATUS_NAME'][$tor_info['tor_status']], 'TOR_STATUS_ICON' => $bb_cfg['tor_icons'][$tor_info['tor_status']], 'TOR_STATUS_BY' => ($tor_info['checked_user_id'] && ($is_auth['auth_mod'] || $tor_status_by_for_all)) ? (' · ' . profile_url($tor_info) . ' · ' . delta_time($tor_info['checked_time']) . $lang['TOR_BACK'] . '') : '', 'TOR_STATUS_SELECT' => build_select('sel_status', array_flip($lang['TOR_STATUS_NAME']), TOR_APPROVED), 'TOR_STATUS_REPLY' => $bb_cfg['tor_comment'] && !IS_GUEST && in_array($tor_info['tor_status'], $bb_cfg['tor_reply']) && $userdata['user_id'] == $tor_info['poster_id'] && $t_data['topic_status'] != TOPIC_LOCKED, //end torrent status mod 'S_UPLOAD_IMAGE' => $upload_image, 'U_DOWNLOAD_LINK' => $download_link, 'DL_LINK_CLASS' => isset($bt_userdata['user_status']) ? $dl_link_css[$bt_userdata['user_status']] : 'genmed', 'DL_TITLE_CLASS' => isset($bt_userdata['user_status']) ? $dl_status_css[$bt_userdata['user_status']] : 'gen', 'FILESIZE' => $tor_file_size, 'MAGNET' => $tor_magnet, 'HASH' => !empty($tor_info['info_hash']) ? strtoupper(bin2hex($tor_info['info_hash'])) : false, 'HASH_V2' => !empty($tor_info['info_hash_v2']) ? strtoupper(bin2hex($tor_info['info_hash_v2'])) : false, 'FILELIST_ICON' => $images['icon_tor_filelist'], 'REGED_TIME' => bb_date($tor_info['reg_time']), 'REGED_DELTA' => delta_time($tor_info['reg_time']), 'TORRENT_SIZE' => humn_size($tor_size, 2), 'DOWNLOAD_COUNT' => $download_count, 'COMPLETED' => $tor_completed_count, ]); // TorrServer integration if ($bb_cfg['torr_server']['enabled'] && (!IS_GUEST || !$bb_cfg['torr_server']['disable_for_guest']) && (new \TorrentPier\TorrServerAPI())->getM3UPath($attach_id)) { $template->assign_block_vars('postrow.attach.tor_reged.tor_server', [ 'TORR_SERVER_M3U_LINK' => PLAYBACK_M3U_URL . $bt_topic_id, 'TORR_SERVER_M3U_ICON' => $images['icon_tor_m3u_icon'], ]); } if ($comment) { $template->assign_block_vars('postrow.attach.tor_reged.comment', ['COMMENT' => $comment]); } } if ($bb_cfg['show_tor_info_in_dl_list']) { $template->assign_vars([ 'SHOW_DL_LIST' => true, 'SHOW_DL_LIST_TOR_INFO' => true, 'TOR_SIZE' => humn_size($tor_size, 2), 'TOR_LONGEVITY' => delta_time($tor_info['reg_time']), 'TOR_DOWNLOAD_COUNT' => $download_count, 'TOR_COMPLETED' => $tor_completed_count, ]); } // Show peers if ($show_peers) { // Sorting order in full mode if ($s_mode == 'full') { $full_mode_order = 'tr.remain'; $full_mode_sort_dir = 'ASC'; if (isset($_REQUEST['psortdesc'])) { $full_mode_sort_dir = 'DESC'; } if (isset($_REQUEST['porder'])) { $peer_orders = [ 'name' => 'u.username', 'ip' => 'tr.ip', 'port' => 'tr.port', 'compl' => 'tr.remain', 'cup' => 'tr.uploaded', 'cdown' => 'tr.downloaded', 'sup' => 'tr.speed_up', 'sdown' => 'tr.speed_down', 'time' => 'tr.update_time', 'peer_id' => 'tr.peer_id', ]; foreach ($peer_orders as $get_key => $order_by_value) { if ($_REQUEST['porder'] == $get_key) { $full_mode_order = $order_by_value; break; } } } } // SQL for each mode if ($s_mode == 'count') { $sql = "SELECT seeders, leechers, speed_up, speed_down FROM " . BB_BT_TRACKER_SNAP . " WHERE topic_id = $tor_id LIMIT 1"; } elseif ($s_mode == 'names') { $sql = "SELECT tr.user_id, tr.ip, tr.ipv6, tr.port, tr.remain, tr.seeder, u.username, u.user_rank FROM " . BB_BT_TRACKER . " tr, " . BB_USERS . " u WHERE tr.topic_id = $tor_id AND u.user_id = tr.user_id ORDER BY u.username LIMIT $show_peers_limit"; } else { $sql = "SELECT tr.user_id, tr.ip, tr.ipv6, tr.port, tr.peer_id, tr.uploaded, tr.downloaded, tr.remain, tr.seeder, tr.releaser, tr.speed_up, tr.speed_down, tr.update_time, tr.complete_percent, u.username, u.user_rank, u.user_opt FROM " . BB_BT_TRACKER . " tr LEFT JOIN " . BB_USERS . " u ON u.user_id = tr.user_id WHERE tr.topic_id = $tor_id ORDER BY $full_mode_order $full_mode_sort_dir LIMIT $show_peers_limit"; } // Build peers table if ($peers = DB()->fetch_rowset($sql)) { $peers_cnt = count($peers); $cnt = $tr = $sp_up = $sp_down = $sp_up_tot = $sp_down_tot = []; $cnt['s'] = $tr['s'] = $sp_up['s'] = $sp_down['s'] = $sp_up_tot['s'] = $sp_down_tot['s'] = 0; $cnt['l'] = $tr['l'] = $sp_up['l'] = $sp_down['l'] = $sp_up_tot['l'] = $sp_down_tot['l'] = 0; $max_up = $max_down = $max_sp_up = $max_sp_down = []; $max_up['s'] = $max_down['s'] = $max_sp_up['s'] = $max_sp_down['s'] = 0; $max_up['l'] = $max_down['l'] = $max_sp_up['l'] = $max_sp_down['l'] = 0; $max_up_id['s'] = $max_down_id['s'] = $max_sp_up_id['s'] = $max_sp_down_id['s'] = ($peers_cnt + 1); $max_up_id['l'] = $max_down_id['l'] = $max_sp_up_id['l'] = $max_sp_down_id['l'] = ($peers_cnt + 1); if ($s_mode == 'full') { foreach ($peers as $pid => $peer) { $x = ($peer['seeder']) ? 's' : 'l'; $cnt[$x]++; $sp_up_tot[$x] += $peer['speed_up']; $sp_down_tot[$x] += $peer['speed_down']; $guest = ($peer['user_id'] == GUEST_UID || null === $peer['username']); $p_max_up = $peer['uploaded']; $p_max_down = $peer['downloaded']; if ($p_max_up > $max_up[$x]) { $max_up[$x] = $p_max_up; $max_up_id[$x] = $pid; } if ($peer['speed_up'] > $max_sp_up[$x]) { $max_sp_up[$x] = $peer['speed_up']; $max_sp_up_id[$x] = $pid; } if ($p_max_down > $max_down[$x]) { $max_down[$x] = $p_max_down; $max_down_id[$x] = $pid; } if ($peer['speed_down'] > $max_sp_down[$x]) { $max_sp_down[$x] = $peer['speed_down']; $max_sp_down_id[$x] = $pid; } } $max_down_id['s'] = $max_sp_down_id['s'] = ($peers_cnt + 1); if ($cnt['s'] == 1) { $max_up_id['s'] = $max_sp_up_id['s'] = ($peers_cnt + 1); } if ($cnt['l'] == 1) { $max_up_id['l'] = $max_down_id['l'] = $max_sp_up_id['l'] = $max_sp_down_id['l'] = ($peers_cnt + 1); } } if ($s_mode == 'count') { $tmp = []; $tmp[0]['seeder'] = $tmp[0]['username'] = $tmp[1]['username'] = 0; $tmp[1]['seeder'] = 1; $tmp[0]['username'] = (int)@$peers[0]['leechers']; $tmp[1]['username'] = (int)@$peers[0]['seeders']; $tor_speed_up = (int)@$peers[0]['speed_up']; $tor_speed_down = (int)@$peers[0]['speed_down']; $peers = $tmp; $template->assign_vars([ 'TOR_SPEED_UP' => ($tor_speed_up) ? humn_size($tor_speed_up, min: 'KB') . '/s' : '0 KB/s', 'TOR_SPEED_DOWN' => ($tor_speed_down) ? humn_size($tor_speed_down, min: 'KB') . '/s' : '0 KB/s' ]); } foreach ($peers as $pid => $peer) { $u_prof_href = ($s_mode == 'count') ? '#' : PROFILE_URL . $peer['user_id'] . "#torrent"; // Full details mode if ($s_mode == 'full') { if (!empty($peer['ip']) && !empty($peer['ipv6'])) { if ($ip = bt_show_ip($peer['ipv6'])) { $ip .= ' (' . bt_show_ip($peer['ip']) . ')'; } } else { $ip = bt_show_ip(!empty($peer['ipv6']) ? $peer['ipv6'] : $peer['ip']); } $port = bt_show_port($peer['port']); // peer max/current up/down $p_max_up = $peer['uploaded']; $p_max_down = $peer['downloaded']; $p_cur_up = $peer['uploaded']; $p_cur_down = $peer['downloaded']; if ($peer['seeder']) { $x = 's'; $x_row = 'srow'; $x_full = 'sfull'; if (!defined('SEEDER_EXIST')) { define('SEEDER_EXIST', true); $seed_order_action = TOPIC_URL . "$bt_topic_id&spmode=full#seeders"; $template->assign_block_vars((string)$x_full, [ 'SEED_ORD_ACT' => $seed_order_action, 'SEEDERS_UP_TOT' => humn_size($sp_up_tot[$x], min: 'KB') . '/s' ]); if ($ip) { $template->assign_block_vars("$x_full.iphead", []); } if ($port !== false) { $template->assign_block_vars("$x_full.porthead", []); } } $compl_perc = ($tor_size) ? round(($p_max_up / $tor_size), 1) : 0; } else { $x = 'l'; $x_row = 'lrow'; $x_full = 'lfull'; if (!defined('LEECHER_EXIST')) { define('LEECHER_EXIST', true); $leech_order_action = TOPIC_URL . "$bt_topic_id&spmode=full#leechers"; $template->assign_block_vars((string)$x_full, [ 'LEECH_ORD_ACT' => $leech_order_action, 'LEECHERS_UP_TOT' => humn_size($sp_up_tot[$x], min: 'KB') . '/s', 'LEECHERS_DOWN_TOT' => humn_size($sp_down_tot[$x], min: 'KB') . '/s' ]); if ($ip) { $template->assign_block_vars("$x_full.iphead", []); } if ($port !== false) { $template->assign_block_vars("$x_full.porthead", []); } } $compl_size = ($peer['remain'] && $tor_size && $tor_size > $peer['remain']) ? ($tor_size - $peer['remain']) : 0; $compl_perc = ($compl_size) ? floor($compl_size * 100 / $tor_size) : 0; } $up_tot = ($p_max_up) ? humn_size($p_max_up) : '-'; $down_tot = ($p_max_down) ? humn_size($p_max_down) : '-'; $up_ratio = ($p_max_down) ? round(($p_max_up / $p_max_down), 2) : ''; $sp_up = ($peer['speed_up']) ? humn_size($peer['speed_up'], min: 'KB') . '/s' : '-'; $sp_down = ($peer['speed_down']) ? humn_size($peer['speed_down'], min: 'KB') . '/s' : '-'; $bgr_class = (!($tr[$x] % 2)) ? $bgr_class_1 : $bgr_class_2; $row_bgr = ($change_peers_bgr_over) ? " class=\"$bgr_class\" onmouseover=\"this.className='$bgr_class_over';\" onmouseout=\"this.className='$bgr_class';\"" : ''; $tr[$x]++; $peerUsername = $lang['HIDDEN_USER']; if (IS_AM || $peer['user_id'] == $userdata['user_id'] || !bf($peer['user_opt'], 'user_opt', 'user_hide_peer_username')) { $releaserSign = (!$guest && $peer['releaser']) ? ' ®' : ''; $peerUsername = profile_url($peer) . $releaserSign; $peerUsername = $peer['update_time'] ? $peerUsername : "$peerUsername"; } $peerTorrentClient = $lang['HIDDEN_USER']; if (IS_AM || $peer['user_id'] == $userdata['user_id'] || !bf($peer['user_opt'], 'user_opt', 'user_hide_torrent_client')) { if (isset($peer['peer_id'])) { $peerTorrentClient = get_user_torrent_client($peer['peer_id']); } } $peerCountry = $lang['HIDDEN_USER']; if ($bb_cfg['ip2country_settings']['enabled']) { if (IS_AM || $peer['user_id'] == $userdata['user_id'] || !bf($peer['user_opt'], 'user_opt', 'user_hide_peer_country')) { if ($infoByIP = infoByIP((!empty($peer['ipv6']) ? $peer['ipv6'] : $peer['ip']), $peer['port'])) { if (!empty($infoByIP['countryCode'])) { $peerCountry = render_flag($infoByIP['countryCode'], false); } else { $peerCountry = $lang['NOT_AVAILABLE']; } } } } $template->assign_block_vars("$x_full.$x_row", [ 'ROW_BGR' => $row_bgr, 'NAME' => $peerUsername, 'PEER_ID' => $peerTorrentClient, 'COUNTRY' => $peerCountry, 'COMPL_PRC' => $compl_perc, 'UP_TOTAL' => ($max_up_id[$x] == $pid) ? "$up_tot" : $up_tot, 'DOWN_TOTAL' => ($max_down_id[$x] == $pid) ? "$down_tot" : $down_tot, 'SPEED_UP' => ($max_sp_up_id[$x] == $pid) ? "$sp_up" : $sp_up, 'SPEED_DOWN' => ($max_sp_down_id[$x] == $pid) ? "$sp_down" : $sp_down, 'UP_TOTAL_RAW' => $peer['uploaded'], 'DOWN_TOTAL_RAW' => $peer['downloaded'], 'SPEED_UP_RAW' => $peer['speed_up'], 'SPEED_DOWN_RAW' => $peer['speed_down'], 'UPD_EXP_TIME' => $peer['update_time'] ? $lang['DL_UPD'] . bb_date($peer['update_time'], 'd-M-y H:i') . ' · ' . delta_time($peer['update_time']) . $lang['TOR_BACK'] : $lang['DL_STOPPED'], 'TOR_RATIO' => $up_ratio ? $lang['USER_RATIO'] . "UL/DL: $up_ratio" : '' ]); if ($ip) { $template->assign_block_vars("$x_full.$x_row.ip", [ 'U_WHOIS_IP' => $bb_cfg['whois_info'] . $ip, 'IP' => $ip ]); } if ($port !== false) { $template->assign_block_vars("$x_full.$x_row.port", ['PORT' => $port]); } } // Count only & only names modes else { if ($peer['seeder']) { $seeders .= '' . $peer['username'] . ', '; $seed_count = $peer['username']; } else { $compl_size = (@$peer['remain'] && $tor_size && $tor_size > $peer['remain']) ? ($tor_size - $peer['remain']) : 0; $compl_perc = ($compl_size) ? floor($compl_size * 100 / $tor_size) : 0; $leechers .= '' . $peer['username'] . ''; $leechers .= ($s_mode == 'names') ? ' [' . $compl_perc . '%]' : ''; $leechers .= ', '; $leech_count = $peer['username']; } } } if ($s_mode != 'full' && $seeders) { $seeders[strlen($seeders) - 9] = ' '; $template->assign_vars([ 'SEED_LIST' => $seeders, 'SEED_COUNT' => ($seed_count) ?: 0, ]); } if ($s_mode != 'full' && $leechers) { $leechers[strlen($leechers) - 9] = ' '; $template->assign_vars([ 'LEECH_LIST' => $leechers, 'LEECH_COUNT' => ($leech_count) ?: 0, ]); } } unset($peers); // Show "seeder last seen info" if (($s_mode == 'count' && !$seed_count) || (!$seeders && !defined('SEEDER_EXIST'))) { $last_seen_time = ($tor_info['seeder_last_seen']) ? delta_time($tor_info['seeder_last_seen']) : $lang['NEVER']; $last_seeder_username = (!empty($tor_info['last_seeder_id']) && $last_seeder = get_userdata($tor_info['last_seeder_id'])) ? ' -> ' . profile_url(['username' => $last_seeder['username'], 'user_id' => $last_seeder['user_id'], 'user_rank' => $last_seeder['user_rank']]) . '' : ($tor_info['last_seeder_id'] < 0 ? ' -> ' . $lang['GUEST'] : ''); $template->assign_vars(['SEEDER_LAST_SEEN' => sprintf($lang['SEEDER_LAST_SEEN'], $last_seen_time)]); $template->assign_vars(['SEEDER_USERNAME' => $last_seeder_username]); } } $template->assign_block_vars('tor_title', ['U_DOWNLOAD_LINK' => $download_link]); if ($peers_cnt > $max_peers_before_overflow && $s_mode == 'full') { $template->assign_vars([ 'PEERS_OVERFLOW' => true, 'PEERS_DIV_STYLE' => $peers_div_style_overflow ]); } else { $template->assign_vars(['PEERS_DIV_STYLE' => $peers_div_style_normal]); } } if ($bb_cfg['bt_allow_spmode_change'] && $s_mode != 'full') { $template->assign_vars([ 'PEERS_FULL_LINK' => true, 'SPMODE_FULL_HREF' => TOPIC_URL . "$bt_topic_id&spmode=full#seeders" ]); } $template->assign_vars([ 'SHOW_DL_LIST_LINK' => (($bb_cfg['bt_show_dl_list'] || $bb_cfg['allow_dl_list_names_mode']) && $t_data['topic_dl_type'] == TOPIC_DL_TYPE_DL), 'SHOW_TOR_ACT' => ($tor_reged && $show_peers && (!isset($bb_cfg['tor_no_tor_act'][$tor_info['tor_status']]) || IS_AM)), 'S_MODE_COUNT' => ($s_mode == 'count'), 'S_MODE_NAMES' => ($s_mode == 'names'), 'S_MODE_FULL' => ($s_mode == 'full'), 'PEER_EXIST' => ($seeders || $leechers || defined('SEEDER_EXIST') || defined('LEECHER_EXIST')), 'SEED_EXIST' => ($seeders || defined('SEEDER_EXIST')), 'LEECH_EXIST' => ($leechers || defined('LEECHER_EXIST')), 'TOR_HELP_LINKS' => $bb_cfg['tor_help_links'], 'CALL_SEED' => (!IS_GUEST && $bb_cfg['callseed'] && $tor_reged && !isset($bb_cfg['tor_no_tor_act'][$tor_info['tor_status']]) && $seed_count < 3 && $tor_info['call_seed_time'] < (TIMENOW - 86400)), ]);