From 3b06ee0d381dc1be5f40ca98ad4278046d869d21 Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Sun, 17 Nov 2019 20:57:39 +0100 Subject: checked in initial customized verison for Archlinux32 --- viewforum.php | 311 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 311 insertions(+) create mode 100644 viewforum.php (limited to 'viewforum.php') diff --git a/viewforum.php b/viewforum.php new file mode 100644 index 0000000..2607a21 --- /dev/null +++ b/viewforum.php @@ -0,0 +1,311 @@ +query('SELECT f.forum_name, f.redirect_url, f.moderators, f.num_topics, f.sort_by, fp.post_topics, s.user_id AS is_subscribed FROM '.$db->prefix.'forums AS f LEFT JOIN '.$db->prefix.'forum_subscriptions AS s ON (f.id=s.forum_id AND s.user_id='.$pun_user['id'].') LEFT JOIN '.$db->prefix.'forum_perms AS fp ON (fp.forum_id=f.id AND fp.group_id='.$pun_user['g_id'].') WHERE (fp.read_forum IS NULL OR fp.read_forum=1) AND f.id='.$id) or error('Unable to fetch forum info', __FILE__, __LINE__, $db->error()); +else + $result = $db->query('SELECT f.forum_name, f.redirect_url, f.moderators, f.num_topics, f.sort_by, fp.post_topics, 0 AS is_subscribed FROM '.$db->prefix.'forums AS f LEFT JOIN '.$db->prefix.'forum_perms AS fp ON (fp.forum_id=f.id AND fp.group_id='.$pun_user['g_id'].') WHERE (fp.read_forum IS NULL OR fp.read_forum=1) AND f.id='.$id) or error('Unable to fetch forum info', __FILE__, __LINE__, $db->error()); + +if (!$db->num_rows($result)) + message($lang_common['Bad request'], false, '404 Not Found'); + +$cur_forum = $db->fetch_assoc($result); + +// Is this a redirect forum? In that case, redirect! +if ($cur_forum['redirect_url'] != '') +{ + header('Location: '.$cur_forum['redirect_url']); + exit; +} + +// Sort out who the moderators are and if we are currently a moderator (or an admin) +$mods_array = ($cur_forum['moderators'] != '') ? unserialize($cur_forum['moderators']) : array(); +$is_admmod = ($pun_user['g_id'] == PUN_ADMIN || ($pun_user['g_moderator'] == '1' && array_key_exists($pun_user['username'], $mods_array))) ? true : false; + +switch ($cur_forum['sort_by']) +{ + case 0: + $sort_by = 'last_post DESC'; + break; + case 1: + $sort_by = 'posted DESC'; + break; + case 2: + $sort_by = 'subject ASC'; + break; + default: + $sort_by = 'last_post DESC'; + break; +} + +// Can we or can we not post new topics? +if (($cur_forum['post_topics'] == '' && $pun_user['g_post_topics'] == '1') || $cur_forum['post_topics'] == '1' || $is_admmod) + $post_link = "\t\t\t".''."\n"; +else + $post_link = ''; + +// Get topic/forum tracking data +if (!$pun_user['is_guest']) + $tracked_topics = get_tracked_topics(); + +// Determine the topic offset (based on $_GET['p']) +$num_pages = ceil($cur_forum['num_topics'] / $pun_user['disp_topics']); + +$p = (!isset($_GET['p']) || $_GET['p'] <= 1 || $_GET['p'] > $num_pages) ? 1 : intval($_GET['p']); +$start_from = $pun_user['disp_topics'] * ($p - 1); + +// Generate paging links +$paging_links = ''.$lang_common['Pages'].' '.paginate($num_pages, $p, 'viewforum.php?id='.$id); + +// Add relationship meta tags +$page_head = array(); +$page_head['canonical'] = ''; + +if ($num_pages > 1) +{ + if ($p > 1) + $page_head['prev'] = ''; + if ($p < $num_pages) + $page_head['next'] = ''; +} + +if ($pun_config['o_feed_type'] == '1') + $page_head['feed'] = ''; +else if ($pun_config['o_feed_type'] == '2') + $page_head['feed'] = ''; + +$forum_actions = array(); + +if (!$pun_user['is_guest']) +{ + $token_url = '&csrf_token='.pun_csrf_token(); + + if ($pun_config['o_forum_subscriptions'] == '1') + { + if ($cur_forum['is_subscribed']) + $forum_actions[] = ''.$lang_forum['Is subscribed'].' - '.$lang_forum['Unsubscribe'].''; + else + $forum_actions[] = ''.$lang_forum['Subscribe'].''; + } + + $forum_actions[] = ''.$lang_common['Mark forum read'].''; +} + +$page_title = array(pun_htmlspecialchars($pun_config['o_board_title']), pun_htmlspecialchars($cur_forum['forum_name'])); +define('PUN_ALLOW_INDEX', 1); +define('PUN_ACTIVE_PAGE', 'index'); +require PUN_ROOT.'header.php'; + +?> +
+
+
    +
  • +
  • » 
  • +
+
+ + +
+
+
+
+ +
+

+
+
+ + + + + + + + + + +query('SELECT id FROM '.$db->prefix.'topics WHERE forum_id='.$id.' ORDER BY sticky DESC, '.$sort_by.', id DESC LIMIT '.$start_from.', '.$pun_user['disp_topics']) or error('Unable to fetch topic IDs', __FILE__, __LINE__, $db->error()); + +// If there are topics in this forum +if ($db->num_rows($result)) +{ + $topic_ids = array(); + for ($i = 0; $cur_topic_id = $db->result($result, $i); $i++) + $topic_ids[] = $cur_topic_id; + + // Fetch list of topics to display on this page + if ($pun_user['is_guest'] || $pun_config['o_show_dot'] == '0') + { + // Without "the dot" + $sql = 'SELECT id, poster, subject, posted, last_post, last_post_id, last_poster, num_views, num_replies, closed, sticky, moved_to FROM '.$db->prefix.'topics WHERE id IN('.implode(',', $topic_ids).') ORDER BY sticky DESC, '.$sort_by.', id DESC'; + } + else + { + // With "the dot" + $sql = 'SELECT p.poster_id AS has_posted, t.id, t.subject, t.poster, t.posted, t.last_post, t.last_post_id, t.last_poster, t.num_views, t.num_replies, t.closed, t.sticky, t.moved_to FROM '.$db->prefix.'topics AS t LEFT JOIN '.$db->prefix.'posts AS p ON t.id=p.topic_id AND p.poster_id='.$pun_user['id'].' WHERE t.id IN('.implode(',', $topic_ids).') GROUP BY t.id'.($db_type == 'pgsql' ? ', t.subject, t.poster, t.posted, t.last_post, t.last_post_id, t.last_poster, t.num_views, t.num_replies, t.closed, t.sticky, t.moved_to, p.poster_id' : '').' ORDER BY t.sticky DESC, t.'.$sort_by.', t.id DESC'; + } + + $result = $db->query($sql) or error('Unable to fetch topic list', __FILE__, __LINE__, $db->error()); + + $topic_count = 0; + while ($cur_topic = $db->fetch_assoc($result)) + { + ++$topic_count; + $status_text = array(); + $item_status = ($topic_count % 2 == 0) ? 'roweven' : 'rowodd'; + $icon_type = 'icon'; + + if (is_null($cur_topic['moved_to'])) + $last_post = ''.format_time($cur_topic['last_post']).''.$lang_common['by'].' '.pun_htmlspecialchars($cur_topic['last_poster']).''; + else + $last_post = '- - -'; + + if ($pun_config['o_censoring'] == '1') + $cur_topic['subject'] = censor_words($cur_topic['subject']); + + if ($cur_topic['sticky'] == '1') + { + $item_status .= ' isticky'; + $status_text[] = ''.$lang_forum['Sticky'].''; + } + + if ($cur_topic['moved_to'] != 0) + { + $subject = ''.pun_htmlspecialchars($cur_topic['subject']).''.$lang_common['by'].' '.pun_htmlspecialchars($cur_topic['poster']).''; + $status_text[] = ''.$lang_forum['Moved'].''; + $item_status .= ' imoved'; + } + else if ($cur_topic['closed'] == '0') + $subject = ''.pun_htmlspecialchars($cur_topic['subject']).''.$lang_common['by'].' '.pun_htmlspecialchars($cur_topic['poster']).''; + else + { + $subject = ''.pun_htmlspecialchars($cur_topic['subject']).''.$lang_common['by'].' '.pun_htmlspecialchars($cur_topic['poster']).''; + $status_text[] = ''.$lang_forum['Closed'].''; + $item_status .= ' iclosed'; + } + + if (!$pun_user['is_guest'] && $cur_topic['last_post'] > $pun_user['last_visit'] && (!isset($tracked_topics['topics'][$cur_topic['id']]) || $tracked_topics['topics'][$cur_topic['id']] < $cur_topic['last_post']) && (!isset($tracked_topics['forums'][$id]) || $tracked_topics['forums'][$id] < $cur_topic['last_post']) && is_null($cur_topic['moved_to'])) + { + $item_status .= ' inew'; + $icon_type = 'icon icon-new'; + $subject = ''.$subject.''; + $subject_new_posts = '[ '.$lang_common['New posts'].' ]'; + } + else + $subject_new_posts = null; + + // Insert the status text before the subject + $subject = implode(' ', $status_text).' '.$subject; + + // Should we display the dot or not? :) + if (!$pun_user['is_guest'] && $pun_config['o_show_dot'] == '1') + { + if ($cur_topic['has_posted'] == $pun_user['id']) + { + $subject = '· '.$subject; + $item_status .= ' iposted'; + } + } + + $num_pages_topic = ceil(($cur_topic['num_replies'] + 1) / $pun_user['disp_posts']); + + if ($num_pages_topic > 1) + $subject_multipage = '[ '.paginate($num_pages_topic, -1, 'viewtopic.php?id='.$cur_topic['id']).' ]'; + else + $subject_multipage = null; + + // Should we show the "New posts" and/or the multipage links? + if (!empty($subject_new_posts) || !empty($subject_multipage)) + { + $subject .= !empty($subject_new_posts) ? ' '.$subject_new_posts : ''; + $subject .= !empty($subject_multipage) ? ' '.$subject_multipage : ''; + } + +?> + + + + + + + + + + + + +
+
+
+
+ +
+
+
+
+
+
+ +
+
+
+
+
+
+ +
+
+
+ + +
+
    +
  • +
  • » 
  • +
+'.implode(' - ', $forum_actions).'

'."\n" : '') ?> +
+
+
+