/************************************************************************ *-------------------- Browse page --------------------------------------- * Welcome to one of the most complicated pages in all of gazelle - the * browse page. * * This is the page that is displayed when someone visits torrents.php * * It offers normal and advanced search, as well as enabled/disabled * grouping. * * For an outdated non-Sphinx version, use /sections/torrents/browse.php. * * Don't blink. * Blink and you're dead. * Don't turn your back. * Don't look away. * And don't blink. * Good Luck. * *************************************************************************/ include(SERVER_ROOT.'/sections/bookmarks/functions.php'); include(SERVER_ROOT.'/sections/torrents/functions.php'); // The "order by x" links on columns headers function header_link($SortKey,$DefaultWay="desc") { global $OrderBy,$OrderWay; if($SortKey==$OrderBy) { if($OrderWay=="desc") { $NewWay="asc"; } else { $NewWay="desc"; } } else { $NewWay=$DefaultWay; } return "torrents.php?order_way=".$NewWay."&order_by=".$SortKey."&".get_url(array('order_way','order_by')); } $TokenTorrents = $Cache->get_value('users_tokens_'.$UserID); if (empty($TokenTorrents)) { $DB->query("SELECT TorrentID FROM users_freeleeches WHERE UserID=$UserID AND Expired=FALSE"); $TokenTorrents = $DB->collect('TorrentID'); $Cache->cache_value('users_tokens_'.$UserID, $TokenTorrents); } // Search by infohash if(!empty($_GET['searchstr']) || !empty($_GET['groupname'])) { if(!empty($_GET['searchstr'])) { $InfoHash = $_GET['searchstr']; } else { $InfoHash = $_GET['groupname']; } if($InfoHash = is_valid_torrenthash($InfoHash)) { $InfoHash = db_string(pack("H*", $InfoHash)); $DB->query("SELECT ID,GroupID FROM torrents WHERE info_hash='$InfoHash'"); if($DB->record_count() > 0) { list($ID, $GroupID) = $DB->next_record(); header('Location: torrents.php?id='.$GroupID.'&torrentid='.$ID); die(); } } } // Setting default search options if(!empty($_GET['setdefault'])) { $UnsetList = array('page','setdefault'); $UnsetRegexp = '/(&|^)('.implode('|',$UnsetList).')=.*?(&|$)/i'; $DB->query("SELECT SiteOptions FROM users_info WHERE UserID='".db_string($LoggedUser['ID'])."'"); list($SiteOptions)=$DB->next_record(MYSQLI_NUM, false); if(!empty($SiteOptions)) { $SiteOptions = unserialize($SiteOptions); } else { $SiteOptions = array(); } $SiteOptions['DefaultSearch'] = preg_replace($UnsetRegexp,'',$_SERVER['QUERY_STRING']); $DB->query("UPDATE users_info SET SiteOptions='".db_string(serialize($SiteOptions))."' WHERE UserID='".db_string($LoggedUser['ID'])."'"); $Cache->begin_transaction('user_info_heavy_'.$UserID); $Cache->update_row(false, array('DefaultSearch'=>$SiteOptions['DefaultSearch'])); $Cache->commit_transaction(0); // Clearing default search options } elseif(!empty($_GET['cleardefault'])) { $DB->query("SELECT SiteOptions FROM users_info WHERE UserID='".db_string($LoggedUser['ID'])."'"); list($SiteOptions)=$DB->next_record(MYSQLI_NUM, false); $SiteOptions=unserialize($SiteOptions); $SiteOptions['DefaultSearch']=''; $DB->query("UPDATE users_info SET SiteOptions='".db_string(serialize($SiteOptions))."' WHERE UserID='".db_string($LoggedUser['ID'])."'"); $Cache->begin_transaction('user_info_heavy_'.$UserID); $Cache->update_row(false, array('DefaultSearch'=>'')); $Cache->commit_transaction(0); // Use default search options } elseif((empty($_SERVER['QUERY_STRING']) || (count($_GET) == 1 && isset($_GET['page']))) && !empty($LoggedUser['DefaultSearch'])) { if(!empty($_GET['page'])) { $Page = $_GET['page']; parse_str($LoggedUser['DefaultSearch'],$_GET); $_GET['page'] = $Page; } else { parse_str($LoggedUser['DefaultSearch'],$_GET); } } array_pop($Bitrates); // remove 'other' $SearchBitrates = array_merge($Bitrates, array('v0','v1','v2','24bit')); foreach($SearchBitrates as $ID=>$Val) { $SearchBitrates[$ID]=strtolower($Val); } foreach($Formats as $ID=>$Val) { $SearchFormats[$ID]=strtolower($Val); } $Queries = array(); //Simple search if(!empty($_GET['searchstr'])) { $Words = explode(' ',strtolower($_GET['searchstr'])); $FilterBitrates = array_intersect($Words, $SearchBitrates); if(count($FilterBitrates)>0) { $Queries[]='@encoding '.implode(' ',$FilterBitrates); } $FilterFormats = array_intersect($Words, $SearchFormats); if(count($FilterFormats)>0) { $Queries[]='@format '.implode(' ',$FilterFormats); } if(in_array('100%', $Words)) { $_GET['haslog'] = '100'; unset($Words[array_search('100%',$Words)]); } $Words = array_diff($Words, $FilterBitrates, $FilterFormats); if(!empty($Words)) { foreach($Words as $Key => &$Word) { if($Word[0] == '!' && strlen($Word) >= 3 && count($Words) >= 2) { if(strpos($Word,'!',1) === false) { $Word = '!'.$SS->EscapeString(substr($Word,1)); } else { $Word = $SS->EscapeString($Word); } } elseif(strlen($Word) >= 2) { $Word = $SS->EscapeString($Word); } else { unset($Words[$Key]); } } unset($Word); $Words = trim(implode(' ',$Words)); if(!empty($Words)) { $Queries[]='@(groupname,artistname,yearfulltext) '.$Words; } } } if(!empty($_GET['taglist'])) { $_GET['taglist'] = str_replace('.','_',$_GET['taglist']); $TagList = explode(',',$_GET['taglist']); $TagListEx = array(); foreach($TagList as $Key => &$Tag) { $Tag = trim($Tag); if(strlen($Tag) >= 2) { if($Tag[0] == '!' && strlen($Tag) >= 3) { $TagListEx[] = '!'.$SS->EscapeString(substr($Tag,1)); unset($TagList[$Key]); } else { $Tag = $SS->EscapeString($Tag); } } else { unset($TagList[$Key]); } } unset($Tag); } if(empty($_GET['tags_type']) && !empty($TagList) && count($TagList) > 1) { $_GET['tags_type'] = '0'; if(!empty($TagListEx)) { $Queries[]='@taglist ( '.implode(' | ', $TagList).' ) '.implode(' ', $TagListEx); } else { $Queries[]='@taglist ( '.implode(' | ', $TagList).' )'; } } elseif(!empty($TagList)) { $Queries[]='@taglist '.implode(' ', array_merge($TagList,$TagListEx)); } else { $_GET['tags_type'] = '1'; } foreach(array('artistname','groupname', 'recordlabel', 'cataloguenumber', 'remastertitle', 'remasteryear', 'remasterrecordlabel', 'remastercataloguenumber', 'filelist', 'format', 'media') as $Search) { if(!empty($_GET[$Search])) { $_GET[$Search] = str_replace(array('%'), '', $_GET[$Search]); if($Search == 'filelist') { $Queries[]='@filelist "'.$SS->EscapeString($_GET['filelist']).'"~20'; } else { $Words = explode(' ', $_GET[$Search]); foreach($Words as $Key => &$Word) { if($Word[0] == '!' && strlen($Word) >= 3 && count($Words) >= 2) { if(strpos($Word,'!',1) === false) { $Word = '!'.$SS->EscapeString(substr($Word,1)); } else { $Word = $SS->EscapeString($Word); } } elseif(strlen($Word) >= 2) { $Word = $SS->EscapeString($Word); } else { unset($Words[$Key]); } } $Words = trim(implode(' ',$Words)); if(!empty($Words)) { $Queries[]="@$Search ".$Words; } } } } if(!empty($_GET['year'])) { $Years = explode('-', $_GET['year']); if(is_number($Years[0]) || (empty($Years[0]) && !empty($Years[1]) && is_number($Years[1]))) { if(count($Years) == 1) { $SS->set_filter('year', array((int)$Years[0])); } else { if(empty($Years[1]) || !is_number($Years[1])) { $Years[1] = PHP_INT_MAX; } elseif($Years[0] > $Years[1]) { $Years = array_reverse($Years); } $SS->set_filter_range('year', (int)$Years[0], (int)$Years[1]); } } } if(!empty($_GET['encoding'])) { $Queries[]='@encoding "'.$SS->EscapeString($_GET['encoding']).'"'; // Note the quotes, for 24bit lossless } if(isset($_GET['haslog']) && $_GET['haslog']!=='') { if($_GET['haslog'] == 100) { $SS->set_filter('logscore', array(100)); } elseif ($_GET['haslog'] < 0) { // Exclude torrents with log score equal to 100 $SS->set_filter('logscore', array(100), true); $SS->set_filter('haslog', array(1)); } else { $SS->set_filter('haslog', array(1)); } } foreach(array('hascue','scene','vanityhouse','freetorrent','releasetype') as $Search) { if(isset($_GET[$Search]) && $_GET[$Search]!=='') { if($Search == 'freetorrent') { switch($_GET[$Search]) { case 0: $SS->set_filter($Search, array(0)); break; case 1: $SS->set_filter($Search, array(1)); break; case 2: $SS->set_filter($Search, array(2)); break; case 3: $SS->set_filter($Search, array(0), true); break; } } else { $SS->set_filter($Search, array($_GET[$Search])); } } } if(!empty($_GET['filter_cat'])) { $SS->set_filter('categoryid', array_keys($_GET['filter_cat'])); } if(!empty($_GET['page']) && is_number($_GET['page'])) { if(check_perms('site_search_many')) { $Page = $_GET['page']; } else { $Page = min(SPHINX_MAX_MATCHES/TORRENTS_PER_PAGE, $_GET['page']); } $MaxMatches = min(SPHINX_MAX_MATCHES, SPHINX_MATCHES_START + SPHINX_MATCHES_STEP*floor(($Page-1)*TORRENTS_PER_PAGE/SPHINX_MATCHES_STEP)); $SS->limit(($Page-1)*TORRENTS_PER_PAGE, TORRENTS_PER_PAGE, $MaxMatches); } else { $Page = 1; $MaxMatches = SPHINX_MATCHES_START; $SS->limit(0, TORRENTS_PER_PAGE); } if(!empty($_GET['order_way']) && $_GET['order_way'] == 'asc') { $Way = SPH_SORT_ATTR_ASC; $OrderWay = 'asc'; // For header links } else { $Way = SPH_SORT_ATTR_DESC; $_GET['order_way'] = 'desc'; $OrderWay = 'desc'; } if(empty($_GET['order_by']) || !in_array($_GET['order_by'], array('year','time','size','seeders','leechers','snatched','random'))) { $_GET['order_by'] = 'time'; $OrderBy = 'time'; // For header links } elseif($_GET['order_by'] == 'random') { $OrderBy = '@random'; $Way = SPH_SORT_EXTENDED; $SS->limit(0, TORRENTS_PER_PAGE, TORRENTS_PER_PAGE); } else { $OrderBy = $_GET['order_by']; } $SS->SetSortMode($Way, $OrderBy); if(count($Queries)>0) { $Query = implode(' ',$Queries); } else { $Query=''; if(empty($SS->Filters)) { $SS->set_filter('size', array(0), true); } } $SS->set_index(SPHINX_INDEX.' delta'); $Results = $SS->search($Query, '', 0, array(), '', ''); $TorrentCount = $SS->TotalResults; /* // If some were fetched from memcached, get their artists if(!empty($Results['matches'])) { // Fetch the artists for groups $GroupIDs = array_keys($Results['matches']); $Artists = get_artists($GroupIDs); foreach($Artists as $GroupID=>$Data) { if(!empty($Data[1])) { $Results['matches'][$GroupID]['Artists']=$Data[1]; // Only use main artists } ksort($Results['matches'][$GroupID]); } } */ // These ones were not found in the cache, run SQL if(!empty($Results['notfound'])) { $SQLResults = get_groups($Results['notfound']); if(is_array($SQLResults['notfound'])) { // Something wasn't found in the db, remove it from results reset($SQLResults['notfound']); foreach($SQLResults['notfound'] as $ID) { unset($SQLResults['matches'][$ID]); unset($Results['matches'][$ID]); } } // Merge SQL results with sphinx/memcached results foreach($SQLResults['matches'] as $ID=>$SQLResult) { $Results['matches'][$ID] = array_merge($Results['matches'][$ID], $SQLResult); ksort($Results['matches'][$ID]); } } $Results = $Results['matches']; $AdvancedSearch = false; $Action = 'action=basic'; if(((!empty($_GET['action']) && strtolower($_GET['action'])=="advanced") || (!empty($LoggedUser['SearchType']) && ((!empty($_GET['action']) && strtolower($_GET['action'])!="basic") || empty($_GET['action'])))) && check_perms('site_advanced_search')) { $AdvancedSearch = true; $Action = 'action=advanced'; } show_header('Browse Torrents','browse'); // List of pages $Pages=get_pages($Page,$TorrentCount,TORRENTS_PER_PAGE); ?>
Make sure all names are spelled correctly, or try making your search less specific.
You might like (Beta): while(list($Tag)=$DB->next_record()) { ?>=$Tag?> } ?>
Name / Year | Files | Time | Size | |||||
=$DisplayName?>
if(in_array($GroupID, $Bookmarks)) { ?>
Unbookmark
} else { ?>
Bookmark
} ?>
|
=time_diff($GroupTime,1)?> | =get_size($MaxSize*1024)?> (Max) | =number_format($TotalSnatched)?> | >=number_format($TotalSeeders)?> | =number_format($TotalLeechers)?> | |||
[ DL
if (($LoggedUser['FLTokens'] > 0) && $Data['HasFile'] && ($Data['Size'] < 1073741824)
&& !in_array($TorrentID, $TokenTorrents) && empty($Data['FreeTorrent']) && ($LoggedUser['CanLeech'] == '1')) { ?>
| FL
} ?>
| RP]
=$DisplayName?>
|
=$Data['FileCount']?> | =time_diff($GroupTime,1)?> | =get_size($Data['Size'])?> | =number_format($TotalSnatched)?> | >=number_format($TotalSeeders)?> | =number_format($TotalLeechers)?> |