2011-03-28 14:21:28 +00:00
|
|
|
<?
|
|
|
|
//******************************************************************************//
|
|
|
|
//--------------- Add a recommendation -----------------------------------------//
|
|
|
|
authorize();
|
|
|
|
|
|
|
|
if(!check_perms('site_recommend_own') && !check_perms('site_manage_recommendations')){
|
|
|
|
error(403);
|
|
|
|
}
|
|
|
|
|
|
|
|
$URL = trim($_POST['url']);
|
|
|
|
|
|
|
|
// Make sure the URL they entered is on our site, and is a link to a torrent
|
|
|
|
$URLRegex = '/^https?:\/\/(www\.|ssl\.)?'.NONSSL_SITE_URL.'\/torrents\.php\?id=([0-9]+)$/i';
|
|
|
|
$Val->SetFields('url',
|
|
|
|
'1','regex','The URL must be a link to a torrent on the site.',array('regex'=>$URLRegex));
|
|
|
|
$Err = $Val->ValidateForm($_POST); // Validate the form
|
|
|
|
|
|
|
|
if($Err){ // if something didn't validate
|
|
|
|
error($Err);
|
|
|
|
header('Location: '.$_SERVER['HTTP_REFERER']);
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get torrent ID
|
|
|
|
$URLRegex = '/torrents\.php\?id=([0-9]+)$/i';
|
|
|
|
preg_match($URLRegex, $URL, $Matches);
|
|
|
|
$GroupID=$Matches[1];
|
2011-07-10 08:00:06 +00:00
|
|
|
|
|
|
|
if(empty($GroupID) || !is_number($GroupID)) {
|
|
|
|
error(404);
|
|
|
|
}
|
2011-03-28 14:21:28 +00:00
|
|
|
|
|
|
|
$DB->query("INSERT INTO torrents_recommended (GroupID, UserID, Time) VALUES ('".db_string($GroupID)."', $LoggedUser[ID], '".sqltime()."')");
|
2012-10-11 08:00:15 +00:00
|
|
|
Torrents::freeleech_groups($GroupID, 2, 3);
|
2011-07-10 08:00:06 +00:00
|
|
|
|
2011-03-28 14:21:28 +00:00
|
|
|
$Cache->delete_value('recommend');
|
|
|
|
header('Location: '.$_SERVER['HTTP_REFERER']);
|
|
|
|
?>
|