mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 10:56:26 +00:00
6273679d49
fix typo I introduced in schedule.php Print to LAB_CHAN if sphinx connection fails nice bitcoin display Corrects [#] tag for Mono [hateradio] bitcoin donation Fix torrent unbookmarking upgraded sphinxapi.php to r2876 as the site is running r2902 Added options to block Tor, Opera Turbo and Opera Mini check for stale cache vanity house [clone00] bookmark almost anything [patapper] new torrent edit flags [rattvis] permissions stuff from patappatch c [BBCode] new [important] tag [DutchDude] Fixed images flowing past their boxes [hateradio] [BBCode] Tag for ordered lists. [hateradio] finally fixed that annoying textarea-resizing thing renamed temporary tables fixes http://what.cd/forums.php?action=viewthread&threadid=137432&page=1#post3408738 implements http://what.cd/forums.php?action=viewthread&threadid=122832 fixes http://what.cd/forums.php?action=viewthread&threadid=136553 fixes http://what.cd/forums.php?action=viewthread&threadid=112967 implements http://what.cd/forums.php?action=viewthread&threadid=110395
69 lines
3.2 KiB
PHP
69 lines
3.2 KiB
PHP
<?
|
|
$GroupID = $_GET['groupid'];
|
|
$TorrentID = $_GET['torrentid'];
|
|
|
|
if(!is_number($GroupID) || !is_number($TorrentID)) { error(0); }
|
|
|
|
$DB->query("SELECT LastReseedRequest, UserID, Time FROM torrents WHERE ID='$TorrentID'");
|
|
list($LastReseedRequest, $UploaderID, $UploadedTime) = $DB->next_record();
|
|
|
|
if(time()-strtotime($LastReseedRequest)<864000) { error("There was already a re-seed request for this torrent within the past 10 days."); }
|
|
|
|
$DB->query("UPDATE torrents SET LastReseedRequest=NOW() WHERE ID='$TorrentID'");
|
|
|
|
$Group = get_groups(array($GroupID));
|
|
$Group = array_pop($Group['matches']);
|
|
list($GroupID, $GroupName, $GroupYear, $GroupRecordLabel, $GroupCatalogueNumber, $TagList, $ReleaseType, $GroupVanityHouse, $Torrents, $GroupArtists) = array_values($Group);
|
|
|
|
$Name = '';
|
|
$Name .= display_artists(array('1'=>$GroupArtists), false, true);
|
|
$Name .= $GroupName;
|
|
|
|
$DB->query("SELECT uid, tstamp FROM xbt_snatched WHERE fid='$TorrentID' ORDER BY tstamp DESC LIMIT 10");
|
|
if($DB->record_count()>0) {
|
|
$Users = $DB->to_array();
|
|
foreach($Users as $User) {
|
|
$UserID = $User['uid'];
|
|
|
|
$DB->query("SELECT UserID FROM top_snatchers WHERE UserID='$UserID'");
|
|
if($DB->record_count()>0) { continue; }
|
|
|
|
$UserInfo = user_info($UserID);
|
|
$Username = $UserInfo['Username'];
|
|
$TimeStamp = $User['tstamp'];
|
|
$Request = "Hi $Username,
|
|
|
|
The user [url=http://".SITE_URL."/user.php?id=$LoggedUser[ID]]$LoggedUser[Username][/url] has requested a re-seed for the torrent [url=http://".SITE_URL."/torrents.php?id=$GroupID&torrentid=$TorrentID]".$Name."[/url], which you snatched on ".date('M d Y', $TimeStamp).". The torrent is now un-seeded, and we need your help to resurrect it!
|
|
|
|
The exact process for re-seeding a torrent is slightly different for each client, but the concept is the same. The idea is to download the .torrent file and open it in your client, and point your client to the location where the data files are, then initiate a hash check.
|
|
|
|
Thanks!";
|
|
|
|
send_pm($UserID, 0, 'Re-seed request for torrent '.db_string($Name), db_string($Request));
|
|
}
|
|
$NumUsers = count($Users);
|
|
} else {
|
|
$UserInfo = user_info($UploaderID);
|
|
$Username = $UserInfo['Username'];
|
|
|
|
$Request = "Hi $Username,
|
|
|
|
The user [url=http://".SITE_URL."/user.php?id=$LoggedUser[ID]]$LoggedUser[Username][/url] has requested a re-seed for the torrent [url=http://".SITE_URL."/torrents.php?id=$GroupID&torrentid=$TorrentID]".$Name."[/url], which you uploaded on ".date('M d Y', strtotime($UploadedTime)).". The torrent is now un-seeded, and we need your help to resurrect it!
|
|
|
|
The exact process for re-seeding a torrent is slightly different for each client, but the concept is the same. The idea is to download the .torrent file and open it in your client, and point your client to the location where the data files are, then initiate a hash check.
|
|
|
|
Thanks!";
|
|
send_pm($UploaderID, 0, 'Re-seed request for torrent '.db_string($Name), db_string($Request));
|
|
|
|
$NumUsers = 1;
|
|
|
|
}
|
|
show_header();
|
|
?>
|
|
<div class="thin">
|
|
<h2>Successfully sent re-seed request</h2>
|
|
<p>Successfully sent re-seed request for torrent <a href="torrents.php?id=<?=$GroupID?>&torrentid=<?=$TorrentID?>"><?=display_str($Name)?></a> to <?=$NumUsers?> user(s).</p>
|
|
</div>
|
|
<?show_footer();?>
|
|
|