2 /***************************************************************************
5 * begin : Saturday, Feb 13, 2001
6 * copyright : (C) 2001 The phpBB Group
7 * email : support@phpbb.com
9 * $Id: index.php,v 1.99.2.3 2004/07/11 16:46:15 acydburn Exp $
12 ***************************************************************************/
14 /***************************************************************************
16 * This program is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License as published by
18 * the Free Software Foundation; either version 2 of the License, or
19 * (at your option) any later version.
21 ***************************************************************************/
23 define('IN_PHPBB', true);
24 $phpbb_root_path = './';
25 include($phpbb_root_path . 'extension.inc');
26 include($phpbb_root_path . 'common.'.$phpEx);
29 // Start session management
31 $userdata = session_pagestart($user_ip, PAGE_INDEX);
32 init_userprefs($userdata);
34 // End session management
37 $viewcat = ( !empty($HTTP_GET_VARS[POST_CAT_URL]) ) ? $HTTP_GET_VARS[POST_CAT_URL] : -1;
39 if( isset($HTTP_GET_VARS['mark']) || isset($HTTP_POST_VARS['mark']) )
41 $mark_read = ( isset($HTTP_POST_VARS['mark']) ) ? $HTTP_POST_VARS['mark'] : $HTTP_GET_VARS['mark'];
49 // Handle marking posts
51 if( $mark_read == 'forums' )
53 if( $userdata['session_logged_in'] )
55 setcookie($board_config['cookie_name'] . '_f_all', time(), 0, $board_config['cookie_path'], $board_config['cookie_domain'], $board_config['cookie_secure']);
58 $template->assign_vars(array(
59 "META" => '<meta http-equiv="refresh" content="3;url=' .append_sid("index.$phpEx") . '">')
62 $message = $lang['Forums_marked_read'] . '<br /><br />' . sprintf($lang['Click_return_index'], '<a href="' . append_sid("index.$phpEx") . '">', '</a> ');
64 message_die(GENERAL_MESSAGE, $message);
67 // End handle marking posts
70 $tracking_topics = ( isset($HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_t']) ) ? unserialize($HTTP_COOKIE_VARS[$board_config['cookie_name'] . "_t"]) : array();
71 $tracking_forums = ( isset($HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_f']) ) ? unserialize($HTTP_COOKIE_VARS[$board_config['cookie_name'] . "_f"]) : array();
74 // If you don't use these stats on your index you may want to consider
77 $total_posts = get_db_stat('postcount');
78 $total_users = get_db_stat('usercount');
79 $newest_userdata = get_db_stat('newestuser');
80 $newest_user = $newest_userdata['username'];
81 $newest_uid = $newest_userdata['user_id'];
83 if( $total_posts == 0 )
85 $l_total_post_s = $lang['Posted_articles_zero_total'];
87 else if( $total_posts == 1 )
89 $l_total_post_s = $lang['Posted_article_total'];
93 $l_total_post_s = $lang['Posted_articles_total'];
96 if( $total_users == 0 )
98 $l_total_user_s = $lang['Registered_users_zero_total'];
100 else if( $total_users == 1 )
102 $l_total_user_s = $lang['Registered_user_total'];
106 $l_total_user_s = $lang['Registered_users_total'];
113 $sql = "SELECT c.cat_id, c.cat_title, c.cat_order
114 FROM " . CATEGORIES_TABLE . " c
115 ORDER BY c.cat_order";
116 if( !($result = $db->sql_query($sql)) )
118 message_die(GENERAL_ERROR, 'Could not query categories list', '', __LINE__, __FILE__, $sql);
121 $category_rows = array();
122 while( $category_rows[] = $db->sql_fetchrow($result) );
123 $db->sql_freeresult($result);
125 if( ( $total_categories = count($category_rows) ) )
128 // Define appropriate SQL
133 $sql = "SELECT f.*, p.post_time, p.post_username, u.username, u.user_id
134 FROM " . FORUMS_TABLE . " f, " . POSTS_TABLE . " p, " . USERS_TABLE . " u
135 WHERE p.post_id = f.forum_last_post_id
136 AND u.user_id = p.poster_id
138 SELECT f.*, NULL, NULL, NULL, NULL
139 FROM " . FORUMS_TABLE . " f
142 FROM " . POSTS_TABLE . " p
143 WHERE p.post_id = f.forum_last_post_id
146 ORDER BY cat_id, forum_order";
150 $sql = "SELECT f.*, p.post_time, p.post_username, u.username, u.user_id
151 FROM " . FORUMS_TABLE . " f, " . POSTS_TABLE . " p, " . USERS_TABLE . " u
152 WHERE p.post_id = f.forum_last_post_id(+)
153 AND u.user_id = p.poster_id(+)
154 ORDER BY f.cat_id, f.forum_order";
158 $sql = "SELECT f.*, p.post_time, p.post_username, u.username, u.user_id
159 FROM (( " . FORUMS_TABLE . " f
160 LEFT JOIN " . POSTS_TABLE . " p ON p.post_id = f.forum_last_post_id )
161 LEFT JOIN " . USERS_TABLE . " u ON u.user_id = p.poster_id )
162 ORDER BY f.cat_id, f.forum_order";
165 if ( !($result = $db->sql_query($sql)) )
167 message_die(GENERAL_ERROR, 'Could not query forums information', '', __LINE__, __FILE__, $sql);
170 $forum_data = array();
171 while( $row = $db->sql_fetchrow($result) )
173 $forum_data[] = $row;
175 $db->sql_freeresult($result);
177 if ( !($total_forums = count($forum_data)) )
179 message_die(GENERAL_MESSAGE, $lang['No_forums']);
183 // Obtain a list of topic ids which contain
184 // posts made since user last visited
186 if ( $userdata['session_logged_in'] )
188 $sql = "SELECT t.forum_id, t.topic_id, p.post_time
189 FROM " . TOPICS_TABLE . " t, " . POSTS_TABLE . " p
190 WHERE p.post_id = t.topic_last_post_id
191 AND p.post_time > " . $userdata['user_lastvisit'] . "
192 AND t.topic_moved_id = 0";
193 if ( !($result = $db->sql_query($sql)) )
195 message_die(GENERAL_ERROR, 'Could not query new topic information', '', __LINE__, __FILE__, $sql);
198 $new_topic_data = array();
199 while( $topic_data = $db->sql_fetchrow($result) )
201 $new_topic_data[$topic_data['forum_id']][$topic_data['topic_id']] = $topic_data['post_time'];
203 $db->sql_freeresult($result);
207 // Obtain list of moderators of each forum
208 // First users, then groups ... broken into two queries
210 $sql = "SELECT aa.forum_id, u.user_id, u.username
211 FROM " . AUTH_ACCESS_TABLE . " aa, " . USER_GROUP_TABLE . " ug, " . GROUPS_TABLE . " g, " . USERS_TABLE . " u
212 WHERE aa.auth_mod = " . TRUE . "
213 AND g.group_single_user = 1
214 AND ug.group_id = aa.group_id
215 AND g.group_id = aa.group_id
216 AND u.user_id = ug.user_id
217 GROUP BY u.user_id, u.username, aa.forum_id
218 ORDER BY aa.forum_id, u.user_id";
219 if ( !($result = $db->sql_query($sql)) )
221 message_die(GENERAL_ERROR, 'Could not query forum moderator information', '', __LINE__, __FILE__, $sql);
224 $forum_moderators = array();
225 while( $row = $db->sql_fetchrow($result) )
227 $forum_moderators[$row['forum_id']][] = '<a href="' . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=" . $row['user_id']) . '">' . $row['username'] . '</a>';
229 $db->sql_freeresult($result);
231 $sql = "SELECT aa.forum_id, g.group_id, g.group_name
232 FROM " . AUTH_ACCESS_TABLE . " aa, " . USER_GROUP_TABLE . " ug, " . GROUPS_TABLE . " g
233 WHERE aa.auth_mod = " . TRUE . "
234 AND g.group_single_user = 0
235 AND g.group_type <> " . GROUP_HIDDEN . "
236 AND ug.group_id = aa.group_id
237 AND g.group_id = aa.group_id
238 GROUP BY g.group_id, g.group_name, aa.forum_id
239 ORDER BY aa.forum_id, g.group_id";
240 if ( !($result = $db->sql_query($sql)) )
242 message_die(GENERAL_ERROR, 'Could not query forum moderator information', '', __LINE__, __FILE__, $sql);
245 while( $row = $db->sql_fetchrow($result) )
247 $forum_moderators[$row['forum_id']][] = '<a href="' . append_sid("groupcp.$phpEx?" . POST_GROUPS_URL . "=" . $row['group_id']) . '">' . $row['group_name'] . '</a>';
249 $db->sql_freeresult($result);
252 // Find which forums are visible for this user
254 $is_auth_ary = array();
255 $is_auth_ary = auth(AUTH_VIEW, AUTH_LIST_ALL, $userdata, $forum_data);
258 // Start output of page
260 define('SHOW_ONLINE', true);
261 $page_title = $lang['Index'];
262 include($phpbb_root_path . 'includes/page_header.'.$phpEx);
264 $template->set_filenames(array(
265 'body' => 'index_body.tpl')
268 $template->assign_vars(array(
269 'TOTAL_POSTS' => sprintf($l_total_post_s, $total_posts),
270 'TOTAL_USERS' => sprintf($l_total_user_s, $total_users),
271 'NEWEST_USER' => sprintf($lang['Newest_user'], '<a href="' . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=$newest_uid") . '">', $newest_user, '</a>'),
273 'FORUM_IMG' => $images['forum'],
274 'FORUM_NEW_IMG' => $images['forum_new'],
275 'FORUM_LOCKED_IMG' => $images['forum_locked'],
277 'L_FORUM' => $lang['Forum'],
278 'L_TOPICS' => $lang['Topics'],
279 'L_REPLIES' => $lang['Replies'],
280 'L_VIEWS' => $lang['Views'],
281 'L_POSTS' => $lang['Posts'],
282 'L_LASTPOST' => $lang['Last_Post'],
283 'L_NO_NEW_POSTS' => $lang['No_new_posts'],
284 'L_NEW_POSTS' => $lang['New_posts'],
285 'L_NO_NEW_POSTS_LOCKED' => $lang['No_new_posts_locked'],
286 'L_NEW_POSTS_LOCKED' => $lang['New_posts_locked'],
287 'L_ONLINE_EXPLAIN' => $lang['Online_explain'],
289 'L_MODERATOR' => $lang['Moderators'],
290 'L_FORUM_LOCKED' => $lang['Forum_is_locked'],
291 'L_MARK_FORUMS_READ' => $lang['Mark_all_forums'],
293 'U_MARK_READ' => append_sid("index.$phpEx?mark=forums"))
297 // Okay, let's build the index
299 for($i = 0; $i < $total_categories; $i++)
301 $cat_id = $category_rows[$i]['cat_id'];
304 // Should we display this category/forum set?
306 $display_forums = false;
307 for($j = 0; $j < $total_forums; $j++)
309 if ( $is_auth_ary[$forum_data[$j]['forum_id']]['auth_view'] && $forum_data[$j]['cat_id'] == $cat_id )
311 $display_forums = true;
316 // Yes, we should, so first dump out the category
317 // title, then, if appropriate the forum list
319 if ( $display_forums )
321 $template->assign_block_vars('catrow', array(
323 'CAT_DESC' => $category_rows[$i]['cat_title'],
324 'U_VIEWCAT' => append_sid("index.$phpEx?" . POST_CAT_URL . "=$cat_id"))
327 if ( $viewcat == $cat_id || $viewcat == -1 )
329 for($j = 0; $j < $total_forums; $j++)
331 if ( $forum_data[$j]['cat_id'] == $cat_id )
333 $forum_id = $forum_data[$j]['forum_id'];
335 if ( $is_auth_ary[$forum_id]['auth_view'] )
337 if ( $forum_data[$j]['forum_status'] == FORUM_LOCKED )
339 $folder_image = $images['forum_locked'];
340 $folder_alt = $lang['Forum_locked'];
344 $unread_topics = false;
345 if ( $userdata['session_logged_in'] )
347 if ( !empty($new_topic_data[$forum_id]) )
349 $forum_last_post_time = 0;
351 while( list($check_topic_id, $check_post_time) = @each($new_topic_data[$forum_id]) )
353 if ( empty($tracking_topics[$check_topic_id]) )
355 $unread_topics = true;
356 $forum_last_post_time = max($check_post_time, $forum_last_post_time);
361 if ( $tracking_topics[$check_topic_id] < $check_post_time )
363 $unread_topics = true;
364 $forum_last_post_time = max($check_post_time, $forum_last_post_time);
369 if ( !empty($tracking_forums[$forum_id]) )
371 if ( $tracking_forums[$forum_id] > $forum_last_post_time )
373 $unread_topics = false;
377 if ( isset($HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_f_all']) )
379 if ( $HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_f_all'] > $forum_last_post_time )
381 $unread_topics = false;
388 $folder_image = ( $unread_topics ) ? $images['forum_new'] : $images['forum'];
389 $folder_alt = ( $unread_topics ) ? $lang['New_posts'] : $lang['No_new_posts'];
392 $posts = $forum_data[$j]['forum_posts'];
393 $topics = $forum_data[$j]['forum_topics'];
395 if ( $forum_data[$j]['forum_last_post_id'] )
397 $last_post_time = create_date($board_config['default_dateformat'], $forum_data[$j]['post_time'], $board_config['board_timezone']);
399 $last_post = $last_post_time . '<br />';
401 $last_post .= ( $forum_data[$j]['user_id'] == ANONYMOUS ) ? ( ($forum_data[$j]['post_username'] != '' ) ? $forum_data[$j]['post_username'] . ' ' : $lang['Guest'] . ' ' ) : '<a href="' . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . '=' . $forum_data[$j]['user_id']) . '">' . $forum_data[$j]['username'] . '</a> ';
403 $last_post .= '<a href="' . append_sid("viewtopic.$phpEx?" . POST_POST_URL . '=' . $forum_data[$j]['forum_last_post_id']) . '#' . $forum_data[$j]['forum_last_post_id'] . '"><img src="' . $images['icon_latest_reply'] . '" border="0" alt="' . $lang['View_latest_post'] . '" title="' . $lang['View_latest_post'] . '" /></a>';
407 $last_post = $lang['No_Posts'];
410 if ( count($forum_moderators[$forum_id]) > 0 )
412 $l_moderators = ( count($forum_moderators[$forum_id]) == 1 ) ? $lang['Moderator'] : $lang['Moderators'];
413 $moderator_list = implode(', ', $forum_moderators[$forum_id]);
417 $l_moderators = ' ';
418 $moderator_list = ' ';
421 $row_color = ( !($i % 2) ) ? $theme['td_color1'] : $theme['td_color2'];
422 $row_class = ( !($i % 2) ) ? $theme['td_class1'] : $theme['td_class2'];
424 $template->assign_block_vars('catrow.forumrow', array(
425 'ROW_COLOR' => '#' . $row_color,
426 'ROW_CLASS' => $row_class,
427 'FORUM_FOLDER_IMG' => $folder_image,
428 'FORUM_NAME' => $forum_data[$j]['forum_name'],
429 'FORUM_DESC' => $forum_data[$j]['forum_desc'],
430 'POSTS' => $forum_data[$j]['forum_posts'],
431 'TOPICS' => $forum_data[$j]['forum_topics'],
432 'LAST_POST' => $last_post,
433 'MODERATORS' => $moderator_list,
435 'L_MODERATOR' => $l_moderators,
436 'L_FORUM_FOLDER_ALT' => $folder_alt,
438 'U_VIEWFORUM' => append_sid("viewforum.$phpEx?" . POST_FORUM_URL . "=$forum_id"))
445 } // for ... categories
447 }// if ... total_categories
450 message_die(GENERAL_MESSAGE, $lang['No_forums']);
456 $template->pparse('body');
458 include($phpbb_root_path . 'includes/page_tail.'.$phpEx);