mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 19:06:27 +00:00
541 lines
18 KiB
PHP
541 lines
18 KiB
PHP
<?
|
|
$Where = array();
|
|
|
|
if (!empty($_GET['advanced']) && check_perms('site_advanced_top10')) {
|
|
$Details = 'all';
|
|
$Limit = 10;
|
|
|
|
if ($_GET['tags']) {
|
|
$TagWhere = array();
|
|
$Tags = explode(',', str_replace(".","_",trim($_GET['tags'])));
|
|
foreach ($Tags as $Tag) {
|
|
$Tag = preg_replace('/[^a-z0-9_]/', '', $Tag);
|
|
if ($Tag != '') {
|
|
$TagWhere[] = "g.TagList REGEXP '[[:<:]]".db_string($Tag)."[[:>:]]'";
|
|
}
|
|
}
|
|
if (!empty($TagWhere)) {
|
|
if ($_GET['anyall'] == 'any') {
|
|
$Where[] = '('.implode(' OR ', $TagWhere).')';
|
|
} else {
|
|
$Where[] = '('.implode(' AND ', $TagWhere).')';
|
|
}
|
|
}
|
|
}
|
|
|
|
if ($_GET['format']) {
|
|
if (in_array($_GET['format'], $Formats)) {
|
|
$Where[] = "t.Format='".db_string($_GET['format'])."'";
|
|
}
|
|
}
|
|
|
|
} else {
|
|
// error out on invalid requests (before caching)
|
|
if (isset($_GET['details'])) {
|
|
if (in_array($_GET['details'], array('day','week','overall','snatched','data','seeded','month','year'))) {
|
|
$Details = $_GET['details'];
|
|
} else {
|
|
error(404);
|
|
}
|
|
} else {
|
|
$Details = 'all';
|
|
}
|
|
|
|
// defaults to 10 (duh)
|
|
$Limit = isset($_GET['limit']) ? intval($_GET['limit']) : 10;
|
|
$Limit = in_array($Limit, array(10, 100, 250)) ? $Limit : 10;
|
|
}
|
|
$Filtered = !empty($Where);
|
|
View::show_header('Top '.$Limit.' Torrents');
|
|
?>
|
|
<div class="thin">
|
|
<div class="header">
|
|
<h2>Top <?=$Limit?> Torrents</h2>
|
|
<div class="linkbox">
|
|
<a href="top10.php?type=torrents" class="brackets"><strong>Torrents</strong></a>
|
|
<a href="top10.php?type=users" class="brackets">Users</a>
|
|
<a href="top10.php?type=tags" class="brackets">Tags</a>
|
|
<a href="top10.php?type=votes" class="brackets">Favorites</a>
|
|
</div>
|
|
</div>
|
|
<?
|
|
|
|
if (check_perms('site_advanced_top10')) {
|
|
?>
|
|
<form class="search_form" name="torrents" action="" method="get">
|
|
<input type="hidden" name="advanced" value="1" />
|
|
<table cellpadding="6" cellspacing="1" border="0" class="layout border" width="100%">
|
|
<tr id="tagfilter">
|
|
<td class="label">Tags (comma-separated):</td>
|
|
<td class="ft_taglist">
|
|
<input type="text" name="tags" size="75" value="<? if (!empty($_GET['tags'])) { echo display_str($_GET['tags']);} ?>" />
|
|
<input type="radio" id="rdoAll" name="anyall" value="all"<?=($_GET['anyall']!='any'?' checked="checked"':'')?> /><label for="rdoAll"> All</label>
|
|
<input type="radio" id="rdoAny" name="anyall" value="any"<?=($_GET['anyall']=='any'?' checked="checked"':'')?> /><label for="rdoAny"> Any</label>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="label">Format:</td>
|
|
<td>
|
|
<select name="format" style="width:auto;" class="ft_format">
|
|
<option value="">Any</option>
|
|
<? foreach ($Formats as $FormatName) { ?>
|
|
<option value="<?=display_str($FormatName)?>"<? if (isset($_GET['format']) && $FormatName==$_GET['format']) { ?> selected="selected"<? } ?>><?=display_str($FormatName)?></option>
|
|
<? } ?> </select>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2" class="center">
|
|
<input type="submit" value="Filter torrents" />
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
<?
|
|
}
|
|
|
|
// default setting to have them shown
|
|
$DisableFreeTorrentTop10 = (isset($LoggedUser['DisableFreeTorrentTop10']) ? $LoggedUser['DisableFreeTorrentTop10'] : 0);
|
|
// did they just toggle it?
|
|
if (isset($_GET['freeleech'])) {
|
|
// what did they choose?
|
|
$NewPref = ($_GET['freeleech'] == 'hide') ? 1 : 0;
|
|
|
|
// Pref id different
|
|
if ($NewPref != $DisableFreeTorrentTop10) {
|
|
$DisableFreeTorrentTop10 = $NewPref;
|
|
Users::update_site_options($LoggedUser['ID'], array('DisableFreeTorrentTop10' => $DisableFreeTorrentTop10));
|
|
}
|
|
}
|
|
|
|
// Modify the Where query
|
|
if ($DisableFreeTorrentTop10) {
|
|
$Where[] = "t.FreeTorrent='0'";
|
|
}
|
|
|
|
// The link should say the opposite of the current setting
|
|
$FreeleechToggleName = ($DisableFreeTorrentTop10 ? 'show' : 'hide');
|
|
$FreeleechToggleQuery = Format::get_url(array('freeleech'));
|
|
|
|
if (!empty($FreeleechToggleQuery))
|
|
$FreeleechToggleQuery .= '&';
|
|
|
|
$FreeleechToggleQuery .= 'freeleech=' . $FreeleechToggleName;
|
|
|
|
?>
|
|
<div style="text-align: right;" class="linkbox">
|
|
<a href="top10.php?<?=$FreeleechToggleQuery?>" class="brackets"><?=ucfirst($FreeleechToggleName)?> freeleech in Top 10</a>
|
|
</div>
|
|
<?
|
|
|
|
if (!empty($Where)) {
|
|
$Where = '('.implode(' AND ', $Where).')';
|
|
$WhereSum = md5($Where);
|
|
} else {
|
|
$WhereSum = '';
|
|
}
|
|
$BaseQuery = "SELECT
|
|
t.ID,
|
|
g.ID,
|
|
g.Name,
|
|
g.CategoryID,
|
|
g.wikiImage,
|
|
g.TagList,
|
|
t.Format,
|
|
t.Encoding,
|
|
t.Media,
|
|
t.Scene,
|
|
t.HasLog,
|
|
t.HasCue,
|
|
t.LogScore,
|
|
t.RemasterYear,
|
|
g.Year,
|
|
t.RemasterTitle,
|
|
t.Snatched,
|
|
t.Seeders,
|
|
t.Leechers,
|
|
((t.Size * t.Snatched) + (t.Size * 0.5 * t.Leechers)) AS Data,
|
|
g.ReleaseType,
|
|
t.Size
|
|
FROM torrents AS t
|
|
LEFT JOIN torrents_group AS g ON g.ID = t.GroupID ";
|
|
|
|
if ($Details=='all' || $Details=='day') {
|
|
$TopTorrentsActiveLastDay = $Cache->get_value('top10tor_day_'.$Limit.$WhereSum);
|
|
if ($TopTorrentsActiveLastDay === false) {
|
|
if ($Cache->get_query_lock('top10')) {
|
|
$DayAgo = time_minus(86400);
|
|
$Query = $BaseQuery.' WHERE t.Seeders>0 AND ';
|
|
if (!empty($Where)) { $Query .= $Where.' AND '; }
|
|
$Query .= "
|
|
t.Time>'$DayAgo'
|
|
ORDER BY (t.Seeders + t.Leechers) DESC
|
|
LIMIT $Limit;";
|
|
$DB->query($Query);
|
|
$TopTorrentsActiveLastDay = $DB->to_array(false, MYSQLI_NUM);
|
|
$Cache->cache_value('top10tor_day_'.$Limit.$WhereSum,$TopTorrentsActiveLastDay,3600*2);
|
|
$Cache->clear_query_lock('top10');
|
|
} else {
|
|
$TopTorrentsActiveLastDay = false;
|
|
}
|
|
}
|
|
generate_torrent_table('Most Active Torrents Uploaded in the Past Day', 'day', $TopTorrentsActiveLastDay, $Limit);
|
|
}
|
|
if ($Details=='all' || $Details=='week') {
|
|
$TopTorrentsActiveLastWeek = $Cache->get_value('top10tor_week_'.$Limit.$WhereSum);
|
|
if ($TopTorrentsActiveLastWeek === false) {
|
|
if ($Cache->get_query_lock('top10')) {
|
|
$WeekAgo = time_minus(604800);
|
|
$Query = $BaseQuery.' WHERE ';
|
|
if (!empty($Where)) { $Query .= $Where.' AND '; }
|
|
$Query .= "
|
|
t.Time>'$WeekAgo'
|
|
ORDER BY (t.Seeders + t.Leechers) DESC
|
|
LIMIT $Limit;";
|
|
$DB->query($Query);
|
|
$TopTorrentsActiveLastWeek = $DB->to_array(false, MYSQLI_NUM);
|
|
$Cache->cache_value('top10tor_week_'.$Limit.$WhereSum,$TopTorrentsActiveLastWeek,3600*6);
|
|
$Cache->clear_query_lock('top10');
|
|
} else {
|
|
$TopTorrentsActiveLastWeek = false;
|
|
}
|
|
}
|
|
generate_torrent_table('Most Active Torrents Uploaded in the Past Week', 'week', $TopTorrentsActiveLastWeek, $Limit);
|
|
}
|
|
|
|
if ($Details=='all' || $Details=='month') {
|
|
$TopTorrentsActiveLastMonth = $Cache->get_value('top10tor_month_'.$Limit.$WhereSum);
|
|
if ($TopTorrentsActiveLastMonth === false) {
|
|
if ($Cache->get_query_lock('top10')) {
|
|
$Query = $BaseQuery.' WHERE ';
|
|
if (!empty($Where)) { $Query .= $Where.' AND '; }
|
|
$Query .= "
|
|
t.Time>'".sqltime()."' - INTERVAL 1 MONTH
|
|
ORDER BY (t.Seeders + t.Leechers) DESC
|
|
LIMIT $Limit;";
|
|
$DB->query($Query);
|
|
$TopTorrentsActiveLastMonth = $DB->to_array(false, MYSQLI_NUM);
|
|
$Cache->cache_value('top10tor_month_'.$Limit.$WhereSum,$TopTorrentsActiveLastMonth,3600*6);
|
|
$Cache->clear_query_lock('top10');
|
|
} else {
|
|
$TopTorrentsActiveLastMonth = false;
|
|
}
|
|
}
|
|
generate_torrent_table('Most Active Torrents Uploaded in the Past Month', 'month', $TopTorrentsActiveLastMonth, $Limit);
|
|
}
|
|
|
|
if ($Details=='all' || $Details=='year') {
|
|
$TopTorrentsActiveLastYear = $Cache->get_value('top10tor_year_'.$Limit.$WhereSum);
|
|
if ($TopTorrentsActiveLastYear === false) {
|
|
if ($Cache->get_query_lock('top10')) {
|
|
// IMPORTANT NOTE - we use WHERE t.Seeders>200 in order to speed up this query. You should remove it!
|
|
$Query = $BaseQuery.' WHERE ';
|
|
if ($Details=='all' && !$Filtered) {
|
|
$Query .= 't.Seeders>=200 AND ';
|
|
if (!empty($Where)) { $Query .= $Where.' AND '; }
|
|
}
|
|
elseif (!empty($Where)) { $Query .= $Where.' AND '; }
|
|
$Query .= "
|
|
t.Time>'".sqltime()."' - INTERVAL 1 YEAR
|
|
ORDER BY (t.Seeders + t.Leechers) DESC
|
|
LIMIT $Limit;";
|
|
$DB->query($Query);
|
|
$TopTorrentsActiveLastYear = $DB->to_array(false, MYSQLI_NUM);
|
|
$Cache->cache_value('top10tor_year_'.$Limit.$WhereSum,$TopTorrentsActiveLastYear,3600*6);
|
|
$Cache->clear_query_lock('top10');
|
|
} else {
|
|
$TopTorrentsActiveLastYear = false;
|
|
}
|
|
}
|
|
generate_torrent_table('Most Active Torrents Uploaded in the Past Year', 'year', $TopTorrentsActiveLastYear, $Limit);
|
|
}
|
|
|
|
if ($Details=='all' || $Details=='overall') {
|
|
$TopTorrentsActiveAllTime = $Cache->get_value('top10tor_overall_'.$Limit.$WhereSum);
|
|
if ($TopTorrentsActiveAllTime === false) {
|
|
if ($Cache->get_query_lock('top10')) {
|
|
// IMPORTANT NOTE - we use WHERE t.Seeders>500 in order to speed up this query. You should remove it!
|
|
$Query = $BaseQuery;
|
|
if ($Details=='all' && !$Filtered) {
|
|
$Query .= " WHERE t.Seeders>=500 ";
|
|
if (!empty($Where)) { $Query .= ' AND '.$Where; }
|
|
}
|
|
elseif (!empty($Where)) { $Query .= ' WHERE '.$Where; }
|
|
$Query .= "
|
|
ORDER BY (t.Seeders + t.Leechers) DESC
|
|
LIMIT $Limit;";
|
|
$DB->query($Query);
|
|
$TopTorrentsActiveAllTime = $DB->to_array(false, MYSQLI_NUM);
|
|
$Cache->cache_value('top10tor_overall_'.$Limit.$WhereSum,$TopTorrentsActiveAllTime,3600*6);
|
|
$Cache->clear_query_lock('top10');
|
|
} else {
|
|
$TopTorrentsActiveAllTime = false;
|
|
}
|
|
}
|
|
generate_torrent_table('Most Active Torrents of All Time', 'overall', $TopTorrentsActiveAllTime, $Limit);
|
|
}
|
|
|
|
if (($Details=='all' || $Details=='snatched') && !$Filtered) {
|
|
$TopTorrentsSnatched = $Cache->get_value('top10tor_snatched_'.$Limit.$WhereSum);
|
|
if ($TopTorrentsSnatched === false) {
|
|
if ($Cache->get_query_lock('top10')) {
|
|
$Query = $BaseQuery;
|
|
if (!empty($Where)) { $Query .= ' WHERE '.$Where; }
|
|
$Query .= "
|
|
ORDER BY t.Snatched DESC
|
|
LIMIT $Limit;";
|
|
$DB->query($Query);
|
|
$TopTorrentsSnatched = $DB->to_array(false, MYSQLI_NUM);
|
|
$Cache->cache_value('top10tor_snatched_'.$Limit.$WhereSum,$TopTorrentsSnatched,3600*6);
|
|
$Cache->clear_query_lock('top10');
|
|
} else {
|
|
$TopTorrentsSnatched = false;
|
|
}
|
|
}
|
|
generate_torrent_table('Most Snatched Torrents', 'snatched', $TopTorrentsSnatched, $Limit);
|
|
}
|
|
|
|
if (($Details=='all' || $Details=='data') && !$Filtered) {
|
|
$TopTorrentsTransferred = $Cache->get_value('top10tor_data_'.$Limit.$WhereSum);
|
|
if ($TopTorrentsTransferred === false) {
|
|
if ($Cache->get_query_lock('top10')) {
|
|
// IMPORTANT NOTE - we use WHERE t.Snatched>100 in order to speed up this query. You should remove it!
|
|
$Query = $BaseQuery;
|
|
if ($Details=='all') {
|
|
$Query .= " WHERE t.Snatched>=100 ";
|
|
if (!empty($Where)) { $Query .= ' AND '.$Where; }
|
|
}
|
|
$Query .= "
|
|
ORDER BY Data DESC
|
|
LIMIT $Limit;";
|
|
$DB->query($Query);
|
|
$TopTorrentsTransferred = $DB->to_array(false, MYSQLI_NUM);
|
|
$Cache->cache_value('top10tor_data_'.$Limit.$WhereSum,$TopTorrentsTransferred,3600*6);
|
|
$Cache->clear_query_lock('top10');
|
|
} else {
|
|
$TopTorrentsTransferred = false;
|
|
}
|
|
}
|
|
generate_torrent_table('Most Data Transferred Torrents', 'data', $TopTorrentsTransferred, $Limit);
|
|
}
|
|
|
|
if (($Details=='all' || $Details=='seeded') && !$Filtered) {
|
|
$TopTorrentsSeeded = $Cache->get_value('top10tor_seeded_'.$Limit.$WhereSum);
|
|
if ($TopTorrentsSeeded === false) {
|
|
if ($Cache->get_query_lock('top10')) {
|
|
$Query = $BaseQuery;
|
|
if (!empty($Where)) { $Query .= ' WHERE '.$Where; }
|
|
$Query .= "
|
|
ORDER BY t.Seeders DESC
|
|
LIMIT $Limit;";
|
|
$DB->query($Query);
|
|
$TopTorrentsSeeded = $DB->to_array(false, MYSQLI_NUM);
|
|
$Cache->cache_value('top10tor_seeded_'.$Limit.$WhereSum,$TopTorrentsSeeded,3600*6);
|
|
$Cache->clear_query_lock('top10');
|
|
} else {
|
|
$TopTorrentsSeeded = false;
|
|
}
|
|
}
|
|
generate_torrent_table('Best Seeded Torrents', 'seeded', $TopTorrentsSeeded, $Limit);
|
|
}
|
|
|
|
?>
|
|
</div>
|
|
<?
|
|
View::show_footer();
|
|
|
|
// generate a table based on data from most recent query to $DB
|
|
function generate_torrent_table($Caption, $Tag, $Details, $Limit) {
|
|
global $LoggedUser,$Categories,$ReleaseTypes;
|
|
?>
|
|
<h3>Top <?=$Limit.' '.$Caption?>
|
|
<? if (empty($_GET['advanced'])) { ?>
|
|
<small class="top10_quantity_links">
|
|
<?
|
|
switch ($Limit) {
|
|
case 100: ?>
|
|
- <a href="top10.php?details=<?=$Tag?>" class="brackets">Top 10</a>
|
|
- <span class="brackets">Top 100</span>
|
|
- <a href="top10.php?type=torrents&limit=250&details=<?=$Tag?>" class="brackets">Top 250</a>
|
|
<? break;
|
|
case 250: ?>
|
|
- <a href="top10.php?details=<?=$Tag?>" class="brackets">Top 10</a>
|
|
- <a href="top10.php?type=torrents&limit=100&details=<?=$Tag?>" class="brackets">Top 100</a>
|
|
- <span class="brackets">Top 250</span>
|
|
<? break;
|
|
default: ?>
|
|
- <span class="brackets">Top 10</span>
|
|
- <a href="top10.php?type=torrents&limit=100&details=<?=$Tag?>" class="brackets">Top 100</a>
|
|
- <a href="top10.php?type=torrents&limit=250&details=<?=$Tag?>" class="brackets">Top 250</a>
|
|
<? } ?>
|
|
</small>
|
|
<? } ?>
|
|
</h3>
|
|
<table class="torrent_table cats numbering border">
|
|
<tr class="colhead">
|
|
<td class="center" style="width:15px;"></td>
|
|
<td class="cats_col"></td>
|
|
<td><strong>Name</strong></td>
|
|
<td style="text-align:right"><strong>Size</strong></td>
|
|
<td style="text-align:right"><strong>Data</strong></td>
|
|
<td style="text-align:right"><img src="static/styles/<?=$LoggedUser['StyleName']?>/images/snatched.png" alt="Snatches" title="Snatches" /></td>
|
|
<td style="text-align:right"><img src="static/styles/<?=$LoggedUser['StyleName']?>/images/seeders.png" alt="Seeders" title="Seeders" /></td>
|
|
<td style="text-align:right"><img src="static/styles/<?=$LoggedUser['StyleName']?>/images/leechers.png" alt="Leechers" title="Leechers" /></td>
|
|
<td style="text-align:right"><strong>Peers</strong></td>
|
|
</tr>
|
|
<?
|
|
// Server is already processing a top10 query. Starting another one will make things slow
|
|
if ($Details === false) {
|
|
?>
|
|
<tr class="rowb">
|
|
<td colspan="9" class="center">
|
|
Server is busy processing another top list request. Please try again in a minute.
|
|
</td>
|
|
</tr>
|
|
</table><br />
|
|
<?
|
|
return;
|
|
}
|
|
// in the unlikely event that query finds 0 rows...
|
|
if (empty($Details)) {
|
|
?>
|
|
<tr class="rowb">
|
|
<td colspan="9" class="center">
|
|
Found no torrents matching the criteria.
|
|
</td>
|
|
</tr>
|
|
</table><br />
|
|
<?
|
|
return;
|
|
}
|
|
$Rank = 0;
|
|
foreach ($Details as $Detail) {
|
|
$GroupIDs[] = $Detail[1];
|
|
}
|
|
$Artists = Artists::get_artists($GroupIDs);
|
|
|
|
foreach ($Details as $Detail) :
|
|
list($TorrentID,$GroupID,$GroupName,$GroupCategoryID,$WikiImage,$TagsList,
|
|
$Format,$Encoding,$Media,$Scene,$HasLog,$HasCue,$LogScore,$Year,$GroupYear,
|
|
$RemasterTitle,$Snatched,$Seeders,$Leechers,$Data,$ReleaseType,$Size) = $Detail;
|
|
|
|
$IsBookmarked = Bookmarks::has_bookmarked('torrent', $GroupID);
|
|
$IsSnatched = Torrents::has_snatched($TorrentID);
|
|
|
|
// highlight every other row
|
|
$Rank++;
|
|
$Highlight = ($Rank % 2 ? 'a' : 'b');
|
|
|
|
// generate torrent's title
|
|
$DisplayName = '';
|
|
|
|
|
|
if (!empty($Artists[$GroupID])) {
|
|
$DisplayName = Artists::display_artists($Artists[$GroupID], true, true);
|
|
}
|
|
|
|
$DisplayName.= "<a href=\"torrents.php?id=$GroupID&torrentid=$TorrentID\" title=\"View Torrent\" dir=\"ltr\">$GroupName</a>";
|
|
|
|
if ($GroupCategoryID == 1 && $GroupYear > 0) {
|
|
$DisplayName.= " [$GroupYear]";
|
|
}
|
|
if ($GroupCategoryID == 1 && $ReleaseType > 0) {
|
|
$DisplayName.= ' ['.$ReleaseTypes[$ReleaseType].']';
|
|
}
|
|
|
|
// append extra info to torrent title
|
|
$ExtraInfo = '';
|
|
$AddExtra = '';
|
|
if ($Format) {
|
|
$ExtraInfo.=$Format;
|
|
$AddExtra = ' / ';
|
|
}
|
|
if ($Encoding) {
|
|
$ExtraInfo.=$AddExtra.$Encoding;
|
|
$AddExtra = ' / ';
|
|
}
|
|
// "FLAC / Lossless / Log (100%) / Cue / CD";
|
|
if ($HasLog) {
|
|
$ExtraInfo.=$AddExtra.'Log ('.$LogScore.'%)';
|
|
$AddExtra = ' / ';
|
|
}
|
|
if ($HasCue) {
|
|
$ExtraInfo.=$AddExtra.'Cue';
|
|
$AddExtra = ' / ';
|
|
}
|
|
if ($Media) {
|
|
$ExtraInfo.=$AddExtra.$Media;
|
|
$AddExtra = ' / ';
|
|
}
|
|
if ($Scene) {
|
|
$ExtraInfo.=$AddExtra.'Scene';
|
|
$AddExtra = ' / ';
|
|
}
|
|
if ($Year > 0) {
|
|
$ExtraInfo.=$AddExtra.$Year;
|
|
$AddExtra = ' ';
|
|
}
|
|
if ($RemasterTitle) {
|
|
$ExtraInfo.=$AddExtra.$RemasterTitle;
|
|
}
|
|
if ($IsSnatched) {
|
|
if ($GroupCategoryID == 1) {
|
|
$ExtraInfo .= ' / ';
|
|
}
|
|
$ExtraInfo.= Format::torrent_label('Snatched!');
|
|
}
|
|
if ($ExtraInfo != '') {
|
|
$ExtraInfo = "- [$ExtraInfo]";
|
|
}
|
|
|
|
$TorrentTags = new Tags($TagsList);
|
|
|
|
//Get report info, use the cache if available, if not, add to it.
|
|
$Reported = false;
|
|
$Reports = get_reports($TorrentID);
|
|
if (count($Reports) > 0) {
|
|
$Reported = true;
|
|
}
|
|
|
|
// print row
|
|
?>
|
|
<tr class="torrent row<?=$Highlight . ($IsBookmarked ? ' bookmarked' : '') . ($IsSnatched ? ' snatched_torrent' : '')?>">
|
|
<td style="padding: 8px; text-align: center;"><strong><?=$Rank?></strong></td>
|
|
<td class="center cats_col"><div title="<?=$TorrentTags->title()?>" class="<?=Format::css_category($GroupCategoryID)?> <?=$TorrentTags->css_name()?>"></div></td>
|
|
<td class="big_info">
|
|
<? if ($LoggedUser['CoverArt']) : ?>
|
|
<div class="group_image float_left clear">
|
|
<? ImageTools::cover_thumb($WikiImage, $GroupCategoryID) ?>
|
|
</div>
|
|
<? endif; ?>
|
|
<div class="group_info clear">
|
|
|
|
<span><a href="torrents.php?action=download&id=<?=$TorrentID?>&authkey=<?=$LoggedUser['AuthKey']?>&torrent_pass=<?=$LoggedUser['torrent_pass']?>" title="Download" class="brackets">DL</a></span>
|
|
|
|
<strong><?=$DisplayName?></strong> <?=$ExtraInfo?><? if ($Reported) { ?> - <strong class="torrent_label tl_reported" title="Reported">Reported</strong><? } ?>
|
|
<span class="bookmark" style="float: right;">
|
|
<?
|
|
if ($IsBookmarked) {
|
|
?>
|
|
<a href="#" id="bookmarklink_torrent_<?=$GroupID?>" class="remove_bookmark" title="Remove bookmark" onclick="Unbookmark('torrent',<?=$GroupID?>,'Bookmark');return false;">Unbookmark</a>
|
|
<? } else { ?>
|
|
<a href="#" id="bookmarklink_torrent_<?=$GroupID?>" class="add_bookmark" title="Add bookmark" onclick="Bookmark('torrent',<?=$GroupID?>,'Unbookmark');return false;">Bookmark</a>
|
|
<? } ?>
|
|
</span>
|
|
<div class="tags"><?=$TorrentTags->format()?></div>
|
|
</div>
|
|
</td>
|
|
<td style="text-align: right;" class="nobr"><?=Format::get_size($Size)?></td>
|
|
<td style="text-align: right;" class="nobr"><?=Format::get_size($Data)?></td>
|
|
<td style="text-align: right;"><?=number_format((double) $Snatched)?></td>
|
|
<td style="text-align: right;"><?=number_format((double) $Seeders)?></td>
|
|
<td style="text-align: right;"><?=number_format((double) $Leechers)?></td>
|
|
<td style="text-align: right;"><?=number_format($Seeders + $Leechers)?></td>
|
|
</tr>
|
|
<?
|
|
endforeach;
|
|
?>
|
|
</table><br />
|
|
<?
|
|
}
|
|
?>
|