mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 10:56:26 +00:00
34 lines
1.1 KiB
PHP
34 lines
1.1 KiB
PHP
<?
|
|
//******************************************************************************//
|
|
//--------------- 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];
|
|
if(!$GroupID){ error(404); }
|
|
|
|
$DB->query("INSERT INTO torrents_recommended (GroupID, UserID, Time) VALUES ('".db_string($GroupID)."', $LoggedUser[ID], '".sqltime()."')");
|
|
$Cache->delete_value('recommend');
|
|
header('Location: '.$_SERVER['HTTP_REFERER']);
|
|
?>
|