2011-03-28 14:21:28 +00:00
< ?
function compare ( $X , $Y ){
return ( $Y [ 'score' ] - $X [ 'score' ]);
}
2012-03-29 08:00:19 +00:00
define ( 'MAX_PERS_COLLAGES' , 3 ); // How many personal collages should be shown by default
2012-02-20 08:00:22 +00:00
2011-08-09 21:03:28 +00:00
include ( SERVER_ROOT . '/sections/bookmarks/functions.php' ); // has_bookmarked()
2011-03-28 14:21:28 +00:00
include ( SERVER_ROOT . '/classes/class_text.php' );
2012-06-18 08:00:14 +00:00
include ( SERVER_ROOT . '/classes/class_image_tools.php' );
2011-03-28 14:21:28 +00:00
$Text = NEW TEXT ;
$GroupID = ceil ( $_GET [ 'id' ]);
if ( ! empty ( $_GET [ 'revisionid' ]) && is_number ( $_GET [ 'revisionid' ])) {
$RevisionID = $_GET [ 'revisionid' ];
} else { $RevisionID = 0 ; }
include ( SERVER_ROOT . '/sections/torrents/functions.php' );
$TorrentCache = get_group_info ( $GroupID , true , $RevisionID );
$TorrentDetails = $TorrentCache [ 0 ];
$TorrentList = $TorrentCache [ 1 ];
// Group details
list ( $WikiBody , $WikiImage , $GroupID , $GroupName , $GroupYear , $GroupRecordLabel , $GroupCatalogueNumber , $ReleaseType , $GroupCategoryID ,
2011-08-09 21:03:28 +00:00
$GroupTime , $GroupVanityHouse , $TorrentTags , $TorrentTagIDs , $TorrentTagUserIDs , $TagPositiveVotes , $TagNegativeVotes ) = array_shift ( $TorrentDetails );
2011-03-28 14:21:28 +00:00
$DisplayName = $GroupName ;
$AltName = $GroupName ; // Goes in the alt text of the image
$Title = $GroupName ; // goes in <title>
$WikiBody = $Text -> full_format ( $WikiBody );
$Artists = get_artist ( $GroupID );
if ( $Artists ) {
2011-04-13 15:36:33 +00:00
$DisplayName = '<span dir="ltr">' . display_artists ( $Artists , true ) . $DisplayName . '</span>' ;
2011-03-28 14:21:28 +00:00
$AltName = display_str ( display_artists ( $Artists , false )) . $AltName ;
$Title = $AltName ;
}
if ( $GroupYear > 0 ) {
$DisplayName .= ' [' . $GroupYear . ']' ;
$AltName .= ' [' . $GroupYear . ']' ;
}
2011-08-09 21:03:28 +00:00
if ( $GroupVanityHouse ){
$DisplayName .= ' [Vanity House]' ;
2012-02-13 08:00:23 +00:00
$AltName .= ' [Vanity House]' ;
2011-08-09 21:03:28 +00:00
}
2011-03-28 14:21:28 +00:00
if ( $GroupCategoryID == 1 ) {
$DisplayName .= ' [' . $ReleaseTypes [ $ReleaseType ] . ']' ;
$AltName .= ' [' . $ReleaseTypes [ $ReleaseType ] . ']' ;
}
$Tags = array ();
if ( $TorrentTags != '' ) {
$TorrentTags = explode ( '|' , $TorrentTags );
$TorrentTagIDs = explode ( '|' , $TorrentTagIDs );
$TorrentTagUserIDs = explode ( '|' , $TorrentTagUserIDs );
$TagPositiveVotes = explode ( '|' , $TagPositiveVotes );
$TagNegativeVotes = explode ( '|' , $TagNegativeVotes );
foreach ( $TorrentTags as $TagKey => $TagName ) {
$Tags [ $TagKey ][ 'name' ] = $TagName ;
$Tags [ $TagKey ][ 'score' ] = ( $TagPositiveVotes [ $TagKey ] - $TagNegativeVotes [ $TagKey ]);
$Tags [ $TagKey ][ 'id' ] = $TorrentTagIDs [ $TagKey ];
$Tags [ $TagKey ][ 'userid' ] = $TorrentTagUserIDs [ $TagKey ];
}
uasort ( $Tags , 'compare' );
}
/* if ( check_perms ( 'site_debug' )) {
print_r ( $TorrentTags );
print_r ( $Tags );
print_r ( $TorrentTagUserIDs );
die ();
} */
2011-10-08 08:00:14 +00:00
$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 );
}
2011-03-28 14:21:28 +00:00
// Start output
2012-02-05 08:00:20 +00:00
show_header ( $Title , 'browse,comments,torrent,bbcode' );
2011-03-28 14:21:28 +00:00
?>
< div class = " thin " >
< h2 >< ? = $DisplayName ?> </h2>
< div class = " linkbox " >
< ? if ( check_perms ( 'site_edit_wiki' )) { ?>
< a href = " torrents.php?action=editgroup&groupid=<?= $GroupID ?> " > [ Edit description ] </ a >
< ? } ?>
< a href = " torrents.php?action=history&groupid=<?= $GroupID ?> " > [ View history ] </ a >
< ? if ( $RevisionID && check_perms ( 'site_edit_wiki' )) { ?>
< a href = " /torrents.php?action=revert&groupid=<?= $GroupID ?>&revisionid=<?= $RevisionID ?>&auth=<?= $LoggedUser['AuthKey'] ?> " > [ Revert to this revision ] </ a >
< ? }
2011-08-09 21:03:28 +00:00
if ( has_bookmarked ( 'torrent' , $GroupID )) {
2011-03-28 14:21:28 +00:00
?>
2011-08-09 21:03:28 +00:00
< a href = " # " id = " bookmarklink_torrent_<?= $GroupID ?> " onclick = " Unbookmark('torrent', <?= $GroupID ?>,'[Bookmark]');return false; " > [ Remove bookmark ] </ a >
2011-03-28 14:21:28 +00:00
< ? } else { ?>
2011-08-09 21:03:28 +00:00
< a href = " # " id = " bookmarklink_torrent_<?= $GroupID ?> " onclick = " Bookmark('torrent', <?= $GroupID ?>,'[Remove bookmark]');return false; " > [ Bookmark ] </ a >
2011-03-28 14:21:28 +00:00
< ? }
if ( $Categories [ $GroupCategoryID - 1 ] == 'Music' ) { ?>
< a href = " upload.php?groupid=<?= $GroupID ?> " > [ Add format ] </ a >
< ? }
if ( check_perms ( 'site_submit_requests' )) { ?>
< a href = " requests.php?action=new&groupid=<?= $GroupID ?> " > [ Request format ] </ a >
< ? } ?>
2012-01-24 08:00:19 +00:00
< a href = " torrents.php?action=grouplog&groupid=<?= $GroupID ?> " > [ View log ] </ a >
2011-03-28 14:21:28 +00:00
</ div >
< div class = " sidebar " >
< div class = " box box_albumart " >
< div class = " head " >< strong > Cover </ strong ></ div >
< ?
if ( $WikiImage != " " ) {
2012-02-07 08:00:20 +00:00
if ( check_perms ( 'site_proxy_images' )) {
$WikiImage = 'http' . ( $SSL ? 's' : '' ) . '://' . SITE_URL . '/image.php?i=' . urlencode ( $WikiImage );
}
2011-03-28 14:21:28 +00:00
?>
< p align = " center " >< img style = " max-width: 220px; " src = " <?= $WikiImage ?> " alt = " <?= $AltName ?> " onclick = " lightbox.init(this,220); " /></ p >
< ?
} else {
?>
< p align = " center " >< img src = " <?=STATIC_SERVER?>common/noartwork/<?= $CategoryIcons[$GroupCategoryID-1] ?> " alt = " <?= $Categories[$GroupCategoryID-1] ?> " title = " <?= $Categories[$GroupCategoryID-1] ?> " width = " 220 " height = " 220 " border = " 0 " /></ p >
< ?
}
?>
</ div >
< ?
if ( $Categories [ $GroupCategoryID - 1 ] == 'Music' ) {
$ShownWith = false ;
?>
< div class = " box box_artists " >
< div class = " head " >< strong > Artists </ strong >
< ? = ( check_perms ( 'torrents_edit' )) ? '<span style="float:right;"><a onclick="ArtistManager(); return false;" href="#">[Edit]</a></span>' : '' ?>
</ div >
< ul class = " stats nobullet " id = " artist_list " >
2011-11-20 08:00:18 +00:00
< ? if ( ! empty ( $Artists [ 4 ]) && count ( $Artists [ 4 ]) > 0 ) {
print ' <li class="artists_composers"><strong>Composers:</strong></li>' ;
foreach ( $Artists [ 4 ] as $Artist ) {
?>
< li class = " artists_composers " >
< ? = display_artist ( $Artist ) . '‎' ?>
< ? if ( check_perms ( 'torrents_edit' )){
$DB -> query ( " SELECT AliasID FROM artists_alias WHERE ArtistID = " . $Artist [ 'id' ] . " AND ArtistID != AliasID AND Name = ' " . db_string ( $Artist [ 'name' ]) . " ' " );
list ( $AliasID ) = $DB -> next_record ();
if ( empty ( $AliasID )) {
$AliasID = $Artist [ 'id' ];
}
?>
& nbsp ;( < ? = $AliasID ?> )
2012-02-23 08:00:18 +00:00
< span class = " remove_artist " >< a href = " javascript:void(0); " onclick = " ajax.get('torrents.php?action=delete_alias&auth=' + authkey + '&groupid=<?= $GroupID ?>&artistid=<?= $Artist['id'] ?>&importance=4');this.parentNode.parentNode.style.display = 'none'; " > [ X ] </ a ></ span >
2011-11-20 08:00:18 +00:00
< ? } ?>
</ li >
< ? }
}
if ( ! empty ( $Artists [ 6 ]) && count ( $Artists [ 6 ]) > 0 ) {
print ' <li class="artists_dj"><strong>DJ / Compiler:</strong></li>' ;
foreach ( $Artists [ 6 ] as $Artist ) {
?>
< li class = " artists_dj " >
< ? = display_artist ( $Artist ) . '‎' ?>
< ? if ( check_perms ( 'torrents_edit' )){
$DB -> query ( " SELECT AliasID FROM artists_alias WHERE ArtistID = " . $Artist [ 'id' ] . " AND ArtistID != AliasID AND Name = ' " . db_string ( $Artist [ 'name' ]) . " ' " );
list ( $AliasID ) = $DB -> next_record ();
if ( empty ( $AliasID )) {
$AliasID = $Artist [ 'id' ];
}
?>
& nbsp ;( < ? = $AliasID ?> )
2012-02-23 08:00:18 +00:00
< span class = " remove_artist " >< a href = " javascript:void(0); " onclick = " ajax.get('torrents.php?action=delete_alias&auth=' + authkey + '&groupid=<?= $GroupID ?>&artistid=<?= $Artist['id'] ?>&importance=6');this.parentNode.parentNode.style.display = 'none'; " > [ X ] </ a ></ span >
2011-11-20 08:00:18 +00:00
< ? } ?>
</ li >
2011-03-28 14:21:28 +00:00
< ?
2011-11-20 08:00:18 +00:00
}
}
if (( count ( $Artists [ 6 ]) > 0 ) && ( count ( $Artists [ 1 ]) > 0 )) {
print ' <li class="artists_main"><strong>Artists:</strong></li>' ;
} elseif (( count ( $Artists [ 4 ]) > 0 ) && ( count ( $Artists [ 1 ]) > 0 )) {
print ' <li class="artists_main"><strong>Performers:</strong></li>' ;
}
2011-03-28 14:21:28 +00:00
foreach ( $Artists [ 1 ] as $Artist ) {
?>
< li class = " artist_main " >
< ? = display_artist ( $Artist ) . '‎' ?>
< ? if ( check_perms ( 'torrents_edit' )){
$AliasID = $Artist [ 'aliasid' ];
if ( empty ( $AliasID )) {
$AliasID = $Artist [ 'id' ];
}
?>
& nbsp ;( < ? = $AliasID ?> )
2012-02-23 08:00:18 +00:00
< span class = " remove_artist " >< a href = " javascript:void(0); " onclick = " ajax.get('torrents.php?action=delete_alias&auth=' + authkey + '&groupid=<?= $GroupID ?>&artistid=<?= $Artist['id'] ?>&importance=1');this.parentNode.parentNode.style.display = 'none'; " > [ X ] </ a ></ span >
2011-03-28 14:21:28 +00:00
< ? } ?>
</ li >
< ?
}
if ( ! empty ( $Artists [ 2 ]) && count ( $Artists [ 2 ]) > 0 ) {
print ' <li class="artists_with"><strong>With:</strong></li>' ;
foreach ( $Artists [ 2 ] as $Artist ) {
?>
< li class = " artist_guest " >
< ? = display_artist ( $Artist ) . '‎' ?>
< ? if ( check_perms ( 'torrents_edit' )){
$DB -> query ( " SELECT AliasID FROM artists_alias WHERE ArtistID = " . $Artist [ 'id' ] . " AND ArtistID != AliasID AND Name = ' " . db_string ( $Artist [ 'name' ]) . " ' " );
list ( $AliasID ) = $DB -> next_record ();
if ( empty ( $AliasID )) {
$AliasID = $Artist [ 'id' ];
}
?>
& nbsp ;( < ? = $AliasID ?> )
2012-02-23 08:00:18 +00:00
< span class = " remove_artist " >< a href = " javascript:void(0); " onclick = " ajax.get('torrents.php?action=delete_alias&auth=' + authkey + '&groupid=<?= $GroupID ?>&artistid=<?= $Artist['id'] ?>&importance=2');this.parentNode.parentNode.style.display = 'none'; " > [ X ] </ a ></ span >
2011-03-28 14:21:28 +00:00
< ? } ?>
</ li >
2011-11-20 08:00:18 +00:00
< ?
}
}
if ( ! empty ( $Artists [ 5 ]) && count ( $Artists [ 5 ]) > 0 ) {
print ' <li class="artists_conductors"><strong>Conducted by:</strong></li>' ;
foreach ( $Artists [ 5 ] as $Artist ) {
?>
< li class = " artists_conductors " >
< ? = display_artist ( $Artist ) . '‎' ?>
< ? if ( check_perms ( 'torrents_edit' )){
$DB -> query ( " SELECT AliasID FROM artists_alias WHERE ArtistID = " . $Artist [ 'id' ] . " AND ArtistID != AliasID AND Name = ' " . db_string ( $Artist [ 'name' ]) . " ' " );
list ( $AliasID ) = $DB -> next_record ();
if ( empty ( $AliasID )) {
$AliasID = $Artist [ 'id' ];
}
?>
& nbsp ;( < ? = $AliasID ?> )
2012-02-23 08:00:18 +00:00
< span class = " remove_artist " >< a href = " javascript:void(0); " onclick = " ajax.get('torrents.php?action=delete_alias&auth=' + authkey + '&groupid=<?= $GroupID ?>&artistid=<?= $Artist['id'] ?>&importance=5');this.parentNode.parentNode.style.display = 'none'; " > [ X ] </ a ></ span >
2011-11-20 08:00:18 +00:00
< ? } ?>
</ li >
2011-03-28 14:21:28 +00:00
< ?
}
}
if ( ! empty ( $Artists [ 3 ]) && count ( $Artists [ 3 ]) > 0 ) {
2012-04-04 08:00:25 +00:00
print ' <li class="artists_remix"><strong>Remixed by:</strong></li>' ;
2011-03-28 14:21:28 +00:00
foreach ( $Artists [ 3 ] as $Artist ) {
?>
< li class = " artists_remix " >
< ? = display_artist ( $Artist ) . '‎' ?>
< ? if ( check_perms ( 'torrents_edit' )){
$DB -> query ( " SELECT AliasID FROM artists_alias WHERE ArtistID = " . $Artist [ 'id' ] . " AND ArtistID != AliasID AND Name = ' " . db_string ( $Artist [ 'name' ]) . " ' " );
list ( $AliasID ) = $DB -> next_record ();
if ( empty ( $AliasID )) {
$AliasID = $Artist [ 'id' ];
}
?>
& nbsp ;( < ? = $AliasID ?> )
2012-02-23 08:00:18 +00:00
< span class = " remove_artist " >< a href = " javascript:void(0); " onclick = " ajax.get('torrents.php?action=delete_alias&auth=' + authkey + '&groupid=<?= $GroupID ?>&artistid=<?= $Artist['id'] ?>&importance=3');this.parentNode.parentNode.style.display = 'none'; " > [ X ] </ a ></ span >
2011-03-28 14:21:28 +00:00
< ? } ?>
</ li >
2012-02-19 08:00:19 +00:00
< ?
}
}
if ( ! empty ( $Artists [ 7 ]) && count ( $Artists [ 7 ]) > 0 ) {
2012-04-04 08:00:25 +00:00
print ' <li class="artists_producer"><strong>Produced by:</strong></li>' ;
2012-02-19 08:00:19 +00:00
foreach ( $Artists [ 7 ] as $Artist ) {
?>
< li class = " artists_producer " >
< ? = display_artist ( $Artist ) . '‎' ?>
< ? if ( check_perms ( 'torrents_edit' )){
$DB -> query ( " SELECT AliasID FROM artists_alias WHERE ArtistID = " . $Artist [ 'id' ] . " AND ArtistID != AliasID AND Name = ' " . db_string ( $Artist [ 'name' ]) . " ' " );
list ( $AliasID ) = $DB -> next_record ();
if ( empty ( $AliasID )) {
$AliasID = $Artist [ 'id' ];
}
?>
& nbsp ;( < ? = $AliasID ?> )
2012-02-23 08:00:18 +00:00
< span class = " remove_artist " >< a href = " javascript:void(0); " onclick = " ajax.get('torrents.php?action=delete_alias&auth=' + authkey + '&groupid=<?= $GroupID ?>&artistid=<?= $Artist['id'] ?>&importance=7');this.parentNode.parentNode.style.display = 'none'; " > [ X ] </ a ></ span >
2012-02-19 08:00:19 +00:00
< ? } ?>
</ li >
2011-03-28 14:21:28 +00:00
< ?
}
}
?>
</ ul >
</ div >
< ?
if ( check_perms ( 'torrents_add_artist' )) { ?>
< div class = " box box_addartists " >
< div class = " head " >< strong > Add artist </ strong >< span style = " float:right; " >< a onclick = " AddArtistField(); return false; " href = " # " > [ + ] </ a ></ span ></ div >
< div class = " body " >
< form action = " torrents.php " method = " post " >
< div id = " AddArtists " >
< input type = " hidden " name = " action " value = " add_alias " />
< input type = " hidden " name = " auth " value = " <?= $LoggedUser['AuthKey'] ?> " />
< input type = " hidden " name = " groupid " value = " <?= $GroupID ?> " />
< input type = " text " name = " aliasname[] " size = " 17 " />
< select name = " importance[] " >
< option value = " 1 " > Main </ option >
< option value = " 2 " > Guest </ option >
2011-11-20 08:00:18 +00:00
< option value = " 4 " > Composer </ option >
< option value = " 5 " > Conductor </ option >
< option value = " 6 " > DJ / Compiler </ option >
2011-03-28 14:21:28 +00:00
< option value = " 3 " > Remixer </ option >
2012-02-19 08:00:19 +00:00
< option value = " 7 " > Producer </ option >
2011-03-28 14:21:28 +00:00
</ select >
</ div >
< input type = " submit " value = " Add " />
</ form >
</ div >
</ div >
< ? }
} ?>
< div class = " box box_tags " >
< div class = " head " >< strong > Tags </ strong ></ div >
< ?
if ( count ( $Tags ) > 0 ) {
?>
< ul class = " stats nobullet " >
< ?
foreach ( $Tags as $TagKey => $Tag ) {
?>
< li >
< a href = " torrents.php?taglist=<?= $Tag['name'] ?> " style = " float:left; display:block; " >< ? = display_str ( $Tag [ 'name' ]) ?> </a>
< div style = " float:right; display:block; letter-spacing: -1px; " >
< a href = " torrents.php?action=vote_tag&way=down&groupid=<?= $GroupID ?>&tagid=<?= $Tag['id'] ?>&auth=<?= $LoggedUser['AuthKey'] ?> " style = " font-family: monospace; " > [ - ] </ a >
< ? = $Tag [ 'score' ] ?>
< a href = " torrents.php?action=vote_tag&way=up&groupid=<?= $GroupID ?>&tagid=<?= $Tag['id'] ?>&auth=<?= $LoggedUser['AuthKey'] ?> " style = " font-family: monospace; " > [ + ] </ a >
< ? if ( check_perms ( 'users_warn' )){ ?>
< a href = " user.php?id=<?= $Tag['userid'] ?> " > [ U ] </ a >
< ? } ?>
< ? if ( check_perms ( 'site_delete_tag' )){ ?>
< a href = " torrents.php?action=delete_tag&groupid=<?= $GroupID ?>&tagid=<?= $Tag['id'] ?>&auth=<?= $LoggedUser['AuthKey'] ?> " > [ X ] </ a >
< ? } ?>
</ div >
< br style = " clear:both " />
</ li >
< ?
}
?>
</ ul >
< ?
} else {
?>
There are no tags to display .
< ?
}
?>
</ div >
< div class = " box " >
< div class = " head " >< strong > Add tag </ strong ></ div >
< div class = " body " >
< form action = " torrents.php " method = " post " >
< input type = " hidden " name = " action " value = " add_tag " />
< input type = " hidden " name = " auth " value = " <?= $LoggedUser['AuthKey'] ?> " />
< input type = " hidden " name = " groupid " value = " <?= $GroupID ?> " />
< input type = " text " name = " tagname " size = " 20 " />
< input type = " submit " value = " + " />
</ form >
< br />< br />
< strong >< a href = " rules.php?p=tag " > Tagging rules </ a ></ strong >
</ div >
</ div >
</ div >
< div class = " main_column " >
< table class = " torrent_table " >
< tr class = " colhead_dark " >
< td width = " 80% " >< strong > Torrents </ strong ></ td >
< td >< strong > Size </ strong ></ td >
< td class = " sign " >< img src = " static/styles/<?= $LoggedUser['StyleName'] ?>/images/snatched.png " alt = " Snatches " title = " Snatches " /></ td >
< td class = " sign " >< img src = " static/styles/<?= $LoggedUser['StyleName'] ?>/images/seeders.png " alt = " Seeders " title = " Seeders " /></ td >
< td class = " sign " >< img src = " static/styles/<?= $LoggedUser['StyleName'] ?>/images/leechers.png " alt = " Leechers " title = " Leechers " /></ td >
</ tr >
< ?
function filelist ( $Str ) {
return " </td><td> " . get_size ( $Str [ 1 ]) . " </td></tr> " ;
}
$LastRemasterYear = '-' ;
$LastRemasterTitle = '' ;
$LastRemasterRecordLabel = '' ;
$LastRemasterCatalogueNumber = '' ;
2011-09-04 08:00:07 +00:00
$EditionID = 0 ;
2011-03-28 14:21:28 +00:00
foreach ( $TorrentList as $Torrent ) {
//t.ID, t.Media, t.Format, t.Encoding, t.Remastered, t.RemasterYear, t.RemasterTitle, t.RemasterRecordLabel,t.RemasterCatalogueNumber,
//t.Scene, t.HasLog, t.HasCue, t.LogScore, t.FileCount, t.Size, t.Seeders, t.Leechers, t.Snatched, t.FreeTorrent, t.Time, t.Description,
2012-03-28 08:00:20 +00:00
//t.FileList, t.FilePath, t.UserID, t.last_action,
2012-05-31 08:00:14 +00:00
//(bad tags), (bad folders), (bad filenames), (cassette approved), (lossy master approved), (lossy web approved), t.LastReseedRequest, LogInDB
2011-03-28 14:21:28 +00:00
list ( $TorrentID , $Media , $Format , $Encoding , $Remastered , $RemasterYear , $RemasterTitle , $RemasterRecordLabel , $RemasterCatalogueNumber ,
$Scene , $HasLog , $HasCue , $LogScore , $FileCount , $Size , $Seeders , $Leechers , $Snatched , $FreeTorrent , $TorrentTime , $Description ,
2012-03-28 08:00:20 +00:00
$FileList , $FilePath , $UserID , $LastActive ,
2012-05-31 08:00:14 +00:00
$BadTags , $BadFolders , $BadFiles , $CassetteApproved , $LossymasterApproved , $LossywebApproved , $LastReseedRequest , $LogInDB , $HasFile ) = $Torrent ;
2011-03-28 14:21:28 +00:00
if ( $Remastered && ! $RemasterYear ) {
2011-09-05 08:00:07 +00:00
$FirstUnknown = ! isset ( $FirstUnknown );
2011-03-28 14:21:28 +00:00
}
$Reported = false ;
unset ( $ReportedTimes );
$Reports = $Cache -> get_value ( 'reports_torrent_' . $TorrentID );
if ( $Reports === false ) {
$DB -> query ( " SELECT r.ID,
r . ReporterID ,
r . Type ,
r . UserComment ,
r . ReportedTime
FROM reportsv2 AS r
WHERE TorrentID = $TorrentID
AND Type != 'edited'
AND Status != 'Resolved' " );
$Reports = $DB -> to_array ();
$Cache -> cache_value ( 'reports_torrent_' . $TorrentID , $Reports , 0 );
}
if ( count ( $Reports ) > 0 ) {
$Reported = true ;
include ( SERVER_ROOT . '/sections/reportsv2/array.php' );
$ReportInfo = " <table><tr class='colhead_dark' style='font-weight: bold;'><td>This torrent has " . count ( $Reports ) . " active " . ( count ( $Reports ) > 1 ? 'reports' : 'report' ) . " :</td></tr> " ;
foreach ( $Reports as $Report ) {
list ( $ReportID , $ReporterID , $ReportType , $ReportReason , $ReportedTime ) = $Report ;
$Reporter = user_info ( $ReporterID );
$ReporterName = $Reporter [ 'Username' ];
if ( array_key_exists ( $ReportType , $Types [ $GroupCategoryID ])) {
$ReportType = $Types [ $GroupCategoryID ][ $ReportType ];
} else if ( array_key_exists ( $ReportType , $Types [ 'master' ])) {
$ReportType = $Types [ 'master' ][ $ReportType ];
} else {
//There was a type but it wasn't an option!
$ReportType = $Types [ 'master' ][ 'other' ];
}
2011-08-22 08:00:05 +00:00
$ReportInfo .= " <tr><td> " . ( check_perms ( 'admin_reports' ) ? " <a href='user.php?id= $ReporterID '> $ReporterName </a> <a href='reportsv2.php?view=report&id= $ReportID '>reported it</a> " : " Someone reported it " ) . time_diff ( $ReportedTime , 2 , true , true ) . " for the reason ' " . $ReportType [ 'title' ] . " ': " ;
2011-03-28 14:21:28 +00:00
$ReportInfo .= " <blockquote> " . $Text -> full_format ( $ReportReason ) . " </blockquote></td></tr> " ;
}
$ReportInfo .= " </table> " ;
}
$CanEdit = ( check_perms ( 'torrents_edit' ) || (( $UserID == $LoggedUser [ 'ID' ] && ! $LoggedUser [ 'DisableWiki' ]) && ! ( $Remastered && ! $RemasterYear )));
$FileList = str_replace ( array ( '_' , '-' ), ' ' , $FileList );
$FileList = str_replace ( '|||' , '<tr><td>' , display_str ( $FileList ));
$FileList = preg_replace_callback ( '/\{\{\{([^\{]*)\}\}\}/i' , 'filelist' , $FileList );
$FileList = '<table style="overflow-x:auto;"><tr class="colhead_dark"><td><strong><div style="float: left; display: block;">File Name' . ( check_perms ( 'users_mod' ) ? ' [<a href="torrents.php?action=regen_filelist&torrentid=' . $TorrentID . '">Regenerate</a>]' : '' ) . '</div></strong><div style="float:right; display:block;">' . ( empty ( $FilePath ) ? '' : '/' . $FilePath . '/' ) . '</div></td><td><strong>Size</strong></td></tr><tr><td>' . $FileList . " </table> " ;
$ExtraInfo = '' ; // String that contains information on the torrent, eg. format and encoding
$AddExtra = '' ; // Separator between torrent properties
$TorrentUploader = $Username ; // Save this for "Uploaded by:" below
2011-09-04 08:00:07 +00:00
// similar to torrent_info()
2011-03-28 14:21:28 +00:00
if ( $Format ) { $ExtraInfo .= display_str ( $Format ); $AddExtra = ' / ' ; }
if ( $Encoding ) { $ExtraInfo .= $AddExtra . display_str ( $Encoding ); $AddExtra = ' / ' ; }
if ( $HasLog ) { $ExtraInfo .= $AddExtra . 'Log' ; $AddExtra = ' / ' ; }
if ( $HasLog && $LogInDB ) { $ExtraInfo .= ' (' . ( int ) $LogScore . '%)' ; }
if ( $HasCue ) { $ExtraInfo .= $AddExtra . 'Cue' ; $AddExtra = ' / ' ; }
if ( $Scene ) { $ExtraInfo .= $AddExtra . 'Scene' ; $AddExtra = ' / ' ; }
if ( ! $ExtraInfo ) {
$ExtraInfo = $GroupName ; $AddExtra = ' / ' ;
}
2011-04-13 15:36:33 +00:00
if ( $FreeTorrent == '1' ) { $ExtraInfo .= $AddExtra . '<strong>Freeleech!</strong>' ; $AddExtra = ' / ' ; }
if ( $FreeTorrent == '2' ) { $ExtraInfo .= $AddExtra . '<strong>Neutral Leech!</strong>' ; $AddExtra = ' / ' ; }
2011-10-08 08:00:14 +00:00
if ( in_array ( $TorrentID , $TokenTorrents )) { $ExtraInfo .= $AddExtra . '<strong>Personal Freeleech!</strong>' ; $AddExtra = ' / ' ; }
2011-03-28 14:21:28 +00:00
if ( $Reported ) { $ExtraInfo .= $AddExtra . '<strong>Reported</strong>' ; $AddExtra = ' / ' ; }
if ( ! empty ( $BadTags )) { $ExtraInfo .= $AddExtra . '<strong>Bad Tags</strong>' ; $AddExtra = ' / ' ; }
if ( ! empty ( $BadFolders )) { $ExtraInfo .= $AddExtra . '<strong>Bad Folders</strong>' ; $AddExtra = ' / ' ; }
2011-08-09 21:03:28 +00:00
if ( ! empty ( $CassetteApproved )) { $ExtraInfo .= $AddExtra . '<strong>Cassette Approved</strong>' ; $AddExtra = ' / ' ; }
2012-02-27 08:00:22 +00:00
if ( ! empty ( $LossymasterApproved )) { $ExtraInfo .= $AddExtra . '<strong>Lossy Master Approved</strong>' ; $AddExtra = ' / ' ; }
2012-05-31 08:00:14 +00:00
if ( ! empty ( $LossywebApproved )) { $ExtraInfo .= $AddExtra . '<strong>Lossy WEB Approved</strong>' ; $AddExtra = ' / ' ; }
2011-03-28 14:21:28 +00:00
if ( ! empty ( $BadFiles )) { $ExtraInfo .= $AddExtra . '<strong>Bad File Names</strong>' ; $AddExtra = ' / ' ; }
if ( $GroupCategoryID == 1
&& ( $RemasterTitle != $LastRemasterTitle
|| $RemasterYear != $LastRemasterYear
|| $RemasterRecordLabel != $LastRemasterRecordLabel
|| $RemasterCatalogueNumber != $LastRemasterCatalogueNumber
2011-09-04 08:00:07 +00:00
|| $FirstUnknown
|| $Media != $LastMedia )) {
$EditionID ++ ;
2011-03-28 14:21:28 +00:00
if ( $Remastered && $RemasterYear != 0 ){
$RemasterName = $RemasterYear ;
$AddExtra = " - " ;
if ( $RemasterRecordLabel ) { $RemasterName .= $AddExtra . display_str ( $RemasterRecordLabel ); $AddExtra = ' / ' ; }
if ( $RemasterCatalogueNumber ) { $RemasterName .= $AddExtra . display_str ( $RemasterCatalogueNumber ); $AddExtra = ' / ' ; }
if ( $RemasterTitle ) { $RemasterName .= $AddExtra . display_str ( $RemasterTitle ); $AddExtra = ' / ' ; }
2011-09-04 08:00:07 +00:00
$RemasterName .= $AddExtra . display_str ( $Media );
2011-03-28 14:21:28 +00:00
?>
2011-09-04 08:00:07 +00:00
< tr class = " releases_<?= $ReleaseType ?> groupid_<?= $GroupID ?> edition group_torrent " >
< td colspan = " 5 " class = " edition_info " >< strong >< a href = " # " onclick = " toggle_edition(<?= $GroupID ?>, <?= $EditionID ?>, this, event) " title = " Collapse this edition " >& minus ; </ a > < ? = $RemasterName ?> </strong></td>
2011-03-28 14:21:28 +00:00
</ tr >
< ?
} else {
2011-09-05 08:00:07 +00:00
$AddExtra = " / " ;
2011-03-28 14:21:28 +00:00
if ( ! $Remastered ) {
$MasterName = " Original Release " ;
if ( $GroupRecordLabel ) { $MasterName .= $AddExtra . $GroupRecordLabel ; $AddExtra = ' / ' ; }
if ( $GroupCatalogueNumber ) { $MasterName .= $AddExtra . $GroupCatalogueNumber ; $AddExtra = ' / ' ; }
2011-09-05 08:00:07 +00:00
} else {
$MasterName = " Unknown Release(s) " ;
}
$MasterName .= $AddExtra . display_str ( $Media );
2011-03-28 14:21:28 +00:00
?>
2011-09-04 08:00:07 +00:00
< tr class = " releases_<?= $ReleaseType ?> groupid_<?= $GroupID ?> edition group_torrent " >
< td colspan = " 5 " class = " edition_info " >< strong >< a href = " # " onclick = " toggle_edition(<?= $GroupID ?>, <?= $EditionID ?>, this, event) " title = " Collapse this edition " >& minus ; </ a > < ? = $MasterName ?> </strong></td>
2011-03-28 14:21:28 +00:00
</ tr >
< ?
}
}
$LastRemasterTitle = $RemasterTitle ;
$LastRemasterYear = $RemasterYear ;
$LastRemasterRecordLabel = $RemasterRecordLabel ;
$LastRemasterCatalogueNumber = $RemasterCatalogueNumber ;
2011-09-04 08:00:07 +00:00
$LastMedia = $Media ;
2011-03-28 14:21:28 +00:00
?>
2011-09-04 08:00:07 +00:00
< tr class = " releases_<?= $ReleaseType ?> groupid_<?= $GroupID ?> edition_<?= $EditionID ?> group_torrent " style = " font-weight: normal; " id = " torrent<?= $TorrentID ?> " >
2011-03-28 14:21:28 +00:00
< td >
2011-10-29 08:00:15 +00:00
< span > [ < a href = " torrents.php?action=download&id=<?= $TorrentID ?>&authkey=<?= $LoggedUser['AuthKey'] ?>&torrent_pass=<?= $LoggedUser['torrent_pass'] ?> " title = " Download " >< ? = $HasFile ? 'DL' : 'Missing' ?> </a>
2011-10-08 08:00:14 +00:00
< ? if (( $LoggedUser [ 'FLTokens' ] > 0 ) && $HasFile && ( $Size < 1073741824 )
&& ! in_array ( $TorrentID , $TokenTorrents ) && ( $FreeTorrent == '0' ) && ( $LoggedUser [ 'CanLeech' ] == '1' )) { ?>
2012-05-18 13:35:17 +00:00
| < a href = " torrents.php?action=download&id=<?= $TorrentID ?>&authkey=<?= $LoggedUser['AuthKey'] ?>&torrent_pass=<?= $LoggedUser['torrent_pass'] ?>&usetoken=1 " title = " Use a FL Token " onClick = " return confirm('Are you sure you want to use a freeleech token here?'); " > FL </ a >
2011-10-29 08:00:15 +00:00
< ? } ?>
2011-03-28 14:21:28 +00:00
| < a href = " reportsv2.php?action=report&id=<?= $TorrentID ?> " title = " Report " > RP </ a >
< ? if ( $CanEdit ) { ?>
| < a href = " torrents.php?action=edit&id=<?= $TorrentID ?> " title = " Edit " > ED </ a >
< ? } ?>
< ? if ( check_perms ( 'torrents_delete' ) || $UserID == $LoggedUser [ 'ID' ]) { ?>
| < a href = " torrents.php?action=delete&torrentid=<?= $TorrentID ?> " title = " Remove " > RM </ a >
< ? } ?>
| < a href = " torrents.php?torrentid=<?= $TorrentID ?> " title = " Permalink " > PL </ a >
] </ span >
2011-09-09 08:00:12 +00:00
& raquo ; < a href = " # " onclick = " $ ('#torrent_<?= $TorrentID ?>').toggle(); return false; " >< ? = $ExtraInfo ; ?> </a>
2011-03-28 14:21:28 +00:00
</ td >
< td class = " nobr " >< ? = get_size ( $Size ) ?> </td>
< td >< ? = number_format ( $Snatched ) ?> </td>
< td >< ? = number_format ( $Seeders ) ?> </td>
< td >< ? = number_format ( $Leechers ) ?> </td>
</ tr >
2011-09-04 08:00:07 +00:00
< tr class = " releases_<?= $ReleaseType ?> groupid_<?= $GroupID ?> edition_<?= $EditionID ?> torrentdetails pad <? if(!isset( $_GET['torrentid'] ) || $_GET['torrentid'] != $TorrentID ) { ?>hidden<? } ?> " id = " torrent_<?= $TorrentID ; ?> " >
2011-03-28 14:21:28 +00:00
< td colspan = " 5 " >
< blockquote >
2012-03-28 08:00:20 +00:00
Uploaded by < ? = format_username ( $UserID , false , false , false ) ?> <?=time_diff($TorrentTime);?>
2011-03-28 14:21:28 +00:00
< ? if ( $Seeders == 0 ){ ?>
< ?
if ( $LastActive != '0000-00-00 00:00:00' && time () - strtotime ( $LastActive ) >= 1209600 ) { ?>
< br />< strong > Last active : < ? = time_diff ( $LastActive ); ?> </strong>
< ? } else { ?>
< br /> Last active : < ? = time_diff ( $LastActive ); ?>
< ? } ?>
< ?
if ( $LastActive != '0000-00-00 00:00:00' && time () - strtotime ( $LastActive ) >= 345678 && time () - strtotime ( $LastReseedRequest ) >= 864000 ) { ?>
< br />< a href = " torrents.php?action=reseed&torrentid=<?= $TorrentID ?>&groupid=<?= $GroupID ?> " > [ Request re - seed ] </ a >
< ? } ?>
< ? } ?>
</ blockquote >
< ? if ( check_perms ( 'site_moderate_requests' )) { ?>
< div class = " linkbox " >
< a href = " torrents.php?action=masspm&id=<?= $GroupID ?>&torrentid=<?= $TorrentID ?> " > [ Mass PM Snatchers ] </ a >
</ div >
< ? } ?>
< div class = " linkbox " >
< a href = " # " onclick = " show_peers('<?= $TorrentID ?>', 0);return false; " > ( View Peerlist ) </ a >
< ? if ( check_perms ( 'site_view_torrent_snatchlist' )) { ?>
< a href = " # " onclick = " show_downloads('<?= $TorrentID ?>', 0);return false; " > ( View Downloadlist ) </ a >
< a href = " # " onclick = " show_snatches('<?= $TorrentID ?>', 0);return false; " > ( View Snatchlist ) </ a >
< ? } ?>
2012-06-08 08:00:23 +00:00
< a href = " # " onclick = " show_files('<?= $TorrentID ?>');return false; " > ( View Filelist ) </ a >
2011-03-28 14:21:28 +00:00
< ? if ( $Reported ) { ?>
< a href = " # " onclick = " show_reported('<?= $TorrentID ?>');return false; " > ( View Report Information ) </ a >
< ? } ?>
</ div >
< div id = " peers_<?= $TorrentID ?> " class = " hidden " ></ div >
< div id = " downloads_<?= $TorrentID ?> " class = " hidden " ></ div >
< div id = " snatches_<?= $TorrentID ?> " class = " hidden " ></ div >
< div id = " files_<?= $TorrentID ?> " class = " hidden " >< ? = $FileList ?> </div>
< ? if ( $Reported ) { ?>
< div id = " reported_<?= $TorrentID ?> " class = " hidden " >< ? = $ReportInfo ?> </div>
< ? } ?>
< ? if ( ! empty ( $Description )) {
echo '<blockquote>' . $Text -> full_format ( $Description ) . '</blockquote>' ;}
?>
</ td >
</ tr >
< ? } ?>
</ table >
< ?
2012-02-03 08:00:22 +00:00
$Requests = get_group_requests ( $GroupID );
if ( count ( $Requests ) > 0 ) {
$i = 0 ;
?>
< div class = " box " >
< div class = " head " >< span style = " font-weight: bold; " > Requests ( < ? = count ( $Requests ) ?> )</span> <span style="float:right;"><a href="#" onClick="$('#requests').toggle(); this.innerHTML=(this.innerHTML=='(Hide)'?'(Show)':'(Hide)'); return false;">(Show)</a></span></div>
< table id = " requests " class = " hidden " >
< tr class = " colhead " >
< td > Format / Bitrate / Media </ td >
< td > Votes </ td >
< td > Bounty </ td >
</ tr >
< ? foreach ( $Requests as $Request ) {
$RequestVotes = get_votes_array ( $Request [ 'ID' ]);
if ( $Request [ 'BitrateList' ] != " " ) {
$BitrateString = implode ( " , " , explode ( " | " , $Request [ 'BitrateList' ]));
$FormatString = implode ( " , " , explode ( " | " , $Request [ 'FormatList' ]));
$MediaString = implode ( " , " , explode ( " | " , $Request [ 'MediaList' ]));
2012-02-07 08:00:20 +00:00
if ( $Request [ 'LogCue' ]) {
$FormatString .= ' - ' . $Request [ 'LogCue' ];
}
2012-02-03 08:00:22 +00:00
} else {
$BitrateString = " Unknown " ;
$FormatString = " Unknown " ;
$MediaString = " Unknown " ;
}
?>
< tr class = " requestrows <?=(++ $i %2?'rowa':'rowb')?> " >
< td >< a href = " requests.php?action=view&id=<?= $Request['ID'] ?> " >< ? = $FormatString ?> / <?=$BitrateString?> / <?=$MediaString?></a></td>
< td >
< form id = " form_<?= $Request['ID'] ?> " >
< span id = " vote_count_<?= $Request['ID'] ?> " >< ? = count ( $RequestVotes [ 'Voters' ]) ?> </span>
< input type = " hidden " id = " requestid_<?= $Request['ID'] ?> " name = " requestid " value = " <?= $Request['ID'] ?> " />
< input type = " hidden " id = " auth " name = " auth " value = " <?= $LoggedUser['AuthKey'] ?> " />
& nbsp ; & nbsp ; < a href = " javascript:Vote(0, <?= $Request['ID'] ?>) " >< strong > ( + ) </ strong ></ a >
</ form >
</ td >
< td >< ? = get_size ( $RequestVotes [ 'TotalBounty' ]) ?> </td>
</ tr >
< ? } ?>
</ table >
</ div >
< ?
}
2011-03-28 14:21:28 +00:00
$Collages = $Cache -> get_value ( 'torrent_collages_' . $GroupID );
if ( ! is_array ( $Collages )) {
$DB -> query ( " SELECT c.Name, c.NumTorrents, c.ID FROM collages AS c JOIN collages_torrents AS ct ON ct.CollageID=c.ID WHERE ct.GroupID=' $GroupID ' AND Deleted='0' AND CategoryID!='0' " );
$Collages = $DB -> to_array ();
$Cache -> cache_value ( 'torrent_collages_' . $GroupID , $Collages , 3600 * 6 );
}
if ( count ( $Collages ) > 0 ) {
?>
< table id = " collages " >
< tr class = " colhead " >
< td width = " 85% " > Collage name </ td >
< td > # torrents</td>
</ tr >
< ? foreach ( $Collages as $Collage ) {
list ( $CollageName , $CollageTorrents , $CollageID ) = $Collage ;
?>
< tr >
< td >< a href = " collages.php?id=<?= $CollageID ?> " >< ? = $CollageName ?> </a></td>
< td >< ? = $CollageTorrents ?> </td>
</ tr >
< ? } ?>
</ table >
< ?
}
2012-02-20 08:00:22 +00:00
$PersonalCollages = $Cache -> get_value ( 'torrent_collages_personal_' . $GroupID );
if ( ! is_array ( $PersonalCollages )) {
$DB -> query ( " SELECT c.Name, c.NumTorrents, c.ID FROM collages AS c JOIN collages_torrents AS ct ON ct.CollageID=c.ID WHERE ct.GroupID=' $GroupID ' AND Deleted='0' AND CategoryID='0' " );
2012-03-29 08:00:19 +00:00
$PersonalCollages = $DB -> to_array ( false , MYSQLI_NUM );
2012-02-20 08:00:22 +00:00
$Cache -> cache_value ( 'torrent_collages_personal_' . $GroupID , $PersonalCollages , 3600 * 6 );
}
if ( count ( $PersonalCollages ) > 0 ) {
if ( count ( $PersonalCollages ) > MAX_PERS_COLLAGES ) {
// Pick 5 at random
$Range = range ( 0 , count ( $PersonalCollages ) - 1 );
shuffle ( $Range );
$Indices = array_slice ( $Range , 0 , MAX_PERS_COLLAGES );
$SeeAll = ' <a href="#" onClick="$(\'.personal_rows\').toggle(); return false;">(See all)</a>' ;
} else {
$Indices = range ( 0 , count ( $PersonalCollages ) - 1 );
$SeeAll = '' ;
}
?>
< table id = " personal_collages " >
< tr class = " colhead " >
< td width = " 85% " > This album is in < ? = count ( $PersonalCollages ) ?> personal collage<?=((count($PersonalCollages)>1)?'s':'')?><?=$SeeAll?></td>
< td > # torrents</td>
</ tr >
< ? foreach ( $Indices as $i ) {
list ( $CollageName , $CollageTorrents , $CollageID ) = $PersonalCollages [ $i ];
unset ( $PersonalCollages [ $i ]);
?>
< tr >
< td >< a href = " collages.php?id=<?= $CollageID ?> " >< ? = $CollageName ?> </a></td>
< td >< ? = $CollageTorrents ?> </td>
</ tr >
< ? }
foreach ( $PersonalCollages as $Collage ) {
list ( $CollageName , $CollageTorrents , $CollageID ) = $Collage ;
?>
< tr class = " personal_rows hidden " >
< td >< a href = " collages.php?id=<?= $CollageID ?> " >< ? = $CollageName ?> </a></td>
< td >< ? = $CollageTorrents ?> </td>
</ tr >
< ? } ?>
</ table >
< ?
}
2011-03-28 14:21:28 +00:00
?>
< div class = " box " >
< div class = " head " >< strong >< ? = ( ! empty ( $ReleaseType ) ? $ReleaseTypes [ $ReleaseType ] . ' info' : 'Info' ) ?> </strong></div>
< div class = " body " >< ? if ( $WikiBody != " " ) { echo $WikiBody ; } else { echo " There is no information on this torrent. " ; } ?> </div>
</ div >
< ?
$Results = $Cache -> get_value ( 'torrent_comments_' . $GroupID );
if ( $Results === false ) {
$DB -> query ( " SELECT
COUNT ( c . ID )
FROM torrents_comments as c
WHERE c . GroupID = '$GroupID' " );
list ( $Results ) = $DB -> next_record ();
$Cache -> cache_value ( 'torrent_comments_' . $GroupID , $Results , 0 );
}
if ( isset ( $_GET [ 'postid' ]) && is_number ( $_GET [ 'postid' ]) && $Results > TORRENT_COMMENTS_PER_PAGE ) {
$DB -> query ( " SELECT COUNT(ID) FROM torrents_comments WHERE GroupID = $GroupID AND ID <= $_GET[postid] " );
list ( $PostNum ) = $DB -> next_record ();
list ( $Page , $Limit ) = page_limit ( TORRENT_COMMENTS_PER_PAGE , $PostNum );
} else {
list ( $Page , $Limit ) = page_limit ( TORRENT_COMMENTS_PER_PAGE , $Results );
}
//Get the cache catalogue
$CatalogueID = floor (( TORRENT_COMMENTS_PER_PAGE * $Page - TORRENT_COMMENTS_PER_PAGE ) / THREAD_CATALOGUE );
$CatalogueLimit = $CatalogueID * THREAD_CATALOGUE . ', ' . THREAD_CATALOGUE ;
//---------- Get some data to start processing
// Cache catalogue from which the page is selected, allows block caches and future ability to specify posts per page
$Catalogue = $Cache -> get_value ( 'torrent_comments_' . $GroupID . '_catalogue_' . $CatalogueID );
if ( $Catalogue === false ) {
$DB -> query ( " SELECT
c . ID ,
c . AuthorID ,
c . AddedTime ,
c . Body ,
c . EditedUserID ,
c . EditedTime ,
u . Username
FROM torrents_comments as c
LEFT JOIN users_main AS u ON u . ID = c . EditedUserID
WHERE c . GroupID = '$GroupID'
ORDER BY c . ID
LIMIT $CatalogueLimit " );
$Catalogue = $DB -> to_array ( false , MYSQLI_ASSOC );
$Cache -> cache_value ( 'torrent_comments_' . $GroupID . '_catalogue_' . $CatalogueID , $Catalogue , 0 );
}
//This is a hybrid to reduce the catalogue down to the page elements: We use the page limit % catalogue
$Thread = array_slice ( $Catalogue ,(( TORRENT_COMMENTS_PER_PAGE * $Page - TORRENT_COMMENTS_PER_PAGE ) % THREAD_CATALOGUE ), TORRENT_COMMENTS_PER_PAGE , true );
?>
< div class = " linkbox " >< a name = " comments " ></ a >
< ?
$Pages = get_pages ( $Page , $Results , TORRENT_COMMENTS_PER_PAGE , 9 , '#comments' );
echo $Pages ;
?>
</ div >
< ?
//---------- Begin printing
foreach ( $Thread as $Key => $Post ){
list ( $PostID , $AuthorID , $AddedTime , $Body , $EditedUserID , $EditedTime , $EditedUsername ) = array_values ( $Post );
list ( $AuthorID , $Username , $PermissionID , $Paranoia , $Artist , $Donor , $Warned , $Avatar , $Enabled , $UserTitle ) = array_values ( user_info ( $AuthorID ));
?>
< table class = " forum_post box vertical_margin<?= $HeavyInfo['DisableAvatars'] ? ' noavatar' : ''?> " id = " post<?= $PostID ?> " >
< tr class = " colhead_dark " >
< td colspan = " 2 " >
< span style = " float:left; " >< a class = " post_id " href = 'torrents.php?id=<?=$GroupID?>&postid=<?=$PostID?>#post<?=$PostID?>' > #<?=$PostID?></a>
2012-03-28 08:00:20 +00:00
< strong >< ? = format_username ( $AuthorID , true , true , true , true ) ?> </strong> <?=time_diff($AddedTime)?> <a href="reports.php?action=report&type=torrents_comment&id=<?=$PostID?>">[Report]</a>
2011-03-28 14:21:28 +00:00
- < a href = " #quickpost " onclick = " Quote('<?= $PostID ?>','<?= $Username ?>'); " > [ Quote ] </ a >
< ? if ( $AuthorID == $LoggedUser [ 'ID' ] || check_perms ( 'site_moderate_forums' )){ ?> - <a href="#post<?=$PostID?>" onclick="Edit_Form('<?=$PostID?>','<?=$Key?>');">[Edit]</a><? }
if ( check_perms ( 'site_moderate_forums' )){ ?> - <a href="#post<?=$PostID?>" onclick="Delete('<?=$PostID?>');">[Delete]</a> <? } ?>
</ span >
< span id = " bar<?= $PostID ?> " style = " float:right; " >
< a href = " # " >& uarr ; </ a >
</ span >
</ td >
</ tr >
< tr >
< ? if ( empty ( $HeavyInfo [ 'DisableAvatars' ])) { ?>
< td class = " avatar " valign = " top " >
< ? if ( $Avatar ) { ?>
< img src = " <?= $Avatar ?> " width = " 150 " alt = " <?= $Username ?>'s avatar " />
< ? } else { ?>
< img src = " <?=STATIC_SERVER?>common/avatars/default.png " width = " 150 " alt = " Default avatar " />
< ?
}
?>
</ td >
< ?
}
?>
< td class = " body " valign = " top " >
< div id = " content<?= $PostID ?> " >
< ? = $Text -> full_format ( $Body ) ?>
< ? if ( $EditedUserID ){ ?>
< br />
< br />
2012-01-11 08:00:20 +00:00
< ? if ( check_perms ( 'site_admin_forums' )) { ?>
2011-03-28 14:21:28 +00:00
< a href = " #content<?= $PostID ?> " onclick = " LoadEdit('torrents', <?= $PostID ?>, 1); return false; " >& laquo ; </ a >
< ? } ?>
Last edited by
2012-03-28 08:00:20 +00:00
< ? = format_username ( $EditedUserID , false , false , false ) ?> <?=time_diff($EditedTime,2,true,true)?>
2011-03-28 14:21:28 +00:00
< ? } ?>
</ div >
</ td >
</ tr >
</ table >
< ? } ?>
< div class = " linkbox " >
< ? = $Pages ?>
</ div >
< ?
if ( ! $LoggedUser [ 'DisablePosting' ]) { ?>
< br />
< h3 > Post reply </ h3 >
< div class = " box pad " >
< table id = " quickreplypreview " class = " forum_post box vertical_margin hidden " style = " text-align:left; " >
< tr class = " colhead_dark " >
< td colspan = " 2 " >
< span style = " float:left; " >< a href = '#quickreplypreview' > #XXXXXX</a>
2012-03-28 08:00:20 +00:00
by < strong >< ? = format_username ( $LoggedUser [ 'ID' ], true , true , true , true ) ?> </strong> Just now
2011-03-28 14:21:28 +00:00
< a href = " #quickreplypreview " > [ Report Comment ] </ a >
</ span >
< span id = " barpreview " style = " float:right; " >
< a href = " # " >& uarr ; </ a >
</ span >
</ td >
</ tr >
< tr >
< td class = " avatar " valign = " top " >
< ? if ( ! empty ( $LoggedUser [ 'Avatar' ])) { ?>
< img src = " <?= $LoggedUser['Avatar'] ?> " width = " 150 " alt = " <?= $LoggedUser['Username'] ?>'s avatar " />
< ? } else { ?>
< img src = " <?=STATIC_SERVER?>common/avatars/default.png " width = " 150 " alt = " Default avatar " />
< ? } ?>
</ td >
< td class = " body " valign = " top " >
< div id = " contentpreview " style = " text-align:left; " ></ div >
</ td >
</ tr >
</ table >
2012-04-08 08:00:25 +00:00
< form id = " quickpostform " action = " " onsubmit = " quickpostform.submit_button.disabled=true; " method = " post " style = " display: block; text-align: center; " >
2011-03-28 14:21:28 +00:00
< div id = " quickreplytext " >
< input type = " hidden " name = " action " value = " reply " />
< input type = " hidden " name = " auth " value = " <?= $LoggedUser['AuthKey'] ?> " />
< input type = " hidden " name = " groupid " value = " <?= $GroupID ?> " />
< textarea id = " quickpost " name = " body " cols = " 70 " rows = " 8 " ></ textarea > < br />
</ div >
< input id = " post_preview " type = " button " value = " Preview " onclick = " if(this.preview) { Quick_Edit();}else { Quick_Preview();} " />
2012-04-08 08:00:25 +00:00
< input type = " submit " id = " submit_button " value = " Post reply " />
2011-03-28 14:21:28 +00:00
</ form >
</ div >
< ? } ?>
</ div >
</ div >
< ?
show_footer ();
?>