2020-12-26 01:42:23 +08:00
<? php
ob_start (); //Do not delete this line
2021-01-13 19:32:26 +08:00
require_once ( "../include/bittorrent.php" );
2020-12-26 01:42:23 +08:00
dbconn ();
require_once ( get_langfile_path ());
loggedinorreturn ();
2021-01-06 00:56:13 +08:00
$id = intval ( $_GET [ "id" ] ?? 0 );
2021-03-04 20:43:55 +08:00
$customField = new \Nexus\Field\Field ();
2020-12-26 01:42:23 +08:00
int_check ( $id );
if ( ! isset ( $id ) || ! $id )
die ();
2021-12-14 16:22:03 +08:00
$res = sql_query ( "SELECT torrents.cache_stamp, torrents.sp_state, torrents.url, torrents.small_descr, torrents.seeders, torrents.banned, torrents.leechers, torrents.info_hash, torrents.filename, nfo, LENGTH(torrents.nfo) AS nfosz, torrents.last_action, torrents.name, torrents.owner, torrents.save_as, torrents.descr, torrents.visible, torrents.size, torrents.added, torrents.views, torrents.hits, torrents.times_completed, torrents.id, torrents.type, torrents.numfiles, torrents.anonymous, torrents.pt_gen, torrents.technical_info, torrents.hr, torrents.promotion_until, torrents.promotion_time_type,
2021-05-29 18:26:04 +08:00
categories.name AS cat_name, categories.mode as search_box_id, sources.name AS source_name, media.name AS medium_name, codecs.name AS codec_name, standards.name AS standard_name, processings.name AS processing_name, teams.name AS team_name, audiocodecs.name AS audiocodec_name
FROM torrents LEFT JOIN categories ON torrents.category = categories.id
LEFT JOIN sources ON torrents.source = sources.id
LEFT JOIN media ON torrents.medium = media.id
LEFT JOIN codecs ON torrents.codec = codecs.id
LEFT JOIN standards ON torrents.standard = standards.id
LEFT JOIN processings ON torrents.processing = processings.id
LEFT JOIN teams ON torrents.team = teams.id
LEFT JOIN audiocodecs ON torrents.audiocodec = audiocodecs.id
WHERE torrents.id = $id LIMIT 1" )
2020-12-26 01:42:23 +08:00
or sqlerr ();
$row = mysql_fetch_array ( $res );
if ( get_user_class () >= $torrentmanage_class || $CURUSER [ "id" ] == $row [ "owner" ])
$owned = 1 ;
else $owned = 0 ;
2021-03-16 23:28:37 +08:00
$settingMain = get_setting ( 'main' );
2021-05-29 18:26:04 +08:00
if ( ! $row ) {
stderr ( $lang_details [ 'std_error' ], $lang_details [ 'std_no_torrent_id' ]);
} elseif (
( $row [ 'banned' ] == 'yes' && get_user_class () < $seebanned_class )
|| ! can_access_torrent ( $row )
) {
permissiondenied ();
} else {
2022-01-19 23:54:55 +08:00
$owner = \App\Models\User :: query () -> with ([ 'valid_medals' ]) -> findOrFail ( $row [ 'owner' ]);
2021-06-02 08:44:22 +08:00
$torrentRep = new \App\Repositories\TorrentRepository ();
2021-01-18 00:41:35 +08:00
$torrentUpdate = [];
2020-12-29 21:49:37 +08:00
if ( ! empty ( $_GET [ "hit" ])) {
2021-01-18 00:41:35 +08:00
$torrentUpdate [] = 'views = views + 1' ;
2020-12-26 01:42:23 +08:00
}
2021-01-18 19:45:33 +08:00
$imdb_id = parse_imdb_id ( $row [ "url" ]);
if ( $imdb_id && $showextinfo [ 'imdb' ] == 'yes' ) {
$imdb = new \Nexus\Imdb\Imdb ();
$movie = $imdb -> getMovie ( $imdb_id );
}
2020-12-26 01:42:23 +08:00
if ( ! isset ( $_GET [ "cmtpage" ])) {
stdhead ( $lang_details [ 'head_details_for_torrent' ] . " \" " . $row [ "name" ] . " \" " );
2020-12-29 21:49:37 +08:00
if ( ! empty ( $_GET [ "uploaded" ]))
2020-12-26 01:42:23 +08:00
{
print ( "<h1 align= \" center \" >" . $lang_details [ 'text_successfully_uploaded' ] . "</h1>" );
print ( "<p>" . $lang_details [ 'text_redownload_torrent_note' ] . "</p>" );
header ( "refresh: 1; url=download.php?id= $id " );
//header("refresh: 1; url=getimdb.php?id=$id&type=1");
}
2020-12-29 21:49:37 +08:00
elseif ( ! empty ( $_GET [ "edited" ])) {
2020-12-26 01:42:23 +08:00
print ( "<h1 align= \" center \" >" . $lang_details [ 'text_successfully_edited' ] . "</h1>" );
if ( isset ( $_GET [ "returnto" ]))
print ( "<p><b>" . $lang_details [ 'text_go_back' ] . "<a href= \" " . htmlspecialchars ( $_GET [ "returnto" ]) . " \" >" . $lang_details [ 'text_whence_you_came' ] . "</a></b></p>" );
}
2020-12-29 21:49:37 +08:00
$sp_torrent = get_torrent_promotion_append ( $row [ 'sp_state' ], 'word' );
2021-06-23 20:20:34 +08:00
$sp_torrent_sub = get_torrent_promotion_append_sub ( $row [ 'sp_state' ], "" , true , $row [ 'added' ], $row [ 'promotion_time_type' ], $row [ 'promotion_until' ]);
2021-06-21 02:01:26 +08:00
$hrImg = get_hr_img ( $row );
2021-06-23 20:20:34 +08:00
$s = htmlspecialchars ( $row [ "name" ]) . ( $sp_torrent ? " " . $sp_torrent : "" ) . ( $sp_torrent_sub ) . $hrImg ;
2020-12-26 01:42:23 +08:00
print ( "<h1 align= \" center \" id= \" top \" >" . $s . "</h1> \n " );
2021-05-26 21:38:39 +08:00
print ( "<table width= \" 97% \" cellspacing= \" 0 \" cellpadding= \" 5 \" > \n " );
2020-12-26 01:42:23 +08:00
$url = "edit.php?id=" . $row [ "id" ];
if ( isset ( $_GET [ "returnto" ])) {
$url .= "&returnto=" . rawurlencode ( $_GET [ "returnto" ]);
}
$editlink = "a title= \" " . $lang_details [ 'title_edit_torrent' ] . " \" href= \" $url \" " ;
// ------------- start upped by block ------------------//
if ( $row [ 'anonymous' ] == 'yes' ) {
if ( get_user_class () < $viewanonymous_class )
$uprow = "<i>" . $lang_details [ 'text_anonymous' ] . "</i>" ;
else
2022-01-19 23:54:55 +08:00
$uprow = "<i>" . $lang_details [ 'text_anonymous' ] . "</i> (" . build_medal_image ( $owner -> valid_medals , 20 ) . get_username ( $row [ 'owner' ], false , true , true , false , false , true ) . ")" ;
2020-12-26 01:42:23 +08:00
}
else {
2022-01-19 23:54:55 +08:00
$uprow = ( isset ( $row [ 'owner' ]) ? build_medal_image ( $owner -> valid_medals , 20 ) . get_username ( $row [ 'owner' ], false , true , true , false , false , true ) : "<i>" . $lang_details [ 'text_unknown' ] . "</i>" );
2020-12-26 01:42:23 +08:00
}
if ( $CURUSER [ "id" ] == $row [ "owner" ])
$CURUSER [ "downloadpos" ] = "yes" ;
if ( $CURUSER [ "downloadpos" ] != "no" )
{
print ( "<tr><td class= \" rowhead \" width= \" 13% \" >" . $lang_details [ 'row_download' ] . "</td><td class= \" rowfollow \" width= \" 87% \" align= \" left \" >" );
if ( $CURUSER [ 'timetype' ] != 'timealive' )
$uploadtime = $lang_details [ 'text_at' ] . $row [ 'added' ];
else $uploadtime = $lang_details [ 'text_blank' ] . gettime ( $row [ 'added' ], true , false );
print ( "<a class= \" index \" href= \" download.php?id= $id \" >" . htmlspecialchars ( $torrentnameprefix . "." . $row [ "save_as" ]) . ".torrent</a> <a id= \" bookmark0 \" href= \" javascript: bookmark(" . $row [ 'id' ] . ",0); \" >" . get_torrent_bookmark_state ( $CURUSER [ 'id' ], $row [ 'id' ], false ) . "</a> " . $lang_details [ 'row_upped_by' ] . " " . $uprow . $uploadtime );
print ( "</td></tr>" );
}
else
tr ( $lang_details [ 'row_download' ], $lang_details [ 'text_downloading_not_allowed' ]);
if ( $smalldescription_main == 'yes' )
tr ( $lang_details [ 'row_small_description' ], htmlspecialchars ( trim ( $row [ "small_descr" ])), true );
$size_info = "<b>" . $lang_details [ 'text_size' ] . "</b>" . mksize ( $row [ "size" ]);
$type_info = " <b>" . $lang_details [ 'row_type' ] . ":</b> " . $row [ "cat_name" ];
2020-12-29 21:49:37 +08:00
$source_info = $medium_info = $codec_info = $audiocodec_info = $standard_info = $processing_info = $team_info = '' ;
2020-12-26 01:42:23 +08:00
if ( isset ( $row [ "source_name" ]))
2020-12-29 21:49:37 +08:00
$source_info = " <b>" . $lang_details [ 'text_source' ] . " </b>" . $row [ 'source_name' ];
2020-12-26 01:42:23 +08:00
if ( isset ( $row [ "medium_name" ]))
2020-12-29 21:49:37 +08:00
$medium_info = " <b>" . $lang_details [ 'text_medium' ] . " </b>" . $row [ 'medium_name' ];
2020-12-26 01:42:23 +08:00
if ( isset ( $row [ "codec_name" ]))
2020-12-29 21:49:37 +08:00
$codec_info = " <b>" . $lang_details [ 'text_codec' ] . " </b>" . $row [ 'codec_name' ];
2020-12-26 01:42:23 +08:00
if ( isset ( $row [ "standard_name" ]))
2020-12-29 21:49:37 +08:00
$standard_info = " <b>" . $lang_details [ 'text_stardard' ] . " </b>" . $row [ 'standard_name' ];
2020-12-26 01:42:23 +08:00
if ( isset ( $row [ "processing_name" ]))
2020-12-29 21:49:37 +08:00
$processing_info = " <b>" . $lang_details [ 'text_processing' ] . " </b>" . $row [ 'processing_name' ];
2020-12-26 01:42:23 +08:00
if ( isset ( $row [ "team_name" ]))
2020-12-29 21:49:37 +08:00
$team_info = " <b>" . $lang_details [ 'text_team' ] . " </b>" . $row [ 'team_name' ];
2020-12-26 01:42:23 +08:00
if ( isset ( $row [ "audiocodec_name" ]))
2020-12-29 21:49:37 +08:00
$audiocodec_info = " <b>" . $lang_details [ 'text_audio_codec' ] . " </b>" . $row [ 'audiocodec_name' ];
2020-12-26 01:42:23 +08:00
tr ( $lang_details [ 'row_basic_info' ], $size_info . $type_info . $source_info . $medium_info . $codec_info . $audiocodec_info . $standard_info . $processing_info . $team_info , 1 );
if ( $CURUSER [ "downloadpos" ] != "no" )
$download = "<a title= \" " . $lang_details [ 'title_download_torrent' ] . " \" href= \" download.php?id=" . $id . " \" ><img class= \" dt_download \" src= \" pic/trans.gif \" alt= \" download \" /> <b><font class= \" small \" >" . $lang_details [ 'text_download_torrent' ] . "</font></b></a> | " ;
else $download = "" ;
2020-12-29 21:49:37 +08:00
tr ( $lang_details [ 'row_action' ], $download . ( $owned == 1 ? "< $editlink ><img class= \" dt_edit \" src= \" pic/trans.gif \" alt= \" edit \" /> <b><font class= \" small \" >" . $lang_details [ 'text_edit_torrent' ] . "</font></b></a> | " : "" ) . ( get_user_class () >= $askreseed_class && $row [ 'seeders' ] == 0 ? "<a title= \" " . $lang_details [ 'title_ask_for_reseed' ] . " \" href= \" takereseed.php?reseedid= $id \" ><img class= \" dt_reseed \" src= \" pic/trans.gif \" alt= \" reseed \" > <b><font class= \" small \" >" . $lang_details [ 'text_ask_for_reseed' ] . "</font></b></a> | " : "" ) . "<a title= \" " . $lang_details [ 'title_report_torrent' ] . " \" href= \" report.php?torrent= $id \" ><img class= \" dt_report \" src= \" pic/trans.gif \" alt= \" report \" /> <b><font class= \" small \" >" . $lang_details [ 'text_report_torrent' ] . "</font></b></a>" , 1 );
2021-06-02 19:01:28 +08:00
tr ( $lang_details [ 'torrent_dl_url' ], sprintf ( '<a title="%s" href="%s/download.php?downhash=%s|%s">%s</a>' , $lang_details [ 'torrent_dl_url_notice' ], getSchemeAndHttpHost (), $CURUSER [ 'id' ], $torrentRep -> encryptDownHash ( $row [ 'id' ], $CURUSER ), $lang_details [ 'torrent_dl_url_text' ]), 1 );
2020-12-26 01:42:23 +08:00
// ---------------- start subtitle block -------------------//
$r = sql_query ( "SELECT subs.*, language.flagpic, language.lang_name FROM subs LEFT JOIN language ON subs.lang_id=language.id WHERE torrent_id = " . sqlesc ( $row [ "id" ]) . " ORDER BY subs.lang_id ASC" ) or sqlerr ( __FILE__ , __LINE__ );
print ( "<tr><td class= \" rowhead \" valign= \" top \" >" . $lang_details [ 'row_subtitles' ] . "</td>" );
print ( "<td class= \" rowfollow \" align= \" left \" valign= \" top \" >" );
print ( "<table border= \" 0 \" cellspacing= \" 0 \" >" );
if ( mysql_num_rows ( $r ) > 0 )
{
while ( $a = mysql_fetch_assoc ( $r ))
{
$lang = "<tr><td class= \" embedded \" ><img border= \" 0 \" src= \" pic/flag/" . $a [ "flagpic" ] . " \" alt= \" " . $a [ "lang_name" ] . " \" title= \" " . $a [ "lang_name" ] . " \" style= \" padding-bottom: 4px \" /></td>" ;
2021-03-01 21:31:01 +08:00
$lang .= "<td class= \" embedded \" > <a href= \" downloadsubs.php?torrentid=" . $a [ 'torrent_id' ] . "&subid=" . $a [ 'id' ] . " \" ><u>" . $a [ "title" ] . "</u></a>" . ( get_user_class () >= $submanage_class || ( get_user_class () >= $delownsub_class && $a [ "uppedby" ] == $CURUSER [ "id" ]) ? " <font class= \" small \" ><a href= \" subtitles.php?delete=" . $a [ 'id' ] . " \" >[" . $lang_details [ 'text_delete' ] . "</a>]</font>" : "" ) . "</td><td class= \" embedded \" > " . ( $a [ "anonymous" ] == 'yes' ? $lang_details [ 'text_anonymous' ] . ( get_user_class () >= $viewanonymous_class ? get_username ( $a [ 'uppedby' ], false , true , true , false , true ) : "" ) : get_username ( $a [ 'uppedby' ])) . "</td></tr>" ;
2020-12-26 01:42:23 +08:00
print ( $lang );
}
}
else
print ( "<tr><td class= \" embedded \" >" . $lang_details [ 'text_no_subtitles' ] . "</td></tr>" );
print ( "</table>" );
print ( "<table border= \" 0 \" cellspacing= \" 0 \" ><tr>" );
if ( $CURUSER [ 'id' ] == $row [ 'owner' ] || get_user_class () >= $uploadsub_class )
{
print ( "<td class= \" embedded \" ><form method= \" post \" action= \" subtitles.php \" ><input type= \" hidden \" name= \" torrent_name \" value= \" " . $row [ "name" ] . " \" /><input type= \" hidden \" name= \" detail_torrent_id \" value= \" " . $row [ "id" ] . " \" /><input type= \" hidden \" name= \" in_detail \" value= \" in_detail \" /><input type= \" submit \" value= \" " . $lang_details [ 'submit_upload_subtitles' ] . " \" /></form></td>" );
}
$moviename = "" ;
if ( $imdb_id && $showextinfo [ 'imdb' ] == 'yes' )
{
$thenumbers = $imdb_id ;
if ( ! $moviename = $Cache -> get_value ( 'imdb_id_' . $thenumbers . '_movie_name' )){
2021-01-19 00:55:34 +08:00
switch ( $imdb -> getCacheStatus ( $imdb_id )){
2020-12-26 01:42:23 +08:00
case "1" : {
$moviename = $movie -> title (); break ;
$Cache -> cache_value ( 'imdb_id_' . $thenumbers . '_movie_name' , $moviename , 1296000 );
}
default : break ;
}
}
}
2022-03-09 12:08:14 +08:00
print ( "<td class= \" embedded \" ><form method= \" get \" action= \" https://assrt.net/sub/ \" target= \" _blank \" ><input type= \" text \" name= \" searchword \" id= \" keyword \" style= \" width: 250px \" value= \" " . $moviename . " \" /><input type= \" submit \" value= \" " . $lang_details [ 'submit_search_at_shooter' ] . " \" /></form></td><td class= \" embedded \" ><form method= \" get \" action= \" https://www.opensubtitles.org/en/search2/ \" target= \" _blank \" ><input type= \" hidden \" id= \" moviename \" name= \" MovieName \" /><input type= \" hidden \" name= \" action \" value= \" search \" /><input type= \" hidden \" name= \" SubLanguageID \" value= \" all \" /><input onclick= \" document.getElementById('moviename').value=document.getElementById('keyword').value; \" type= \" submit \" value= \" " . $lang_details [ 'submit_search_at_opensubtitles' ] . " \" /></form></td> \n " );
2020-12-26 01:42:23 +08:00
print ( "</tr></table>" );
print ( "</td></tr> \n " );
// ---------------- end subtitle block -------------------//
2021-03-04 20:43:55 +08:00
/**************start custom fields****************/
2021-03-05 02:05:27 +08:00
echo $customField -> renderOnTorrentDetailsPage ( $id );
2021-03-04 20:43:55 +08:00
/**************end custom fields****************/
2021-03-18 20:32:35 +08:00
//technical info
if ( $settingMain [ 'enable_technical_info' ] == 'yes' ) {
$technicalInfo = new \Nexus\Torrent\TechnicalInformation ( $row [ 'technical_info' ] ?? '' );
$technicalInfoResult = $technicalInfo -> renderOnDetailsPage ();
if ( ! empty ( $technicalInfoResult )) {
tr ( $lang_functions [ 'text_technical_info' ], $technicalInfoResult , 1 );
}
}
2020-12-26 01:42:23 +08:00
if ( $CURUSER [ 'showdescription' ] != 'no' && ! empty ( $row [ "descr" ])){
2021-03-16 23:28:37 +08:00
$torrentdetailad = $Advertisement -> get_ad ( 'torrentdetail' );
tr ( "<a href= \" javascript: klappe_news('descr') \" ><span class= \" nowrap \" ><img class= \" minus \" src= \" pic/trans.gif \" alt= \" Show/Hide \" id= \" picdescr \" title= \" " . ( $lang_details [ 'title_show_or_hide' ] ?? '' ) . " \" /> " . $lang_details [ 'row_description' ] . "</span></a>" , "<div id='kdescr'>" . ( $Advertisement -> enable_ad () && $torrentdetailad ? "<div align= \" left \" style= \" margin-bottom: 10px \" id= \" ad_torrentdetail \" >" . $torrentdetailad [ 0 ] . "</div>" : "" ) . format_comment ( $row [ "descr" ]) . "</div>" , 1 );
2020-12-26 01:42:23 +08:00
}
if ( get_user_class () >= $viewnfo_class && $CURUSER [ 'shownfo' ] != 'no' && $row [ "nfosz" ] > 0 ){
if ( ! $nfo = $Cache -> get_value ( 'nfo_block_torrent_id_' . $id )){
$nfo = code ( $row [ "nfo" ], $view == "magic" );
$Cache -> cache_value ( 'nfo_block_torrent_id_' . $id , $nfo , 604800 );
}
2021-03-21 13:56:11 +08:00
tr ( "<a href= \" javascript: klappe_news('nfo') \" ><img class= \" plus \" src= \" pic/trans.gif \" alt= \" Show/Hide \" id= \" picnfo \" title= \" " . $lang_details [ 'title_show_or_hide' ] . " \" /> " . $lang_details [ 'text_nfo' ] . "</a><br /><a href= \" viewnfo.php?id=" . $row [ 'id' ] . " \" class= \" sublink \" >" . $lang_details [ 'text_view_nfo' ] . "</a>" , "<div id='knfo' style= \" display: none; \" ><pre style= \" font-size:10pt; font-family: 'Courier New', monospace; \" >" . $nfo . "</pre></div> \n " , 1 );
2020-12-26 01:42:23 +08:00
}
if ( $imdb_id && $showextinfo [ 'imdb' ] == 'yes' && $CURUSER [ 'showimdb' ] != 'no' )
{
$thenumbers = $imdb_id ;
$Cache -> new_page ( 'imdb_id_' . $thenumbers . '_large' , 1296000 , true );
if ( ! $Cache -> get_page ()){
2021-01-19 00:55:34 +08:00
switch ( $imdb -> getCacheStatus ( $imdb_id ))
2020-12-26 01:42:23 +08:00
{
case "0" : //cache is not ready, try to
{
2021-01-18 19:45:33 +08:00
if ( $row [ 'cache_stamp' ] == 0 || ( $row [ 'cache_stamp' ] != 0 && ( time () - $row [ 'cache_stamp' ]) > 120 )) //not exist or timed out
2020-12-26 01:42:23 +08:00
tr ( $lang_details [ 'text_imdb' ] . $lang_details [ 'row_info' ] , $lang_details [ 'text_imdb' ] . $lang_details [ 'text_not_ready' ] . "<a href= \" retriver.php?id=" . $id . "&type=1&siteid=1 \" >" . $lang_details [ 'text_here_to_retrieve' ] . $lang_details [ 'text_imdb' ], 1 );
else
2021-01-18 19:45:33 +08:00
tr ( $lang_details [ 'text_imdb' ] . $lang_details [ 'row_info' ] , "<img src= \" pic/progressbar.gif \" alt= \"\" /> " . $lang_details [ 'text_someone_has_requested' ] . $lang_details [ 'text_imdb' ] . " " . min ( max ( time () - $row [ 'cache_stamp' ], 0 ), 120 ) . $lang_details [ 'text_please_be_patient' ], 1 );
2020-12-26 01:42:23 +08:00
break ;
}
case "1" :
{
reset_cachetimestamp ( $row [ 'id' ]);
2021-03-17 01:21:35 +08:00
if (( $photo_url = $movie -> photo () ) != FALSE )
2021-01-18 19:45:33 +08:00
$smallth = "<img src= \" " . $photo_url . " \" width= \" 105 \" onclick= \" Preview(this); \" alt= \" poster \" />" ;
else
$smallth = "<img src= \" pic/nophoto.gif \" alt= \" no poster \" />" ;
$autodata = $imdb -> renderDetailsPageDescription ( $row [ 'id' ], $imdb_id );
2021-01-19 00:55:34 +08:00
$cache_time = $imdb -> getCachedAt ( $imdb_id );
2021-01-18 19:45:33 +08:00
$Cache -> add_whole_row ();
print ( "<tr>" );
print ( "<td class= \" rowhead \" ><a href= \" javascript: klappe_ext('imdb') \" ><span class= \" nowrap \" ><img class= \" minus \" src= \" pic/trans.gif \" alt= \" Show/Hide \" id= \" picimdb \" title= \" " . $lang_details [ 'title_show_or_hide' ] . " \" /> " . $lang_details [ 'text_imdb' ] . $lang_details [ 'row_info' ] . "</span></a><div id= \" posterimdb \" >" . $smallth . "</div></td>" );
$Cache -> end_whole_row ();
$Cache -> add_row ();
$Cache -> add_part ();
print ( "<td class= \" rowfollow \" align= \" left \" ><div id='kimdb'>" . $autodata );
$Cache -> end_part ();
$Cache -> add_part ();
print ( $lang_details [ 'text_information_updated_at' ] . date ( "Y-m-d H:i:s" , $cache_time ) . $lang_details [ 'text_might_be_outdated' ] . "<a href= \" " . htmlspecialchars ( "retriver.php?id=" . $id . "&type=2&siteid=1" ) . " \" >" . $lang_details [ 'text_here_to_update' ]);
$Cache -> end_part ();
$Cache -> end_row ();
$Cache -> add_whole_row ();
print ( "</div></td></tr>" );
$Cache -> end_whole_row ();
$Cache -> cache_page ();
echo $Cache -> next_row ();
$Cache -> next_row ();
echo $Cache -> next_part ();
if ( get_user_class () >= $updateextinfo_class )
echo $Cache -> next_part ();
echo $Cache -> next_row ();
break ;
2020-12-26 01:42:23 +08:00
}
case "2" :
{
tr ( $lang_details [ 'text_imdb' ] . $lang_details [ 'row_info' ] , $lang_details [ 'text_network_error' ], 1 );
break ;
}
case "3" :// not a valid imdb url
{
break ;
}
}
}
else {
echo $Cache -> next_row ();
$Cache -> next_row ();
echo $Cache -> next_part ();
if ( get_user_class () >= $updateextinfo_class ){
echo $Cache -> next_part ();
}
echo $Cache -> next_row ();
}
}
2022-02-28 23:20:42 +08:00
if ( get_setting ( 'main.enable_pt_gen_system' ) == 'yes' && ! empty ( $row [ 'pt_gen' ])) {
2021-01-15 22:13:46 +08:00
$ptGen = new \Nexus\PTGen\PTGen ();
2021-01-18 00:41:35 +08:00
$ptGenResult = $ptGen -> renderDetailsPageDescription ( $id , json_decode ( $row [ 'pt_gen' ], true ));
2021-01-15 22:13:46 +08:00
if ( $ptGenResult [ 'update' ]) {
2021-01-18 00:41:35 +08:00
$torrentUpdate [] = 'pt_gen = ' . sqlesc ( json_encode ( $ptGenResult [ 'json_arr' ]));
2021-01-15 22:13:46 +08:00
}
echo $ptGenResult [ 'html' ];
}
2020-12-26 01:42:23 +08:00
if ( $imdb_id )
{
$where_area = " url = " . sqlesc (( int ) $imdb_id ) . " AND torrents.id != " . sqlesc ( $id );
2021-06-21 02:01:26 +08:00
$copies_res = sql_query ( "SELECT torrents.id, torrents.name, torrents.sp_state, torrents.size, torrents.added, torrents.seeders, torrents.leechers, torrents.hr,categories.id AS catid, categories.name AS catname, categories.image AS catimage, sources.name AS source_name, media.name AS medium_name, codecs.name AS codec_name, standards.name AS standard_name, processings.name AS processing_name FROM torrents LEFT JOIN categories ON torrents.category=categories.id LEFT JOIN sources ON torrents.source = sources.id LEFT JOIN media ON torrents.medium = media.id LEFT JOIN codecs ON torrents.codec = codecs.id LEFT JOIN standards ON torrents.standard = standards.id LEFT JOIN processings ON torrents.processing = processings.id WHERE " . $where_area . " ORDER BY torrents.id DESC" ) or sqlerr ( __FILE__ , __LINE__ );
2020-12-26 01:42:23 +08:00
$copies_count = mysql_num_rows ( $copies_res );
if ( $copies_count > 0 )
{
$s = "<table border= \" 1 \" cellspacing= \" 0 \" cellpadding= \" 5 \" > \n " ;
$s .= "<tr><td class= \" colhead \" style= \" padding: 0px; text-align:center; \" >" . $lang_details [ 'col_type' ] . "</td><td class= \" colhead \" align= \" left \" >" . $lang_details [ 'col_name' ] . "</td><td class= \" colhead \" align= \" center \" >" . $lang_details [ 'col_quality' ] . "</td><td class= \" colhead \" align= \" center \" ><img class= \" size \" src= \" pic/trans.gif \" alt= \" size \" title= \" " . $lang_details [ 'title_size' ] . " \" /></td><td class= \" colhead \" align= \" center \" ><img class= \" time \" src= \" pic/trans.gif \" alt= \" time added \" title= \" " . $lang_details [ 'title_time_added' ] . " \" /></td><td class= \" colhead \" align= \" center \" ><img class= \" seeders \" src= \" pic/trans.gif \" alt= \" seeders \" title= \" " . $lang_details [ 'title_seeders' ] . " \" /></td><td class= \" colhead \" align= \" center \" ><img class= \" leechers \" src= \" pic/trans.gif \" alt= \" leechers \" title= \" " . $lang_details [ 'title_leechers' ] . " \" /></td></tr> \n " ;
while ( $copy_row = mysql_fetch_assoc ( $copies_res ))
{
$dispname = htmlspecialchars ( trim ( $copy_row [ "name" ]));
$count_dispname = strlen ( $dispname );
$max_lenght_of_torrent_name = "80" ; // maximum lenght
if ( $count_dispname > $max_lenght_of_torrent_name )
{
$dispname = substr ( $dispname , 0 , $max_lenght_of_torrent_name ) . ".." ;
}
2021-05-14 11:04:03 +08:00
$other_source_info = $other_medium_info = $other_codec_info = $other_standard_info = $other_processing_info = '' ;
2020-12-26 01:42:23 +08:00
if ( isset ( $copy_row [ "source_name" ]))
2020-12-29 21:49:37 +08:00
$other_source_info = $copy_row [ 'source_name' ] . ", " ;
2020-12-26 01:42:23 +08:00
if ( isset ( $copy_row [ "medium_name" ]))
2020-12-29 21:49:37 +08:00
$other_medium_info = $copy_row [ 'medium_name' ] . ", " ;
2020-12-26 01:42:23 +08:00
if ( isset ( $copy_row [ "codec_name" ]))
2020-12-29 21:49:37 +08:00
$other_codec_info = $copy_row [ 'codec_name' ] . ", " ;
2020-12-26 01:42:23 +08:00
if ( isset ( $copy_row [ "standard_name" ]))
2020-12-29 21:49:37 +08:00
$other_standard_info = $copy_row [ 'standard_name' ] . ", " ;
2020-12-26 01:42:23 +08:00
if ( isset ( $copy_row [ "processing_name" ]))
2020-12-29 21:49:37 +08:00
$other_processing_info = $copy_row [ 'processing_name' ] . ", " ;
2020-12-26 01:42:23 +08:00
$sphighlight = get_torrent_bg_color ( $copy_row [ 'sp_state' ]);
$sp_info = get_torrent_promotion_append ( $copy_row [ 'sp_state' ]);
2021-06-21 02:01:26 +08:00
$hrImg = get_hr_img ( $copy_row );
2020-12-26 01:42:23 +08:00
2021-06-21 02:01:26 +08:00
$s .= "<tr" . $sphighlight . "><td class= \" rowfollow nowrap \" valign= \" middle \" style='padding: 0px'>" . return_category_image ( $copy_row [ "catid" ], "torrents.php?allsec=1&" ) . "</td><td class= \" rowfollow \" align= \" left \" ><a href= \" " . htmlspecialchars ( get_protocol_prefix () . $BASEURL . "/details.php?id=" . $copy_row [ "id" ] . "&hit=1" ) . " \" >" . $dispname . "</a>" . $sp_info . $hrImg . "</td>" .
2020-12-26 01:42:23 +08:00
"<td class= \" rowfollow \" align= \" left \" >" . rtrim ( trim ( $other_source_info . $other_medium_info . $other_codec_info . $other_standard_info . $other_processing_info ), "," ) . "</td>" .
"<td class= \" rowfollow \" align= \" center \" >" . mksize ( $copy_row [ "size" ]) . "</td>" .
"<td class= \" rowfollow nowrap \" align= \" center \" >" . str_replace ( " " , "<br />" , gettime ( $copy_row [ "added" ], false )) . "</td>" .
"<td class= \" rowfollow \" align= \" center \" >" . $copy_row [ "seeders" ] . "</td>" .
"<td class= \" rowfollow \" align= \" center \" >" . $copy_row [ "leechers" ] . "</td>" .
"</tr> \n " ;
}
$s .= "</table> \n " ;
2020-12-29 21:49:37 +08:00
tr ( "<a href= \" javascript: klappe_news('othercopy') \" ><span class= \" nowrap \" ><img class= \" " . ( $copies_count > 5 ? "plus" : "minus" ) . " \" src= \" pic/trans.gif \" alt= \" Show/Hide \" id= \" picothercopy \" title= \" " . $lang_details [ 'title_show_or_hide' ] . " \" /> " . $lang_details [ 'row_other_copies' ] . "</span></a>" , "<b>" . $copies_count . $lang_details [ 'text_other_copies' ] . " </b><br /><div id='kothercopy' style= \" " . ( $copies_count > 5 ? "display: none;" : "display: block;" ) . " \" >" . $s . "</div>" , 1 );
2020-12-26 01:42:23 +08:00
}
}
if ( $row [ "type" ] == "multi" )
{
$files_info = "<b>" . $lang_details [ 'text_num_files' ] . "</b>" . $row [ "numfiles" ] . $lang_details [ 'text_files' ] . "<br />" ;
$files_info .= "<span id= \" showfl \" ><a href= \" javascript: viewfilelist(" . $id . ") \" >" . $lang_details [ 'text_see_full_list' ] . "</a></span><span id= \" hidefl \" style= \" display: none; \" ><a href= \" javascript: hidefilelist() \" >" . $lang_details [ 'text_hide_list' ] . "</a></span>" ;
}
function hex_esc ( $matches ) {
return sprintf ( "%02x" , ord ( $matches [ 0 ]));
}
if ( $enablenfo_main == 'yes' )
2021-01-09 19:35:38 +08:00
tr ( $lang_details [ 'row_torrent_info' ], "<table><tr>" . ( ! empty ( $files_info ) ? "<td class= \" no_border_wide \" >" . $files_info . "</td>" : "" ) . "<td class= \" no_border_wide \" ><b>" . $lang_details [ 'row_info_hash' ] . ":</b> " . preg_replace_callback ( '/./s' , "hex_esc" , hash_pad ( $row [ "info_hash" ])) . "</td>" . ( get_user_class () >= $torrentstructure_class ? "<td class= \" no_border_wide \" ><b>" . $lang_details [ 'text_torrent_structure' ] . "</b><a href= \" torrent_info.php?id=" . $id . " \" >" . $lang_details [ 'text_torrent_info_note' ] . "</a></td>" : "" ) . "</tr></table><span id='filelist'></span>" , 1 );
2020-12-26 01:42:23 +08:00
tr ( $lang_details [ 'row_hot_meter' ], "<table><tr><td class= \" no_border_wide \" ><b>" . $lang_details [ 'text_views' ] . "</b>" . $row [ "views" ] . "</td><td class= \" no_border_wide \" ><b>" . $lang_details [ 'text_hits' ] . "</b>" . $row [ "hits" ] . "</td><td class= \" no_border_wide \" ><b>" . $lang_details [ 'text_snatched' ] . "</b><a href= \" viewsnatches.php?id=" . $id . " \" ><b>" . $row [ "times_completed" ] . $lang_details [ 'text_view_snatches' ] . "</td><td class= \" no_border_wide \" ><b>" . $lang_details [ 'row_last_seeder' ] . "</b>" . gettime ( $row [ "last_action" ]) . "</td></tr></table>" , 1 );
$bwres = sql_query ( "SELECT uploadspeed.name AS upname, downloadspeed.name AS downname, isp.name AS ispname FROM users LEFT JOIN uploadspeed ON users.upload = uploadspeed.id LEFT JOIN downloadspeed ON users.download = downloadspeed.id LEFT JOIN isp ON users.isp = isp.id WHERE users.id=" . $row [ 'owner' ]);
$bwrow = mysql_fetch_array ( $bwres );
if ( $bwrow [ 'upname' ] && $bwrow [ 'downname' ])
tr ( $lang_details [ 'row_uploader_bandwidth' ], "<img class= \" speed_down \" src= \" pic/trans.gif \" alt= \" Downstream Rate \" /> " . $bwrow [ 'downname' ] . " <img class= \" speed_up \" src= \" pic/trans.gif \" alt= \" Upstream Rate \" /> " . $bwrow [ 'upname' ] . " " . $bwrow [ 'ispname' ], 1 );
/*
// Health
$seedersTmp = $row['seeders'];
$leechersTmp = $row['leechers'];
if ($leechersTmp >= 1) // it is possible that there's traffic while have no seeders
{
$progressPerTorrent = 0;
$i = 0;
$subres = sql_query("SELECT seeder, finishedat, downloadoffset, uploadoffset, ip, port, uploaded, downloaded, to_go, UNIX_TIMESTAMP(started) AS st, connectable, agent, peer_id, UNIX_TIMESTAMP(last_action) AS la, userid FROM peers WHERE torrent = $row[id]") or sqlerr();
while ($subrow = mysql_fetch_array($subres)) {
$progressPerTorrent += sprintf("%.2f", 100 * (1 - ($subrow["to_go"] / $row["size"])));
$i++;
if ($subrow["seeder"] == "yes")
$seeders[] = $subrow;
else
$downloaders[] = $subrow;
}
if ($i == 0)
$i = 1;
$progressTotal = sprintf("%.2f", $progressPerTorrent / $i);
$totalspeed = 0;
if($seedersTmp >=1)
{
if ($seeders) {
foreach($seeders as $e) {
$totalspeed = $totalspeed + ($e["uploaded"] - $e["uploadoffset"]) / max(1, ($e["la"] - $e["st"]));
$totalspeed = $totalspeed + ($e["downloaded"] - $e["downloadoffset"]) / max(1, $e["finishedat"] - $e[st]);
}
}
}
if ($downloaders) {
foreach($downloaders as $e) {
$totalspeed = $totalspeed + ($e["uploaded"] - $e["uploadoffset"]) / max(1, ($e["la"] - $e["st"]));
$totalspeed = $totalspeed + ($e["downloaded"] - $e["downloadoffset"]) / max(1, ($e["la"] - $e["st"]));
}
}
$avgspeed = $lang_details['text_average_speed']."<b>" . mksize($totalspeed/($seedersTmp+$leechersTmp)) . "/s</b>";
$totalspeed = $lang_details['text_total_speed']."<b>" . mksize($totalspeed) . "/s</b> ".$lang_details['text_health_note'];
$health = $lang_details['text_avprogress'] . get_percent_completed_image(floor($progressTotal))." (".round($progressTotal)."%) <b>".$lang_details['text_traffic']."</b>" . $avgspeed ." ". $totalspeed;
}
else
$health = "<b>".$lang_details['text_traffic']. "</b>" . $lang_details['text_no_traffic'];
if ($row["visible"] == "no")
$health = "<b>".$lang_details['text_status']."</b>" . $lang_details['text_dead'] ." ". $health;
tr($lang_details['row_health'], $health, 1);*/
tr ( "<span id= \" seeders \" ></span><span id= \" leechers \" ></span>" . $lang_details [ 'row_peers' ] . "<br /><span id= \" showpeer \" ><a href= \" javascript: viewpeerlist(" . $row [ 'id' ] . "); \" class= \" sublink \" >" . $lang_details [ 'text_see_full_list' ] . "</a></span><span id= \" hidepeer \" style= \" display: none; \" ><a href= \" javascript: hidepeerlist(); \" class= \" sublink \" >" . $lang_details [ 'text_hide_list' ] . "</a></span>" , "<div id= \" peercount \" ><b>" . $row [ 'seeders' ] . $lang_details [ 'text_seeders' ] . add_s ( $row [ 'seeders' ]) . "</b> | <b>" . $row [ 'leechers' ] . $lang_details [ 'text_leechers' ] . add_s ( $row [ 'leechers' ]) . "</b></div><div id= \" peerlist \" ></div>" , 1 );
2020-12-29 21:49:37 +08:00
if ( isset ( $_GET [ 'dllist' ]) && $_GET [ 'dllist' ] == 1 )
2020-12-26 01:42:23 +08:00
{
$scronload = "viewpeerlist(" . $row [ 'id' ] . ")" ;
echo "<script type= \" text/javascript \" > \n " ;
echo $scronload ;
echo "</script>" ;
}
2021-06-08 02:01:35 +08:00
//Add 魔力值奖励功能
if ( isset ( $magic_value_bonus )){
$bonus_array = $magic_value_bonus ;
} else {
$bonus_array = '50 , 100 , 200 , 500, 1000' ;
}
echo '<style type="text/css">
ul.magic
{
cursor:pointer;
list-style-type:none;
padding-left:0px;
}
ul.magic li
{
margin:0px;text-align:center;float:left;width:40px;margin-right:15px; height:21px;background:url("styles/huise.png") no-repeat;
padding-left:5px;padding-right:5px;
line-height:20px;
}
ul.magic li:hover
{
background:url("styles/boli.png") no-repeat
}
</style>
' ;
$magic_value_button = '' ;
if ( $CURUSER [ 'id' ] <> $row [ 'owner' ]) {
$arr_temp = explode ( ',' , $bonus_array );
$bonus_has = $CURUSER [ 'seedbonus' ];
if ( intval ( $bonus_has ) < intval ( $arr_temp [ 0 ])){
$error_bonus_message = $lang_details [ 'magic_have_no_enough_bonus_value' ];
$button_name = "<input class= \" btn \" type= \" button \" value= \" " . $error_bonus_message . " \" disabled= \" disabled \" />" ;
$magic_value_button .= $button_name ;
} else {
foreach ( $arr_temp as $key => $each_temp ){
$each_temp = intval ( $each_temp );
if ( $each_temp > 0 && $each_temp <= $bonus_has ) {
$button_name = $magic_value_button . $key ;
$magic_button_id = 'magic_value_' . $key ;
$each_temp_font = '<font style="font-size:8pt;padding-right:5px;">' . ( '+' . $each_temp ) . '</font>' ;
$error_bonus_message = $lang_details [ 'magic_have_no_enough_bonus_value' ];
$button_name = "<li onclick= \" saveMagicValue(" . $id . ", $each_temp ); \" >" . $each_temp_font . "</li>" ;
$magic_value_button .= $button_name ;
}
}
}
}
$span_description = $lang_details [ 'span_description_have_given' ];
$span = '<input class="btn" type="button" id="magic_add" style="display:none" value="' . $span_description . '" disabled="disabled" /> ' ;
$whether_have_give_value = 0 ;
$give_value = array ();
$no_give = "" ;
$add_value = "" ;
$tempresult = sql_query ( "SELECT count( DISTINCT `userid` ) as count FROM magic WHERE torrentid=" . sqlesc ( $id ));
$count_user = mysql_fetch_array ( $tempresult );
$count_user_number = $count_user [ 'count' ];
$give_value_sql = sql_query ( "SELECT userid,value FROM magic WHERE torrentid=" . sqlesc ( $id ) . " ORDER BY id DESC" );
$give_value_count = get_row_count ( "magic" , "WHERE torrentid=" . sqlesc ( $id ));
$give_value_all = mysql_num_rows ( $give_value_sql );
$sum_value = 0 ;
if ( $give_value_all ) {
while ( $rows_t = mysql_fetch_array ( $give_value_sql )) {
$give_value_userid = $rows_t [ "userid" ];
$sum_value += $rows_t [ "value" ] * 1 ;
if ( $give_value_userid == $CURUSER [ 'id' ]) {
$whether_have_give_value = 1 ;
$add_value = $rows_t [ "value" ];
}
$give_value [] = get_username ( $give_value_userid ) . " " ;
}
} else $no_give = $lang_details [ 'text_no_magic_added' ];
2021-06-14 13:16:21 +08:00
if ( isset ( $bonus_has ) && isset ( $arr_temp ) && intval ( $bonus_has ) < intval ( $arr_temp [ 0 ])){
2021-06-08 02:01:35 +08:00
} else if ( $whether_have_give_value == 0 ) {
$magic_value_button = '<ul id="listNumber" class="magic">' . $magic_value_button . '</ul>' ;
} else {
$add_value = str_replace ( "Number" , $add_value , $lang_details [ 'magic_value_number' ]);
$magic_value_button = "<input class= \" btn \" type= \" button \" value= \" " . $add_value . " \" disabled= \" disabled \" />" ;
//$give_value = get_username($CURUSER['id'])." ".$give_value;
}
$show_list = null ;
$show_all = null ;
$show_list_new_number = 6 ;
$other_user_str = null ;
$other_user_span = null ;
if ( count ( $give_value ) > 0 ){
$count_user_span = '<span id="count_user_spa">' . $count_user_number . '</span>' ;
$magic_newest_record = '<span id="magic_newest_record">' . $lang_details [ 'magic_newest_record' ] . '</span>' ;
$show_list_description = '(' . $magic_newest_record . $lang_details [ 'magic_sum_user_give_number' ] . ')' ;
$show_list_description = str_replace ( 'Number' , $count_user_span , $show_list_description );
$output = array_slice ( $give_value , 0 , $show_list_new_number );
foreach ( $output as $eachOutput ){
$show_list .= $eachOutput . ' ' ;
}
//other user list
if ( count ( $give_value ) > $show_list_new_number ){
$show_list .= '<span id="ellipsis"> ...... </span>' ;
$show_all_description = '[' . $lang_details [ 'magic_show_all_description' ] . ']' ;
$show_all = '<a herf="#" style="cursor:pointer" onclick="displayOtherUserList()">' . $show_all_description . '</a>' . '<br/>' ;
$other_user_list = array_slice ( $give_value , $show_list_new_number , count ( $give_value ));
foreach ( $other_user_list as $each ){
$other_user_str .= $each . ' ' ;
}
$other_user_span = '<span id="other_user_list" style="display:none">' . $other_user_str . '</span>' ;
}
} else {
$show_list_description = null ;
$haveGotBonus = $no_give ;
}
$current_user_magic = "<span id='current_user_magic' style='display:none'>" . get_username ( $CURUSER [ 'id' ]) . "</span> " ;
$haveGotBonus = $lang_details [ 'magic_haveGotBonus' ] . ' ' ;
$spanSumAll = '<span id="spanSumAll">' . $sum_value . '</span>' ;
$haveGotBonus = str_replace ( 'Number' , $spanSumAll , $haveGotBonus );
$firstLine = '<div style="height:25px">' . $magic_value_button . $span . $haveGotBonus . $show_all . '</div>' ;
$otherLine = '<div>' . $current_user_magic . $show_list . $other_user_span . $show_list_description . '</div>' ;
tr ( $lang_details [ 'magic_value_award' ], $firstLine . $otherLine , 1 );
//End 魔力值奖励功能
2020-12-26 01:42:23 +08:00
// ------------- start thanked-by block--------------//
$torrentid = $id ;
$thanksby = "" ;
$nothanks = "" ;
$thanks_said = 0 ;
$thanks_sql = sql_query ( "SELECT userid FROM thanks WHERE torrentid=" . sqlesc ( $torrentid ) . " ORDER BY id DESC LIMIT 20" );
$thanksCount = get_row_count ( "thanks" , "WHERE torrentid=" . sqlesc ( $torrentid ));
$thanks_all = mysql_num_rows ( $thanks_sql );
if ( $thanks_all ) {
while ( $rows_t = mysql_fetch_array ( $thanks_sql )) {
$thanks_userid = $rows_t [ "userid" ];
if ( $rows_t [ "userid" ] == $CURUSER [ 'id' ]) {
$thanks_said = 1 ;
} else {
$thanksby .= get_username ( $thanks_userid ) . " " ;
}
}
}
else $nothanks = $lang_details [ 'text_no_thanks_added' ];
if ( ! $thanks_said ) {
$thanks_said = get_row_count ( "thanks" , "WHERE torrentid= $torrentid AND userid=" . sqlesc ( $CURUSER [ 'id' ]));
}
if ( $thanks_said == 0 ) {
$buttonvalue = " value= \" " . $lang_details [ 'submit_say_thanks' ] . " \" " ;
} else {
$buttonvalue = " value= \" " . $lang_details [ 'submit_you_said_thanks' ] . " \" disabled= \" disabled \" " ;
$thanksby = get_username ( $CURUSER [ 'id' ]) . " " . $thanksby ;
}
$thanksbutton = "<input class= \" btn \" type= \" button \" id= \" saythanks \" onclick= \" saythanks(" . $torrentid . "); \" " . $buttonvalue . " />" ;
tr ( $lang_details [ 'row_thanks_by' ], "<span id= \" thanksadded \" style= \" display: none; \" ><input class= \" btn \" type= \" button \" value= \" " . $lang_details [ 'text_thanks_added' ] . " \" disabled= \" disabled \" /></span><span id= \" curuser \" style= \" display: none; \" >" . get_username ( $CURUSER [ 'id' ]) . " </span><span id= \" thanksbutton \" >" . $thanksbutton . "</span> <span id= \" nothanks \" >" . $nothanks . "</span><span id= \" addcuruser \" ></span>" . $thanksby . ( $thanks_all < $thanksCount ? $lang_details [ 'text_and_more' ] . $thanksCount . $lang_details [ 'text_users_in_total' ] : "" ), 1 );
// ------------- end thanked-by block--------------//
print ( "</table> \n " );
}
else {
stdhead ( $lang_details [ 'head_comments_for_torrent' ] . " \" " . $row [ "name" ] . " \" " );
print ( "<h1 id= \" top \" >" . $lang_details [ 'text_comments_for' ] . "<a href= \" details.php?id=" . $id . " \" >" . htmlspecialchars ( $row [ "name" ]) . "</a></h1> \n " );
}
2021-01-18 00:41:35 +08:00
if ( ! empty ( $torrentUpdate )) {
sql_query ( "UPDATE torrents SET " . join ( "," , $torrentUpdate ) . " WHERE id = $id " ) or sqlerr ( __FILE__ , __LINE__ );
}
2020-12-26 01:42:23 +08:00
// -----------------COMMENT SECTION ---------------------//
if ( $CURUSER [ 'showcomment' ] != 'no' ){
$count = get_row_count ( "comments" , "WHERE torrent=" . sqlesc ( $id ));
if ( $count )
{
print ( "<br /><br />" );
print ( "<h1 align= \" center \" id= \" startcomments \" >" . $lang_details [ 'h1_user_comments' ] . "</h1> \n " );
2020-12-29 21:49:37 +08:00
list ( $pagertop , $pagerbottom , $limit ) = pager ( 10 , $count , "details.php?id= $id &cmtpage=1&" , array ( 'lastpagedefault' => 1 ), "page" );
2020-12-26 01:42:23 +08:00
$subres = sql_query ( "SELECT id, text, user, added, editedby, editdate FROM comments WHERE torrent = $id ORDER BY id $limit " ) or sqlerr ( __FILE__ , __LINE__ );
$allrows = array ();
while ( $subrow = mysql_fetch_array ( $subres )) {
$allrows [] = $subrow ;
}
print ( $pagertop );
commenttable ( $allrows , "torrent" , $id );
print ( $pagerbottom );
}
}
print ( "<br /><br />" );
print ( "<table style='border:1px solid #000000;'><tr><td class= \" text \" align= \" center \" ><b>" . $lang_details [ 'text_quick_comment' ] . "</b><br /><br /><form id= \" compose \" name= \" comment \" method= \" post \" action= \" " . htmlspecialchars ( "comment.php?action=add&type=torrent" ) . " \" onsubmit= \" return postvalid(this); \" ><input type= \" hidden \" name= \" pid \" value= \" " . $id . " \" /><br />" );
quickreply ( 'comment' , 'body' , $lang_details [ 'submit_add_comment' ]);
print ( "</form></td></tr></table>" );
print ( "<p align= \" center \" ><a class= \" index \" href= \" " . htmlspecialchars ( "comment.php?action=add&pid=" . $id . "&type=torrent" ) . " \" >" . $lang_details [ 'text_add_a_comment' ] . "</a></p> \n " );
}
stdfoot ();