mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 19:06:27 +00:00
170 lines
6.2 KiB
PHP
170 lines
6.2 KiB
PHP
<?php
|
|
if (!empty($LoggedUser['DisableForums'])) {
|
|
error(403);
|
|
}
|
|
|
|
$UnreadSQL = 'AND q.UnRead';
|
|
if ($_GET['showall']) {
|
|
$UnreadSQL = '';
|
|
}
|
|
|
|
if ($_GET['catchup']) {
|
|
$DB->query("UPDATE users_notify_quoted SET UnRead = '0' WHERE UserID = '$LoggedUser[ID]'");
|
|
$Cache->delete_value('notify_quoted_' . $LoggedUser['ID']);
|
|
header('Location: userhistory.php?action=quote_notifications');
|
|
die();
|
|
}
|
|
|
|
if (isset($LoggedUser['PostsPerPage'])) {
|
|
$PerPage = $LoggedUser['PostsPerPage'];
|
|
} else {
|
|
$PerPage = POSTS_PER_PAGE;
|
|
}
|
|
list($Page, $Limit) = Format::page_limit($PerPage);
|
|
|
|
// Get $Limit last quote notifications
|
|
// We deal with the information about torrents and requests later on...
|
|
$sql = "
|
|
SELECT
|
|
SQL_CALC_FOUND_ROWS
|
|
q.Page,
|
|
q.PageID,
|
|
q.PostID,
|
|
q.QuoterID,
|
|
q.Date,
|
|
q.UnRead,
|
|
f.ID as ForumID,
|
|
f.Name as ForumName,
|
|
t.Title as ForumTitle,
|
|
a.Name as ArtistName,
|
|
c.Name as CollageName
|
|
FROM users_notify_quoted AS q
|
|
LEFT JOIN forums_topics AS t ON t.ID = q.PageID
|
|
LEFT JOIN forums AS f ON f.ID = t.ForumID
|
|
LEFT JOIN artists_group AS a ON a.ArtistID = q.PageID
|
|
LEFT JOIN collages AS c ON c.ID = q.PageID
|
|
WHERE q.UserID = $LoggedUser[ID]
|
|
AND (q.Page != 'forums' OR " . Forums::user_forums_sql() . ")
|
|
AND (q.Page != 'collages' OR c.Deleted = '0')
|
|
$UnreadSQL
|
|
ORDER BY q.Date DESC
|
|
LIMIT $Limit";
|
|
$DB->query($sql);
|
|
$Results = $DB->to_array(false, MYSQLI_ASSOC, false);
|
|
$DB->query('SELECT FOUND_ROWS()');
|
|
list($NumResults) = $DB->next_record();
|
|
|
|
$TorrentGroups = $Requests = array();
|
|
foreach ($Results as $Result) {
|
|
if ($Result['Page'] == 'torrents') {
|
|
$TorrentGroups[] = $Result['PageID'];
|
|
} elseif ($Result['Page'] == 'requests') {
|
|
$Requests[] = $Result['PageID'];
|
|
}
|
|
}
|
|
|
|
$TorrentGroups = Torrents::get_groups($TorrentGroups, true, true, false);
|
|
$Requests = Requests::get_requests($Requests);
|
|
|
|
//Start printing page
|
|
View::show_header('Quote Notifications');
|
|
?>
|
|
<div class="thin">
|
|
<div class="header">
|
|
<h2>
|
|
Quote notifications
|
|
<?=$NumResults && !empty($UnreadSQL) ? " ($NumResults new)" : '' ?>
|
|
</h2>
|
|
<div class="linkbox pager">
|
|
<br />
|
|
<? if ($UnreadSQL) { ?>
|
|
<a href="userhistory.php?action=quote_notifications&showall=1" class="brackets">Show all quotes</a>
|
|
<? } else { ?>
|
|
<a href="userhistory.php?action=quote_notifications" class="brackets">Show unread quotes</a>
|
|
<? } ?>
|
|
<a href="userhistory.php?action=subscriptions" class="brackets">Show subscriptions</a>
|
|
<a href="userhistory.php?action=quote_notifications&catchup=1" class="brackets">Catch up</a>
|
|
<br /><br />
|
|
<?
|
|
$Pages = Format::get_pages($Page, $NumResults, TOPICS_PER_PAGE, 9);
|
|
echo $Pages;
|
|
?>
|
|
</div>
|
|
</div>
|
|
<? if (!$NumResults) { ?>
|
|
<div class="center">No<?=($UnreadSQL ? ' new' : '')?> quotes.</div>
|
|
<? } ?>
|
|
<br />
|
|
<?
|
|
foreach ($Results as $Result) {
|
|
switch ($Result['Page']) {
|
|
case 'forums':
|
|
$Links = 'Forums: <a href="forums.php?action=viewforum&forumid=' . $Result['ForumID'] . '">' . display_str($Result['ForumName']) . '</a> > ' .
|
|
'<a href="forums.php?action=viewthread&threadid=' . $Result['PageID'] . '" title="' . display_str($Result['ForumTitle']) . '">' . Format::cut_string($Result['ForumTitle'], 75) . '</a>';
|
|
$JumpLink = 'forums.php?action=viewthread&threadid=' . $Result['PageID'] . '&postid=' . $Result['PostID'] . '#post' . $Result['PostID'];
|
|
break;
|
|
case 'artist':
|
|
$Links = 'Artist: <a href="artist.php?id=' . $Result['PageID'] . '">' . display_str($Result['ArtistName']) . '</a>';
|
|
$JumpLink = 'artist.php?id=' . $Result['PageID'] . '&postid=' . $Result['PostID'] . '#post' . $Result['PostID'];
|
|
break;
|
|
case 'collages':
|
|
$Links = 'Collage: <a href="collages.php?id=' . $Result['PageID'] . '">' . display_str($Result['CollageName']) . '</a>';
|
|
$JumpLink = 'collages.php?action=comments&collageid=' . $Result['PageID'] . '&postid=' . $Result['PostID'] . '#post' . $Result['PostID'];
|
|
break;
|
|
case 'requests':
|
|
if (!isset($Requests[$Result['PageID']])) {
|
|
// Deleted request
|
|
continue 2;
|
|
}
|
|
$Request = $Requests[$Result['PageID']];
|
|
$CategoryName = $Categories[$Request['CategoryID'] - 1];
|
|
$Links = 'Request: ';
|
|
if ($CategoryName == 'Music') {
|
|
$Links .= Artists::display_artists(Requests::get_artists($Result['PageID'])) . '<a href="requests.php?action=view&id=' . $Result['PageID'] . '" dir="ltr">' . $Request['Title'] . " [" . $Request['Year'] . "]</a>";
|
|
} elseif ($CategoryName == "Audiobooks" || $CategoryName == "Comedy") {
|
|
$Links .= '<a href="requests.php?action=view&id=' . $Result['PageID'] . '" dir="ltr">' . $Request['Title'] . " [" . $Request['Year'] . "]</a>";
|
|
} else {
|
|
$Links .= '<a href="requests.php?action=view&id=' . $Result['PageID'] . '">' . $Request['Title'] . "</a>";
|
|
}
|
|
$JumpLink = 'requests.php?action=view&id=' . $Result['PageID'] . '&postid=' . $Result['PostID'] . '#post' . $Result['PostID'];
|
|
break;
|
|
case 'torrents':
|
|
if (!isset($TorrentGroups[$Result['PageID']])) {
|
|
// Deleted or moved torrent group
|
|
continue 2;
|
|
}
|
|
$GroupInfo = $TorrentGroups[$Result['PageID']];
|
|
$Links = 'Torrent: ' . Artists::display_artists($GroupInfo['ExtendedArtists']) . '<a href="torrents.php?id=' . $GroupInfo['ID'] . '" dir="ltr">' . $GroupInfo['Name'] . '</a>';
|
|
if ($GroupInfo['Year'] > 0) {
|
|
$Links .= " [" . $GroupInfo['Year'] . "]";
|
|
}
|
|
if ($GroupInfo['ReleaseType'] > 0) {
|
|
$Links .= " [" . $ReleaseTypes[$GroupInfo['ReleaseType']] . "]";
|
|
}
|
|
$JumpLink = 'torrents.php?id=' . $GroupInfo['ID'] . '&postid=' . $Result['PostID'] . '#post' . $Result['PostID'];
|
|
break;
|
|
default:
|
|
continue 2;
|
|
}
|
|
?>
|
|
<table class="forum_post box vertical_margin noavatar">
|
|
<tr class="colhead_dark notify_<?=$Result['Page']?>">
|
|
<td colspan="2">
|
|
<span style="float: left;">
|
|
<?=$Links?>
|
|
> Quoted by <?=Users::format_username($Result['QuoterID'], false, false, false, false) . ' ' . time_diff($Result['Date']) ?>
|
|
<?=($Result['UnRead'] ? ' <span class="new">(New!)</span>' : '')?>
|
|
</span>
|
|
<span style="float: left;" class="tooltip last_read" title="Jump to quote">
|
|
<a href="<?=$JumpLink?>"></a>
|
|
</span>
|
|
<span style="float: right;">
|
|
<a href="#">↑</a>
|
|
</span>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<? } ?>
|
|
</div>
|
|
<? View::show_footer(); ?>
|