Gazelle/sections/collages/collage.php

72 lines
2.2 KiB
PHP
Raw Normal View History

2011-03-28 14:21:28 +00:00
<?
2012-07-21 08:00:14 +00:00
ini_set('max_execution_time',600);
2011-03-28 14:21:28 +00:00
//~~~~~~~~~~~ Main collage page ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
2013-05-04 08:00:48 +00:00
function compare($X, $Y) {
2011-03-28 14:21:28 +00:00
return($Y['count'] - $X['count']);
}
include(SERVER_ROOT.'/classes/class_text.php'); // Text formatting class
2012-06-18 08:00:14 +00:00
2011-03-28 14:21:28 +00:00
$Text = new TEXT;
2012-11-02 08:00:18 +00:00
$UserVotes = Votes::get_user_votes($LoggedUser['ID']);
2011-03-28 14:21:28 +00:00
$CollageID = $_GET['id'];
2012-11-03 08:00:19 +00:00
if (!is_number($CollageID)) {
error(0);
}
2011-03-28 14:21:28 +00:00
$Data = $Cache->get_value('collage_'.$CollageID);
2013-04-13 08:00:19 +00:00
if ($Data) {
2012-10-28 08:00:19 +00:00
if (!is_array($Data)) {
$Data = unserialize($Data);
}
2012-11-01 08:00:21 +00:00
list($K, list($Name, $Description, , , $CommentList, $Deleted, $CollageCategoryID, $CreatorID, $Locked, $MaxGroups, $MaxGroupsPerUser)) = each($Data);
2011-03-28 14:21:28 +00:00
} else {
$DB->query("SELECT Name, Description, UserID, Deleted, CategoryID, Locked, MaxGroups, MaxGroupsPerUser FROM collages WHERE ID='$CollageID'");
2013-04-13 08:00:19 +00:00
if ($DB->record_count() > 0) {
2011-03-28 14:21:28 +00:00
list($Name, $Description, $CreatorID, $Deleted, $CollageCategoryID, $Locked, $MaxGroups, $MaxGroupsPerUser) = $DB->next_record();
2013-04-19 08:00:55 +00:00
$TorrentList = '';
$CollageList = '';
2011-03-28 14:21:28 +00:00
} else {
$Deleted = '1';
}
}
2013-04-13 08:00:19 +00:00
if ($Deleted == '1') {
2011-03-28 14:21:28 +00:00
header('Location: log.php?search=Collage+'.$CollageID);
die();
}
2013-04-13 08:00:19 +00:00
if ($CollageCategoryID == 0 && !check_perms('site_collages_delete')) {
if (!check_perms('site_collages_personal') || $CreatorID != $LoggedUser['ID']) {
2012-11-03 08:00:19 +00:00
$PreventAdditions = true;
2011-03-28 14:21:28 +00:00
}
}
//Handle subscriptions
2013-04-13 08:00:19 +00:00
if (($CollageSubscriptions = $Cache->get_value('collage_subs_user_'.$LoggedUser['ID'])) === false) {
$DB->query("SELECT CollageID FROM users_collage_subs WHERE UserID = '$LoggedUser[ID]'");
$CollageSubscriptions = $DB->collect(0);
$Cache->cache_value('collage_subs_user_'.$LoggedUser['ID'],$CollageSubscriptions,0);
}
2013-04-13 08:00:19 +00:00
if (empty($CollageSubscriptions)) {
$CollageSubscriptions = array();
}
2013-04-13 08:00:19 +00:00
if (in_array($CollageID, $CollageSubscriptions)) {
$Cache->delete_value('collage_subs_user_new_'.$LoggedUser['ID']);
}
$DB->query("UPDATE users_collage_subs SET LastVisit=NOW() WHERE UserID = ".$LoggedUser['ID']." AND CollageID=$CollageID");
2013-05-25 08:01:03 +00:00
if($CollageCategoryID == array_search(ARTIST_COLLAGE, $CollageCats)) {
include(SERVER_ROOT.'/sections/collages/artist_collage.php');
2012-10-28 08:00:19 +00:00
} else {
2013-05-25 08:01:03 +00:00
include(SERVER_ROOT.'/sections/collages/torrent_collage.php');
2011-03-28 14:21:28 +00:00
}