mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 10:56:26 +00:00
661 lines
21 KiB
PHP
661 lines
21 KiB
PHP
<?php
|
|
$SphQL = new SphinxqlQuery();
|
|
$SphQL->select('id, votes, bounty')->from('requests, requests_delta');
|
|
|
|
$SortOrders = array(
|
|
'votes' => 'votes',
|
|
'bounty' => 'bounty',
|
|
'lastvote' => 'lastvote',
|
|
'filled' => 'timefilled',
|
|
'year' => 'year',
|
|
'created' => 'timeadded',
|
|
'random' => false);
|
|
|
|
if (empty($_GET['order']) || !isset($SortOrders[$_GET['order']])) {
|
|
$_GET['order'] = 'created';
|
|
}
|
|
$OrderBy = $_GET['order'];
|
|
|
|
if (!empty($_GET['sort']) && $_GET['sort'] == 'asc') {
|
|
$OrderWay = 'asc';
|
|
} else {
|
|
$_GET['sort'] = 'desc';
|
|
$OrderWay = 'desc';
|
|
}
|
|
$NewSort = $_GET['sort'] === 'asc' ? 'desc' : 'asc';
|
|
|
|
if ($OrderBy === 'random') {
|
|
$SphQL->order_by('RAND()', '');
|
|
unset($_GET['page']);
|
|
} else {
|
|
$SphQL->order_by($SortOrders[$OrderBy], $OrderWay);
|
|
}
|
|
|
|
$Submitted = !empty($_GET['submit']);
|
|
|
|
//Paranoia
|
|
if (!empty($_GET['userid'])) {
|
|
if (!is_number($_GET['userid'])) {
|
|
error('User ID must be an integer');
|
|
}
|
|
$UserInfo = Users::user_info($_GET['userid']);
|
|
if (empty($UserInfo)) {
|
|
error('That user does not exist');
|
|
}
|
|
$Perms = Permissions::get_permissions($UserInfo['PermissionID']);
|
|
$UserClass = $Perms['Class'];
|
|
}
|
|
$BookmarkView = false;
|
|
|
|
if (empty($_GET['type'])) {
|
|
$Title = 'Requests';
|
|
if (!check_perms('site_see_old_requests') || empty($_GET['showall'])) {
|
|
$SphQL->where('visible', 1);
|
|
}
|
|
} else {
|
|
switch ($_GET['type']) {
|
|
case 'created':
|
|
if (!empty($UserInfo)) {
|
|
if (!check_paranoia('requestsvoted_list', $UserInfo['Paranoia'], $Perms['Class'], $UserInfo['ID'])) {
|
|
error(403);
|
|
}
|
|
$Title = "Requests created by $UserInfo[Username]";
|
|
$SphQL->where('userid', $UserInfo['ID']);
|
|
} else {
|
|
$Title = 'My requests';
|
|
$SphQL->where('userid', $LoggedUser['ID']);
|
|
}
|
|
break;
|
|
case 'voted':
|
|
if (!empty($UserInfo)) {
|
|
if (!check_paranoia('requestsvoted_list', $UserInfo['Paranoia'], $Perms['Class'], $UserInfo['ID'])) {
|
|
error(403);
|
|
}
|
|
$Title = "Requests voted for by $UserInfo[Username]";
|
|
$SphQL->where('voter', $UserInfo['ID']);
|
|
} else {
|
|
$Title = 'Requests I have voted on';
|
|
$SphQL->where('voter', $LoggedUser['ID']);
|
|
}
|
|
break;
|
|
case 'filled':
|
|
if (!empty($UserInfo)) {
|
|
if (!check_paranoia('requestsfilled_list', $UserInfo['Paranoia'], $Perms['Class'], $UserInfo['ID'])) {
|
|
error(403);
|
|
}
|
|
$Title = "Requests filled by $UserInfo[Username]";
|
|
$SphQL->where('fillerid', $UserInfo['ID']);
|
|
} else {
|
|
$Title = 'Requests I have filled';
|
|
$SphQL->where('fillerid', $LoggedUser['ID']);
|
|
}
|
|
break;
|
|
case 'bookmarks':
|
|
$Title = 'Your bookmarked requests';
|
|
$BookmarkView = true;
|
|
$SphQL->where('bookmarker', $LoggedUser['ID']);
|
|
break;
|
|
default:
|
|
error(404);
|
|
}
|
|
}
|
|
|
|
if ($Submitted && empty($_GET['show_filled'])) {
|
|
$SphQL->where('torrentid', 0);
|
|
}
|
|
|
|
$EnableNegation = false; // Sphinx needs at least one positive search condition to support the NOT operator
|
|
|
|
if (!empty($_GET['formats'])) {
|
|
$FormatArray = $_GET['formats'];
|
|
if (count($FormatArray) !== count($Formats)) {
|
|
$FormatNameArray = array();
|
|
foreach ($FormatArray as $Index => $MasterIndex) {
|
|
if (isset($Formats[$MasterIndex])) {
|
|
$FormatNameArray[$Index] = '"' . strtr(Sphinxql::sph_escape_string($Formats[$MasterIndex]), '-.', ' ') . '"';
|
|
}
|
|
}
|
|
if (count($FormatNameArray) >= 1) {
|
|
$EnableNegation = true;
|
|
if (!empty($_GET['formats_strict'])) {
|
|
$SearchString = '(' . implode(' | ', $FormatNameArray) . ')';
|
|
} else {
|
|
$SearchString = '(any | ' . implode(' | ', $FormatNameArray) . ')';
|
|
}
|
|
$SphQL->where_match($SearchString, 'formatlist', false);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (!empty($_GET['media'])) {
|
|
$MediaArray = $_GET['media'];
|
|
if (count($MediaArray) !== count($Media)) {
|
|
$MediaNameArray = array();
|
|
foreach ($MediaArray as $Index => $MasterIndex) {
|
|
if (isset($Media[$MasterIndex])) {
|
|
$MediaNameArray[$Index] = '"' . strtr(Sphinxql::sph_escape_string($Media[$MasterIndex]), '-.', ' ') . '"';
|
|
}
|
|
}
|
|
|
|
if (count($MediaNameArray) >= 1) {
|
|
$EnableNegation = true;
|
|
if (!empty($_GET['media_strict'])) {
|
|
$SearchString = '(' . implode(' | ', $MediaNameArray) . ')';
|
|
} else {
|
|
$SearchString = '(any | ' . implode(' | ', $MediaNameArray) . ')';
|
|
}
|
|
$SphQL->where_match($SearchString, 'medialist', false);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (!empty($_GET['bitrates'])) {
|
|
$BitrateArray = $_GET['bitrates'];
|
|
if (count($BitrateArray) !== count($Bitrates)) {
|
|
$BitrateNameArray = array();
|
|
foreach ($BitrateArray as $Index => $MasterIndex) {
|
|
if (isset($Bitrates[$MasterIndex])) {
|
|
$BitrateNameArray[$Index] = '"' . strtr(Sphinxql::sph_escape_string($Bitrates[$MasterIndex]), '-.', ' ') . '"';
|
|
}
|
|
}
|
|
|
|
if (count($BitrateNameArray) >= 1) {
|
|
$EnableNegation = true;
|
|
if (!empty($_GET['bitrate_strict'])) {
|
|
$SearchString = '(' . implode(' | ', $BitrateNameArray) . ')';
|
|
} else {
|
|
$SearchString = '(any | ' . implode(' | ', $BitrateNameArray) . ')';
|
|
}
|
|
$SphQL->where_match($SearchString, 'bitratelist', false);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (!empty($_GET['search'])) {
|
|
$SearchString = trim($_GET['search']);
|
|
|
|
if ($SearchString !== '') {
|
|
$SearchWords = array('include' => array(), 'exclude' => array());
|
|
$Words = explode(' ', $SearchString);
|
|
foreach ($Words as $Word) {
|
|
$Word = trim($Word);
|
|
// Skip isolated hyphens to enable "Artist - Title" searches
|
|
if ($Word === '-') {
|
|
continue;
|
|
}
|
|
if ($Word[0] === '!' && strlen($Word) >= 2) {
|
|
if (strpos($Word, '!', 1) === false) {
|
|
$SearchWords['exclude'][] = $Word;
|
|
} else {
|
|
$SearchWords['include'][] = $Word;
|
|
$EnableNegation = true;
|
|
}
|
|
} elseif ($Word !== '') {
|
|
$SearchWords['include'][] = $Word;
|
|
$EnableNegation = true;
|
|
}
|
|
}
|
|
$QueryParts = array();
|
|
if (!$EnableNegation && !empty($SearchWords['exclude'])) {
|
|
$SearchWords['include'] = array_merge($SearchWords['include'], $SearchWords['exclude']);
|
|
unset($SearchWords['exclude']);
|
|
}
|
|
foreach ($SearchWords['include'] as $Word) {
|
|
$QueryParts[] = Sphinxql::sph_escape_string($Word);
|
|
}
|
|
if (!empty($SearchWords['exclude'])) {
|
|
foreach ($SearchWords['exclude'] as $Word) {
|
|
$QueryParts[] = '!' . Sphinxql::sph_escape_string(substr($Word, 1));
|
|
}
|
|
}
|
|
if (!empty($QueryParts)) {
|
|
$SearchString = implode(' ', $QueryParts);
|
|
$SphQL->where_match($SearchString, '*', false);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (!isset($_GET['tags_type']) || $_GET['tags_type'] === '1') {
|
|
$TagType = 1;
|
|
$_GET['tags_type'] = '1';
|
|
} else {
|
|
$TagType = 0;
|
|
$_GET['tags_type'] = '0';
|
|
}
|
|
|
|
if (!empty($_GET['tags'])) {
|
|
$Tags = explode(',', $_GET['tags']);
|
|
$TagNames = $TagsExclude = array();
|
|
// Remove illegal characters from the given tag names
|
|
foreach ($Tags as $Tag) {
|
|
$Tag = ltrim($Tag);
|
|
$Exclude = ($Tag[0] === '!');
|
|
$Tag = Misc::sanitize_tag($Tag);
|
|
if (!empty($Tag)) {
|
|
$TagNames[] = $Tag;
|
|
$TagsExclude[$Tag] = $Exclude;
|
|
}
|
|
}
|
|
$AllNegative = !in_array(false, $TagsExclude, true);
|
|
$Tags = Misc::get_tags($TagNames);
|
|
|
|
// Replace the ! characters that sanitize_tag removed
|
|
if ($TagType === 1 || $AllNegative) {
|
|
foreach ($TagNames as &$TagName) {
|
|
if ($TagsExclude[$TagName]) {
|
|
$TagName = "!$TagName";
|
|
}
|
|
}
|
|
unset($TagName);
|
|
}
|
|
} elseif (!isset($_GET['tags_type']) || $_GET['tags_type'] !== '0') {
|
|
$_GET['tags_type'] = 1;
|
|
} else {
|
|
$_GET['tags_type'] = 0;
|
|
}
|
|
|
|
// 'All' tags
|
|
if ($TagType === 1 && !empty($Tags)) {
|
|
foreach ($Tags as $TagID => $TagName) {
|
|
$SphQL->where('tagid', $TagID, $TagsExclude[$TagName]);
|
|
}
|
|
} elseif (!empty($Tags)) {
|
|
$SphQL->where('tagid', array_keys($Tags), $AllNegative);
|
|
}
|
|
|
|
if (!empty($_GET['filter_cat'])) {
|
|
$CategoryArray = array_keys($_GET['filter_cat']);
|
|
if (count($CategoryArray) !== count($Categories)) {
|
|
foreach ($CategoryArray as $Key => $Index) {
|
|
if (!isset($Categories[$Index - 1])) {
|
|
unset($CategoryArray[$Key]);
|
|
}
|
|
}
|
|
if (count($CategoryArray) >= 1) {
|
|
$SphQL->where('categoryid', $CategoryArray);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (!empty($_GET['releases'])) {
|
|
$ReleaseArray = $_GET['releases'];
|
|
if (count($ReleaseArray) !== count($ReleaseTypes)) {
|
|
foreach ($ReleaseArray as $Index => $Value) {
|
|
if (!isset($ReleaseTypes[$Value])) {
|
|
unset($ReleaseArray[$Index]);
|
|
}
|
|
}
|
|
if (count($ReleaseArray) >= 1) {
|
|
$SphQL->where('releasetype', $ReleaseArray);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (!empty($_GET['requestor']) && check_perms('site_see_old_requests')) {
|
|
if (is_number($_GET['requestor'])) {
|
|
$SphQL->where('userid', $_GET['requestor']);
|
|
} else {
|
|
error(404);
|
|
}
|
|
}
|
|
|
|
if (isset($_GET['year'])) {
|
|
if (is_number($_GET['year']) || $_GET['year'] === '0') {
|
|
$SphQL->where('year', $_GET['year']);
|
|
} else {
|
|
error(404);
|
|
}
|
|
}
|
|
|
|
if (!empty($_GET['page']) && is_number($_GET['page']) && $_GET['page'] > 0) {
|
|
$Page = $_GET['page'];
|
|
$Offset = ($Page - 1) * REQUESTS_PER_PAGE;
|
|
$SphQL->limit($Offset, REQUESTS_PER_PAGE, $Offset + REQUESTS_PER_PAGE);
|
|
} else {
|
|
$Page = 1;
|
|
$SphQL->limit(0, REQUESTS_PER_PAGE, REQUESTS_PER_PAGE);
|
|
}
|
|
|
|
$SphQLResult = $SphQL->query();
|
|
$NumResults = (int)$SphQLResult->get_meta('total_found');
|
|
if ($NumResults > 0) {
|
|
$SphRequests = $SphQLResult->to_array('id');
|
|
if ($OrderBy === 'random') {
|
|
$NumResults = count($SphRequests);
|
|
}
|
|
if ($NumResults > REQUESTS_PER_PAGE) {
|
|
if (($Page - 1) * REQUESTS_PER_PAGE > $NumResults) {
|
|
$Page = 0;
|
|
}
|
|
$PageLinks = Format::get_pages($Page, $NumResults, REQUESTS_PER_PAGE);
|
|
}
|
|
}
|
|
|
|
$CurrentURL = Format::get_url(array('order', 'sort', 'page'));
|
|
View::show_header($Title, 'requests');
|
|
|
|
?>
|
|
<div class="thin">
|
|
<div class="header">
|
|
<h2><?=$Title?></h2>
|
|
</div>
|
|
<div class="linkbox">
|
|
<? if (!$BookmarkView) {
|
|
if (check_perms('site_submit_requests')) { ?>
|
|
<a href="requests.php?action=new" class="brackets">New request</a>
|
|
<a href="requests.php?type=created" class="brackets">My requests</a>
|
|
<? }
|
|
if (check_perms('site_vote')) { ?>
|
|
<a href="requests.php?type=voted" class="brackets">Requests I've voted on</a>
|
|
<? } ?>
|
|
<a href="bookmarks.php?type=requests" class="brackets">Bookmarked requests</a>
|
|
<? } else { ?>
|
|
<a href="bookmarks.php?type=torrents" class="brackets">Torrents</a>
|
|
<a href="bookmarks.php?type=artists" class="brackets">Artists</a>
|
|
<a href="bookmarks.php?type=collages" class="brackets">Collages</a>
|
|
<a href="bookmarks.php?type=requests" class="brackets">Requests</a>
|
|
<? } ?>
|
|
</div>
|
|
<? if ($BookmarkView && $NumResults === 0) { ?>
|
|
<div class="box pad" align="center">
|
|
<h2>You have not bookmarked any requests.</h2>
|
|
</div>
|
|
<? } else { ?>
|
|
<form class="search_form" name="requests" action="" method="get">
|
|
<? if ($BookmarkView) { ?>
|
|
<input type="hidden" name="action" value="view" />
|
|
<input type="hidden" name="type" value="requests" />
|
|
<? } elseif (isset($_GET['type'])) { ?>
|
|
<input type="hidden" name="type" value="<?=$_GET['type']?>" />
|
|
<? } ?>
|
|
<input type="hidden" name="submit" value="true" />
|
|
<? if (!empty($_GET['userid']) && is_number($_GET['userid'])) { ?>
|
|
<input type="hidden" name="userid" value="<?=$_GET['userid']?>" />
|
|
<? } ?>
|
|
<table cellpadding="6" cellspacing="1" border="0" class="layout border" width="100%">
|
|
<tr id="search_terms">
|
|
<td class="label">Search terms:</td>
|
|
<td>
|
|
<input type="text" name="search" size="75" value="<? if (isset($_GET['search'])) { echo display_str($_GET['search']); } ?>" />
|
|
</td>
|
|
</tr>
|
|
<tr id="tagfilter">
|
|
<td class="label">Tags (comma-separated):</td>
|
|
<td>
|
|
<input type="text" name="tags" id="tags" size="60" value="<?=(!empty($TagNames) ? display_str(implode(', ', $TagNames)) : '') ?>"<? Users::has_autocomplete_enabled('other'); ?> />
|
|
<input type="radio" name="tags_type" id="tags_type0" value="0"<? Format::selected('tags_type', 0, 'checked')?> /><label for="tags_type0"> Any</label>
|
|
<input type="radio" name="tags_type" id="tags_type1" value="1"<? Format::selected('tags_type', 1, 'checked')?> /><label for="tags_type1"> All</label>
|
|
</td>
|
|
</tr>
|
|
<tr id="include_filled">
|
|
<td class="label">Include filled:</td>
|
|
<td>
|
|
<input type="checkbox" name="show_filled"<? if (!$Submitted || !empty($_GET['show_filled']) || (!$Submitted && !empty($_GET['type']) && $_GET['type'] === 'filled')) { ?> checked="checked"<? } ?> />
|
|
</td>
|
|
</tr>
|
|
<? if (check_perms('site_see_old_requests')) { ?>
|
|
<tr id="include_old">
|
|
<td class="label">Include old:</td>
|
|
<td>
|
|
<input type="checkbox" name="showall"<? if (!empty($_GET['showall'])) { ?> checked="checked"<? } ?> />
|
|
</td>
|
|
</tr>
|
|
<? /* ?>
|
|
<tr>
|
|
<td class="label">Requested by:</td>
|
|
<td>
|
|
<input type="text" name="requester" size="75" value="<?=display_str($_GET['requester'])?>" />
|
|
</td>
|
|
</tr>
|
|
<? */} ?>
|
|
</table>
|
|
<table class="layout cat_list">
|
|
<?
|
|
$x = 1;
|
|
reset($Categories);
|
|
foreach ($Categories as $CatKey => $CatName) {
|
|
if ($x % 8 === 0 || $x === 1) {
|
|
?>
|
|
<tr>
|
|
<? } ?>
|
|
<td>
|
|
<input type="checkbox" name="filter_cat[<?=($CatKey + 1) ?>]" id="cat_<?=($CatKey + 1) ?>" value="1"<? if (isset($_GET['filter_cat'][$CatKey + 1])) { ?> checked="checked"<? } ?> />
|
|
<label for="cat_<?=($CatKey + 1) ?>"><?=$CatName?></label>
|
|
</td>
|
|
<? if ($x % 7 === 0) { ?>
|
|
</tr>
|
|
<?
|
|
}
|
|
$x++;
|
|
}
|
|
?>
|
|
</table>
|
|
<table class="layout">
|
|
<tr id="release_list">
|
|
<td class="label">Release types</td>
|
|
<td>
|
|
<input type="checkbox" id="toggle_releases" onchange="Toggle('releases', 0);"<?=(!$Submitted || !empty($ReleaseArray) && count($ReleaseArray) === count($ReleaseTypes) ? ' checked="checked"' : '') ?> /> <label for="toggle_releases">All</label>
|
|
<?
|
|
$i = 0;
|
|
foreach ($ReleaseTypes as $Key => $Val) {
|
|
if ($i % 8 === 0) {
|
|
echo '<br />';
|
|
}
|
|
?>
|
|
<input type="checkbox" name="releases[]" value="<?=$Key?>" id="release_<?=$Key?>"
|
|
<?=(!$Submitted || (!empty($ReleaseArray) && in_array($Key, $ReleaseArray)) ? ' checked="checked" ' : '')?>
|
|
/> <label for="release_<?=$Key?>"><?=$Val?></label>
|
|
<?
|
|
$i++;
|
|
}
|
|
?>
|
|
</td>
|
|
</tr>
|
|
<tr id="format_list">
|
|
<td class="label">Formats</td>
|
|
<td>
|
|
<input type="checkbox" id="toggle_formats" onchange="Toggle('formats', 0);"<?=(!$Submitted || !empty($FormatArray) && count($FormatArray) === count($Formats) ? ' checked="checked"' : '') ?> />
|
|
<label for="toggle_formats">All</label>
|
|
<input type="checkbox" id="formats_strict" name="formats_strict"<?=(!empty($_GET['formats_strict']) ? ' checked="checked"' : '')?> />
|
|
<label for="formats_strict">Only specified</label>
|
|
<?
|
|
foreach ($Formats as $Key => $Val) {
|
|
if ($Key % 8 === 0) {
|
|
echo '<br />';
|
|
}
|
|
?>
|
|
<input type="checkbox" name="formats[]" value="<?=$Key?>" id="format_<?=$Key?>"
|
|
<?=(!$Submitted || (!empty($FormatArray) && in_array($Key, $FormatArray)) ? ' checked="checked" ' : '')?>
|
|
/> <label for="format_<?=$Key?>"><?=$Val?></label>
|
|
<? } ?>
|
|
</td>
|
|
</tr>
|
|
<tr id="bitrate_list">
|
|
<td class="label">Bitrates</td>
|
|
<td>
|
|
<input type="checkbox" id="toggle_bitrates" onchange="Toggle('bitrates', 0);"<?=(!$Submitted || !empty($BitrateArray) && count($BitrateArray) === count($Bitrates) ? ' checked="checked"' : '')?> />
|
|
<label for="toggle_bitrates">All</label>
|
|
<input type="checkbox" id="bitrate_strict" name="bitrate_strict"<?=(!empty($_GET['bitrate_strict']) ? ' checked="checked"' : '') ?> />
|
|
<label for="bitrate_strict">Only specified</label>
|
|
<?
|
|
foreach ($Bitrates as $Key => $Val) {
|
|
if ($Key % 8 === 0) {
|
|
echo '<br />';
|
|
}
|
|
?>
|
|
<input type="checkbox" name="bitrates[]" value="<?=$Key?>" id="bitrate_<?=$Key?>"
|
|
<?=(!$Submitted || (!empty($BitrateArray) && in_array($Key, $BitrateArray)) ? ' checked="checked" ' : '')?>
|
|
/> <label for="bitrate_<?=$Key?>"><?=$Val?></label>
|
|
<?
|
|
}
|
|
?>
|
|
</td>
|
|
</tr>
|
|
<tr id="media_list">
|
|
<td class="label">Media</td>
|
|
<td>
|
|
<input type="checkbox" id="toggle_media" onchange="Toggle('media', 0);"<?=(!$Submitted || !empty($MediaArray) && count($MediaArray) === count($Media) ? ' checked="checked"' : '')?> />
|
|
<label for="toggle_media">All</label>
|
|
<input type="checkbox" id="media_strict" name="media_strict"<?=(!empty($_GET['media_strict']) ? ' checked="checked"' : '')?> />
|
|
<label for="media_strict">Only specified</label>
|
|
<?
|
|
foreach ($Media as $Key => $Val) {
|
|
if ($Key % 8 === 0) {
|
|
echo '<br />';
|
|
}
|
|
?>
|
|
<input type="checkbox" name="media[]" value="<?=$Key?>" id="media_<?=$Key?>"
|
|
<?=(!$Submitted || (!empty($MediaArray) && in_array($Key, $MediaArray)) ? ' checked="checked" ' : '')?>
|
|
/> <label for="media_<?=$Key?>"><?=$Val?></label>
|
|
<? } ?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2" class="center">
|
|
<input type="submit" value="Search requests" />
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
<? if (isset($PageLinks)) { ?>
|
|
<div class="linkbox">
|
|
<?= $PageLinks?>
|
|
</div>
|
|
<? } ?>
|
|
<table id="request_table" class="request_table border" cellpadding="6" cellspacing="1" border="0" width="100%">
|
|
<tr class="colhead_dark">
|
|
<td style="width: 38%;" class="nobr">
|
|
<strong>Request Name</strong> / <a href="?order=year&sort=<?=($OrderBy === 'year' ? $NewSort : 'desc')?>&<?=$CurrentURL?>"><strong>Year</strong></a>
|
|
</td>
|
|
<td class="nobr">
|
|
<a href="?order=votes&sort=<?=($OrderBy === 'votes' ? $NewSort : 'desc')?>&<?=$CurrentURL?>"><strong>Votes</strong></a>
|
|
</td>
|
|
<td class="nobr">
|
|
<a href="?order=bounty&sort=<?=($OrderBy === 'bounty' ? $NewSort : 'desc')?>&<?=$CurrentURL?>"><strong>Bounty</strong></a>
|
|
</td>
|
|
<td class="nobr">
|
|
<a href="?order=filled&sort=<?=($OrderBy === 'filled' ? $NewSort : 'desc')?>&<?=$CurrentURL?>"><strong>Filled</strong></a>
|
|
</td>
|
|
<td class="nobr">
|
|
<strong>Filled by</strong>
|
|
</td>
|
|
<td class="nobr">
|
|
<strong>Requested by</strong>
|
|
</td>
|
|
<td class="nobr">
|
|
<a href="?order=created&sort=<?=($OrderBy === 'created' ? $NewSort : 'desc')?>&<?=$CurrentURL?>"><strong>Created</strong></a>
|
|
</td>
|
|
<td class="nobr">
|
|
<a href="?order=lastvote&sort=<?=($OrderBy === 'lastvote' ? $NewSort : 'desc')?>&<?=$CurrentURL?>"><strong>Last vote</strong></a>
|
|
</td>
|
|
</tr>
|
|
<?
|
|
if ($NumResults === 0) {
|
|
// not viewing bookmarks but no requests found
|
|
?>
|
|
<tr class="rowb">
|
|
<td colspan="8">
|
|
Nothing found!
|
|
</td>
|
|
</tr>
|
|
<? } elseif ($Page === 0) { ?>
|
|
<tr class="rowb">
|
|
<td colspan="8">
|
|
The requested page contains no matches!
|
|
</td>
|
|
</tr>
|
|
<?
|
|
} else {
|
|
|
|
$TimeCompare = 1267643718; // Requests v2 was implemented 2010-03-03 20:15:18
|
|
$Requests = Requests::get_requests(array_keys($SphRequests));
|
|
foreach ($Requests as $RequestID => $Request) {
|
|
$SphRequest = $SphRequests[$RequestID];
|
|
$Bounty = $SphRequest['bounty'] * 1024; // Sphinx stores bounty in kB
|
|
$VoteCount = $SphRequest['votes'];
|
|
|
|
if ($Request['CategoryID'] == 0) {
|
|
$CategoryName = 'Unknown';
|
|
} else {
|
|
$CategoryName = $Categories[$Request['CategoryID'] - 1];
|
|
}
|
|
|
|
if ($Request['TorrentID'] != 0) {
|
|
$IsFilled = true;
|
|
$FillerInfo = Users::user_info($Request['FillerID']);
|
|
} else {
|
|
$IsFilled = false;
|
|
}
|
|
|
|
if ($CategoryName === 'Music') {
|
|
$ArtistForm = Requests::get_artists($RequestID);
|
|
$ArtistLink = Artists::display_artists($ArtistForm, true, true);
|
|
$FullName = "$ArtistLink<a href=\"requests.php?action=view&id=$RequestID\">$Request[Title] [$Request[Year]]</a>";
|
|
} elseif ($CategoryName === 'Audiobooks' || $CategoryName === 'Comedy') {
|
|
$FullName = "<a href=\"requests.php?action=view&id=$RequestID\">$Request[Title] [$Request[Year]]</a>";
|
|
} else {
|
|
$FullName = "<a href=\"requests.php?action=view&id=$RequestID\">$Request[Title]</a>";
|
|
}
|
|
$Tags = $Request['Tags'];
|
|
?>
|
|
<tr class="row<?=($i % 2 ? 'b' : 'a')?>">
|
|
<td>
|
|
<?=$FullName?>
|
|
<div class="tags">
|
|
<?
|
|
$TagList = array();
|
|
foreach ($Request['Tags'] as $TagID => $TagName) {
|
|
$TagList[] = '<a href="?tags='.$TagName.($BookmarkView ? '&type=requests' : '').'">'.display_str($TagName).'</a>';
|
|
}
|
|
$TagList = implode(', ', $TagList);
|
|
?>
|
|
<?=$TagList?>
|
|
</div>
|
|
</td>
|
|
<td class="nobr">
|
|
<span id="vote_count_<?=$RequestID?>"><?=number_format($VoteCount)?></span>
|
|
<? if (!$IsFilled && check_perms('site_vote')) { ?>
|
|
<a href="javascript:Vote(0, <?=$RequestID?>)" class="brackets"><strong>+</strong></a>
|
|
<? } ?>
|
|
</td>
|
|
<td class="number_column nobr">
|
|
<?=Format::get_size($Bounty)?>
|
|
</td>
|
|
<td class="nobr">
|
|
<? if ($IsFilled) { ?>
|
|
<a href="torrents.php?<?=(strtotime($Request['TimeFilled']) < $TimeCompare ? 'id=' : 'torrentid=') . $Request['TorrentID']?>"><strong><?=time_diff($Request['TimeFilled'], 1)?></strong></a>
|
|
<? } else { ?>
|
|
<strong>No</strong>
|
|
<? } ?>
|
|
</td>
|
|
<td>
|
|
<? if ($IsFilled) { ?>
|
|
<a href="user.php?id=<?=$FillerInfo['ID']?>"><?=$FillerInfo['Username']?></a>
|
|
<? } else { ?>
|
|
—
|
|
<? } ?>
|
|
</td>
|
|
<td>
|
|
<a href="user.php?id=<?=$Request['UserID']?>"><?=Users::format_username($Request['UserID'], false, false, false)?></a>
|
|
</td>
|
|
<td class="nobr">
|
|
<?=time_diff($Request['TimeAdded'], 1)?>
|
|
</td>
|
|
<td class="nobr">
|
|
<?=time_diff($Request['LastVote'], 1)?>
|
|
</td>
|
|
</tr>
|
|
<?
|
|
} // foreach
|
|
} // else
|
|
} // if ($BookmarkView && $NumResults < 1)
|
|
?>
|
|
</table>
|
|
<? if (isset($PageLinks)) { ?>
|
|
<div class="linkbox">
|
|
<?=$PageLinks?>
|
|
</div>
|
|
<? } ?>
|
|
</div>
|
|
<? View::show_footer(); ?>
|