punbb/index.php
changeset 7 98bbc533541c
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/punbb/index.php	Sun Apr 06 00:28:50 2008 -0400
@@ -0,0 +1,270 @@
+<?php
+/***********************************************************************
+
+  Copyright (C) 2002-2008  PunBB.org
+
+  This file is part of PunBB.
+
+  PunBB is free software; you can redistribute it and/or modify it
+  under the terms of the GNU General Public License as published
+  by the Free Software Foundation; either version 2 of the License,
+  or (at your option) any later version.
+
+  PunBB is distributed in the hope that it will be useful, but
+  WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software
+  Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+  MA  02111-1307  USA
+
+************************************************************************/
+
+
+// if (!defined('PUN_ROOT'))
+// 	define('PUN_ROOT', './');
+// require PUN_ROOT.'include/common.php';
+
+// import globals (I really hope this isn't dangerous)
+foreach ( $GLOBALS as $key => $_ )
+{
+  $$key =& $GLOBALS[$key];
+}
+
+($hook = get_hook('in_start')) ? eval($hook) : null;
+
+if ($pun_user['g_read_board'] == '0')
+	message($lang_common['No view']);
+
+// Load the index.php language file
+require PUN_ROOT.'lang/'.$pun_user['language'].'/index.php';
+
+// Get list of forums and topics with new posts since last visit
+if (!$pun_user['is_guest'])
+{
+	$query = array(
+		'SELECT'	=> 't.forum_id, t.id, t.last_post',
+		'FROM'		=> 'topics AS t',
+		'JOINS'		=> array(
+			array(
+				'INNER JOIN'	=> 'forums AS f',
+				'ON'			=> 'f.id=t.forum_id'
+			),
+			array(
+				'LEFT JOIN'		=> '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 t.last_post>'.$pun_user['last_visit'].' AND t.moved_to IS NULL'
+	);
+
+	($hook = get_hook('in_qr_get_new_topics')) ? eval($hook) : null;
+	$result = $pun_db->query_build($query, true) or error(__FILE__, __LINE__);
+
+	$new_topics = array();
+	while ($cur_topic = $pun_db->fetch_assoc($result))
+		$new_topics[$cur_topic['forum_id']][$cur_topic['id']] = $cur_topic['last_post'];
+
+	$tracked_topics = get_tracked_topics();
+}
+
+($hook = get_hook('in_pre_header_load')) ? eval($hook) : null;
+
+define('PUN_ALLOW_INDEX', 1);
+define('PUN_PAGE', 'index');
+
+require PUN_ROOT.'header.php';
+
+// Print the categories and forums
+$query = array(
+	'SELECT'	=> 'c.id AS cid, c.cat_name, f.id AS fid, f.forum_name, f.forum_desc, f.redirect_url, f.moderators, f.num_topics, f.num_posts, f.last_post, f.last_post_id, f.last_poster',
+	'FROM'		=> 'categories AS c',
+	'JOINS'		=> array(
+		array(
+			'INNER JOIN'	=> 'forums AS f',
+			'ON'			=> 'c.id=f.cat_id'
+		),
+		array(
+			'LEFT JOIN'		=> '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',
+	'ORDER BY'	=> 'c.disp_position, c.id, f.disp_position'
+);
+
+($hook = get_hook('in_qr_get_cats_and_forums')) ? eval($hook) : null;
+$result = $pun_db->query_build($query, true) or error(__FILE__, __LINE__);
+
+?>
+<div id="pun-main" class="main">
+
+	<h1><span><?php echo htmlspecialchars($pun_config['o_board_title']) ?></span></h1>
+<?php
+
+$pun_page['cur_category'] = $pun_page['cat_count'] = $pun_page['item_count'] = 0;
+
+while ($cur_forum = $pun_db->fetch_assoc($result))
+{
+	($hook = get_hook('in_forum_loop_start')) ? eval($hook) : null;
+
+	$pun_page['item_mods'] = '';
+	++$pun_page['item_count'];
+
+	if ($cur_forum['cid'] != $pun_page['cur_category'])	// A new category since last iteration?
+	{
+		if ($pun_page['cur_category'] != 0)
+		{
+
+?>
+			</tbody>
+		</table>
+	</div>
+<?php
+
+		}
+
+		++$pun_page['cat_count'];
+		$pun_page['item_count'] = 1;
+
+?>
+	<div class="main-head">
+		<h2><span><?php echo htmlspecialchars($cur_forum['cat_name']) ?></span></h2>
+	</div>
+
+	<div id="category<?php echo $pun_page['cat_count'] ?>" class="main-content category">
+		<table cellspacing="0" summary="<?php printf($lang_index['Table summary'], htmlspecialchars($cur_forum['cat_name'])) ?>">
+			<thead>
+				<tr>
+					<th class="tcl" scope="col"><?php echo $lang_common['Forum'] ?></th>
+					<th class="tc2" scope="col"><?php echo $lang_common['Topics'] ?></th>
+					<th class="tc3" scope="col"><?php echo $lang_common['Posts'] ?></th>
+<?php ($hook = get_hook('in_table_header_after_num_posts')) ? eval($hook) : null; ?>
+					<th class="tcr" scope="col"><?php echo $lang_common['Last post'] ?></th>
+<?php ($hook = get_hook('in_table_header_after_last_post')) ? eval($hook) : null; ?>
+				</tr>
+			</thead>
+			<tbody class="statused">
+<?php
+
+		$pun_page['cur_category'] = $cur_forum['cid'];
+	}
+
+	$pun_page['item_status'] = $pun_page['item_subject'] = $pun_page['item_last_post'] = array();
+	$pun_page['item_alt_message'] = $lang_common['Forum'];
+	$pun_page['item_indicator'] = '';
+
+	// Is this a redirect forum?
+	if ($cur_forum['redirect_url'] != '')
+	{
+		$pun_page['item_title'] = '<h3><a class="external" href="'.htmlspecialchars($cur_forum['redirect_url']).'" title="'.sprintf($lang_index['Link to'], htmlspecialchars($cur_forum['redirect_url'])).'"><span>'.htmlspecialchars($cur_forum['forum_name']).'</span></a></h3>';
+		$cur_forum['num_topics'] = $cur_forum['num_posts'] = ' - ';
+		$pun_page['item_status'][] = 'redirect';
+		$pun_page['item_alt_message'] = $lang_index['External forum'];
+		$pun_page['item_last_post'][] = $lang_common['Unknown'];
+
+		if ($cur_forum['forum_desc'] != '')
+			$pun_page['item_subject'][] = $cur_forum['forum_desc'];
+	}
+	else
+	{
+		$pun_page['item_title'] = '<h3><a href="'.pun_link($pun_url['forum'], array($cur_forum['fid'], sef_friendly($cur_forum['forum_name']))).'"><span>'.htmlspecialchars($cur_forum['forum_name']).'</span></a></h3>';
+
+		// Are there new posts since our last visit?
+		if (!$pun_user['is_guest'] && $cur_forum['last_post'] > $pun_user['last_visit'] && (empty($tracked_topics['forums'][$cur_forum['fid']]) || $cur_forum['last_post'] > $tracked_topics['forums'][$cur_forum['fid']]))
+		{
+			// There are new posts in this forum, but have we read all of them already?
+			while (list($check_topic_id, $check_last_post) = @each($new_topics[$cur_forum['fid']]))
+			{
+				if (empty($tracked_topics['topics'][$check_topic_id]) || $tracked_topics['topics'][$check_topic_id] < $check_last_post)
+				{
+					$pun_page['item_status'][] = 'new';
+					$pun_page['item_alt_message'] = $lang_index['Forum has new'];
+					break;
+				}
+			}
+		}
+
+		if ($cur_forum['forum_desc'] != '')
+			$pun_page['item_subject'][] = $cur_forum['forum_desc'];
+
+		if ($cur_forum['moderators'] != '')
+		{
+			$pun_page['mods_array'] = unserialize($cur_forum['moderators']);
+			$pun_page['item_mods'] = array();
+
+			while (list($mod_username, $mod_id) = @each($pun_page['mods_array']))
+				$pun_page['item_mods'][] = '<a href="'.pun_link($pun_url['user'], $mod_id).'">'.htmlspecialchars($mod_username).'</a>';
+
+			$pun_page['item_subject'][] = '<span class="modlist">('.sprintf($lang_index['Moderated by'], implode(', ', $pun_page['item_mods'])).')</span>';
+		}
+
+		// If there is a last_post/last_poster.
+		if ($cur_forum['last_post'] != '')
+		{
+			$pun_page['item_last_post'][] = '<a href="'.pun_link($pun_url['post'], $cur_forum['last_post_id']).'"><span>'.format_time($cur_forum['last_post']).'</span></a>';
+			$pun_page['item_last_post'][] =	'<span class="byuser">'.sprintf($lang_common['By user'], htmlspecialchars($cur_forum['last_poster'])).'</span>';
+		}
+		else
+			$pun_page['item_last_post'][] = $lang_common['Never'];
+
+		if (empty($pun_page['item_status']))
+			$pun_page['item_status'][] = 'normal';
+	}
+
+	$pun_page['item_style'] = (($pun_page['item_count'] % 2 != 0) ? 'odd' : 'even').' '.implode(' ', $pun_page['item_status']);
+	$pun_page['item_indicator'] = '<span class="status '.implode(' ', $pun_page['item_status']).'" title="'.$pun_page['item_alt_message'].'"><img src="'.$base_url.'/style/'.$pun_user['style'].'/status.png" alt="'.$pun_page['item_alt_message'].'" /></span>';
+
+	($hook = get_hook('in_row_pre_display')) ? eval($hook) : null;
+
+?>
+				<tr id="forum<?php echo $cur_forum['fid'] ?>" class="<?php echo $pun_page['item_style'] ?>">
+					<td class="tcl"><?php echo $pun_page['item_indicator'].' '.$pun_page['item_title'].implode('<br />', $pun_page['item_subject']) ?></td>
+					<td class="tc2"><?php echo $cur_forum['num_topics'] ?></td>
+					<td class="tc3"><?php echo $cur_forum['num_posts'] ?></td>
+<?php ($hook = get_hook('in_table_contents_after_num_posts')) ? eval($hook) : null; ?>
+					<td class="tcr"><?php if (!empty($pun_page['item_last_post'])) echo implode(' ', $pun_page['item_last_post']) ?></td>
+<?php ($hook = get_hook('in_table_contents_after_last_post')) ? eval($hook) : null; ?>
+				</tr>
+<?php
+
+}
+
+// Did we output any categories and forums?
+if ($pun_page['cur_category'] > 0)
+{
+
+?>
+			</tbody>
+		</table>
+	</div>
+
+</div>
+<?php
+
+}
+else
+{
+
+?>
+<div id="pun-main" class="main">
+
+	<h1><span><?php echo htmlspecialchars($pun_config['o_board_title']) ?></span></h1>
+
+	<div class="main-head">
+		<h2><span><?php echo $lang_common['Forum message'] ?></span></h2>
+	</div>
+	<div class="main-content message">
+		<p><?php echo $lang_index['Empty board'] ?></p>
+	</div>
+
+</div>
+<?php
+
+}
+
+($hook = get_hook('in_end')) ? eval($hook) : null;
+
+require PUN_ROOT.'footer.php';