2 /***************************************************************************
5 * begin : Saturday, Feb 13, 2001
6 * copyright : (C) 2001 The phpBB Group
7 * email : support@phpbb.com
9 * $Id: functions.php,v 1.133.2.33 2004/11/18 17:49:42 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.
22 ***************************************************************************/
24 function get_db_stat($mode)
31 $sql = "SELECT COUNT(user_id) AS total
32 FROM " . USERS_TABLE . "
33 WHERE user_id <> " . ANONYMOUS;
37 $sql = "SELECT user_id, username
38 FROM " . USERS_TABLE . "
39 WHERE user_id <> " . ANONYMOUS . "
46 $sql = "SELECT SUM(forum_topics) AS topic_total, SUM(forum_posts) AS post_total
47 FROM " . FORUMS_TABLE;
51 if ( !($result = $db->sql_query($sql)) )
56 $row = $db->sql_fetchrow($result);
67 return $row['post_total'];
70 return $row['topic_total'];
77 // added at phpBB 2.0.11 to properly format the username
78 function phpbb_clean_username($username)
80 $username = htmlspecialchars(rtrim(trim($username), "\\"));
81 $username = substr(str_replace("\\'", "'", $username), 0, 25);
82 $username = str_replace("'", "\\'", $username);
88 // Get Userdata, $user can be username or user_id. If force_str is true, the username will be forced.
90 function get_userdata($user, $force_str = false)
94 if (intval($user) == 0 || $force_str)
96 $user = phpbb_clean_username($user);
100 $user = intval($user);
104 FROM " . USERS_TABLE . "
106 $sql .= ( ( is_integer($user) ) ? "user_id = $user" : "username = '" . $user . "'" ) . " AND user_id <> " . ANONYMOUS;
107 if ( !($result = $db->sql_query($sql)) )
109 message_die(GENERAL_ERROR, 'Tried obtaining data for a non-existent user', '', __LINE__, __FILE__, $sql);
112 return ( $row = $db->sql_fetchrow($result) ) ? $row : false;
115 function make_jumpbox($action, $match_forum_id = 0)
117 global $template, $userdata, $lang, $db, $nav_links, $phpEx, $SID;
119 // $is_auth = auth(AUTH_VIEW, AUTH_LIST_ALL, $userdata);
121 $sql = "SELECT c.cat_id, c.cat_title, c.cat_order
122 FROM " . CATEGORIES_TABLE . " c, " . FORUMS_TABLE . " f
123 WHERE f.cat_id = c.cat_id
124 GROUP BY c.cat_id, c.cat_title, c.cat_order
125 ORDER BY c.cat_order";
126 if ( !($result = $db->sql_query($sql)) )
128 message_die(GENERAL_ERROR, "Couldn't obtain category list.", "", __LINE__, __FILE__, $sql);
131 $category_rows = array();
132 while ( $row = $db->sql_fetchrow($result) )
134 $category_rows[] = $row;
137 if ( $total_categories = count($category_rows) )
140 FROM " . FORUMS_TABLE . "
141 ORDER BY cat_id, forum_order";
142 if ( !($result = $db->sql_query($sql)) )
144 message_die(GENERAL_ERROR, 'Could not obtain forums information', '', __LINE__, __FILE__, $sql);
147 $boxstring = '<select name="' . POST_FORUM_URL . '" onchange="if(this.options[this.selectedIndex].value != -1){ forms[\'jumpbox\'].submit() }"><option value="-1">' . $lang['Select_forum'] . '</option>';
149 $forum_rows = array();
150 while ( $row = $db->sql_fetchrow($result) )
152 $forum_rows[] = $row;
155 if ( $total_forums = count($forum_rows) )
157 for($i = 0; $i < $total_categories; $i++)
159 $boxstring_forums = '';
160 for($j = 0; $j < $total_forums; $j++)
162 if ( $forum_rows[$j]['cat_id'] == $category_rows[$i]['cat_id'] && $forum_rows[$j]['auth_view'] <= AUTH_REG )
165 // if ( $forum_rows[$j]['cat_id'] == $category_rows[$i]['cat_id'] && $is_auth[$forum_rows[$j]['forum_id']]['auth_view'] )
167 $selected = ( $forum_rows[$j]['forum_id'] == $match_forum_id ) ? 'selected="selected"' : '';
168 $boxstring_forums .= '<option value="' . $forum_rows[$j]['forum_id'] . '"' . $selected . '>' . $forum_rows[$j]['forum_name'] . '</option>';
171 // Add an array to $nav_links for the Mozilla navigation bar.
172 // 'chapter' and 'forum' can create multiple items, therefore we are using a nested array.
174 $nav_links['chapter forum'][$forum_rows[$j]['forum_id']] = array (
175 'url' => append_sid("viewforum.$phpEx?" . POST_FORUM_URL . "=" . $forum_rows[$j]['forum_id']),
176 'title' => $forum_rows[$j]['forum_name']
182 if ( $boxstring_forums != '' )
184 $boxstring .= '<option value="-1"> </option>';
185 $boxstring .= '<option value="-1">' . $category_rows[$i]['cat_title'] . '</option>';
186 $boxstring .= '<option value="-1">----------------</option>';
187 $boxstring .= $boxstring_forums;
192 $boxstring .= '</select>';
196 $boxstring .= '<select name="' . POST_FORUM_URL . '" onchange="if(this.options[this.selectedIndex].value != -1){ forms[\'jumpbox\'].submit() }"></select>';
199 // Let the jumpbox work again in sites having additional session id checks.
200 // if ( !empty($SID) )
202 $boxstring .= '<input type="hidden" name="sid" value="' . $userdata['session_id'] . '" />';
205 $template->set_filenames(array(
206 'jumpbox' => 'jumpbox.tpl')
208 $template->assign_vars(array(
209 'L_GO' => $lang['Go'],
210 'L_JUMP_TO' => $lang['Jump_to'],
211 'L_SELECT_FORUM' => $lang['Select_forum'],
213 'S_JUMPBOX_SELECT' => $boxstring,
214 'S_JUMPBOX_ACTION' => append_sid($action))
216 $template->assign_var_from_handle('JUMPBOX', 'jumpbox');
222 // Initialise user settings on page load
223 function init_userprefs($userdata)
225 global $board_config, $theme, $images;
226 global $template, $lang, $phpEx, $phpbb_root_path;
229 if ( $userdata['user_id'] != ANONYMOUS )
231 if ( !empty($userdata['user_lang']))
233 $board_config['default_lang'] = $userdata['user_lang'];
236 if ( !empty($userdata['user_dateformat']) )
238 $board_config['default_dateformat'] = $userdata['user_dateformat'];
241 if ( isset($userdata['user_timezone']) )
243 $board_config['board_timezone'] = $userdata['user_timezone'];
247 if ( !file_exists(@phpbb_realpath($phpbb_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_main.'.$phpEx)) )
249 $board_config['default_lang'] = 'english';
252 include($phpbb_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_main.' . $phpEx);
254 if ( defined('IN_ADMIN') )
256 if( !file_exists(@phpbb_realpath($phpbb_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_admin.'.$phpEx)) )
258 $board_config['default_lang'] = 'english';
261 include($phpbb_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_admin.' . $phpEx);
267 if ( !$board_config['override_user_style'] )
269 if ( $userdata['user_id'] != ANONYMOUS && $userdata['user_style'] > 0 )
271 if ( $theme = setup_style($userdata['user_style']) )
278 $theme = setup_style($board_config['default_style']);
281 // Mozilla navigation bar
282 // Default items that should be valid on all pages.
283 // Defined here to correctly assign the Language Variables
284 // and be able to change the variables within code.
286 $nav_links['top'] = array (
287 'url' => append_sid($phpbb_root_path . 'index.' . $phpEx),
288 'title' => sprintf($lang['Forum_Index'], $board_config['sitename'])
290 $nav_links['search'] = array (
291 'url' => append_sid($phpbb_root_path . 'search.' . $phpEx),
292 'title' => $lang['Search']
294 $nav_links['help'] = array (
295 'url' => append_sid($phpbb_root_path . 'faq.' . $phpEx),
296 'title' => $lang['FAQ']
298 $nav_links['author'] = array (
299 'url' => append_sid($phpbb_root_path . 'memberlist.' . $phpEx),
300 'title' => $lang['Memberlist']
306 function setup_style($style)
308 global $db, $board_config, $template, $images, $phpbb_root_path;
311 FROM " . THEMES_TABLE . "
312 WHERE themes_id = $style";
313 if ( !($result = $db->sql_query($sql)) )
315 message_die(CRITICAL_ERROR, 'Could not query database for theme info');
318 if ( !($row = $db->sql_fetchrow($result)) )
320 message_die(CRITICAL_ERROR, "Could not get theme data for themes_id [$style]");
323 $template_path = 'templates/' ;
324 $template_name = $row['template_name'] ;
326 $template = new Template($phpbb_root_path . $template_path . $template_name);
330 $current_template_path = $template_path . $template_name;
331 @include($phpbb_root_path . $template_path . $template_name . '/' . $template_name . '.cfg');
333 if ( !defined('TEMPLATE_CONFIG') )
335 message_die(CRITICAL_ERROR, "Could not open $template_name template config file", '', __LINE__, __FILE__);
338 $img_lang = ( file_exists(@phpbb_realpath($phpbb_root_path . $current_template_path . '/images/lang_' . $board_config['default_lang'])) ) ? $board_config['default_lang'] : 'english';
340 while( list($key, $value) = @each($images) )
342 if ( !is_array($value) )
344 $images[$key] = str_replace('{LANG}', 'lang_' . $img_lang, $value);
352 function encode_ip($dotquad_ip)
354 $ip_sep = explode('.', $dotquad_ip);
355 return sprintf('%02x%02x%02x%02x', $ip_sep[0], $ip_sep[1], $ip_sep[2], $ip_sep[3]);
358 function decode_ip($int_ip)
360 $hexipbang = explode('.', chunk_split($int_ip, 2, '.'));
361 return hexdec($hexipbang[0]). '.' . hexdec($hexipbang[1]) . '.' . hexdec($hexipbang[2]) . '.' . hexdec($hexipbang[3]);
365 // Create date/time from format and timezone
367 function create_date($format, $gmepoch, $tz)
369 global $board_config, $lang;
372 if ( empty($translate) && $board_config['default_lang'] != 'english' )
374 @reset($lang['datetime']);
375 while ( list($match, $replace) = @each($lang['datetime']) )
377 $translate[$match] = $replace;
381 return ( !empty($translate) ) ? strtr(@gmdate($format, $gmepoch + (3600 * $tz)), $translate) : @gmdate($format, $gmepoch + (3600 * $tz));
385 // Pagination routine, generates
386 // page number sequence
388 function generate_pagination($base_url, $num_items, $per_page, $start_item, $add_prevnext_text = TRUE)
392 $total_pages = ceil($num_items/$per_page);
394 if ( $total_pages == 1 )
399 $on_page = floor($start_item / $per_page) + 1;
402 if ( $total_pages > 10 )
404 $init_page_max = ( $total_pages > 3 ) ? 3 : $total_pages;
406 for($i = 1; $i < $init_page_max + 1; $i++)
408 $page_string .= ( $i == $on_page ) ? '<b>' . $i . '</b>' : '<a href="' . append_sid($base_url . "&start=" . ( ( $i - 1 ) * $per_page ) ) . '">' . $i . '</a>';
409 if ( $i < $init_page_max )
411 $page_string .= ", ";
415 if ( $total_pages > 3 )
417 if ( $on_page > 1 && $on_page < $total_pages )
419 $page_string .= ( $on_page > 5 ) ? ' ... ' : ', ';
421 $init_page_min = ( $on_page > 4 ) ? $on_page : 5;
422 $init_page_max = ( $on_page < $total_pages - 4 ) ? $on_page : $total_pages - 4;
424 for($i = $init_page_min - 1; $i < $init_page_max + 2; $i++)
426 $page_string .= ($i == $on_page) ? '<b>' . $i . '</b>' : '<a href="' . append_sid($base_url . "&start=" . ( ( $i - 1 ) * $per_page ) ) . '">' . $i . '</a>';
427 if ( $i < $init_page_max + 1 )
429 $page_string .= ', ';
433 $page_string .= ( $on_page < $total_pages - 4 ) ? ' ... ' : ', ';
437 $page_string .= ' ... ';
440 for($i = $total_pages - 2; $i < $total_pages + 1; $i++)
442 $page_string .= ( $i == $on_page ) ? '<b>' . $i . '</b>' : '<a href="' . append_sid($base_url . "&start=" . ( ( $i - 1 ) * $per_page ) ) . '">' . $i . '</a>';
443 if( $i < $total_pages )
445 $page_string .= ", ";
452 for($i = 1; $i < $total_pages + 1; $i++)
454 $page_string .= ( $i == $on_page ) ? '<b>' . $i . '</b>' : '<a href="' . append_sid($base_url . "&start=" . ( ( $i - 1 ) * $per_page ) ) . '">' . $i . '</a>';
455 if ( $i < $total_pages )
457 $page_string .= ', ';
462 if ( $add_prevnext_text )
466 $page_string = ' <a href="' . append_sid($base_url . "&start=" . ( ( $on_page - 2 ) * $per_page ) ) . '">' . $lang['Previous'] . '</a> ' . $page_string;
469 if ( $on_page < $total_pages )
471 $page_string .= ' <a href="' . append_sid($base_url . "&start=" . ( $on_page * $per_page ) ) . '">' . $lang['Next'] . '</a>';
476 $page_string = $lang['Goto_page'] . ' ' . $page_string;
482 // This does exactly what preg_quote() does in PHP 4-ish
483 // If you just need the 1-parameter preg_quote call, then don't bother using this.
485 function phpbb_preg_quote($str, $delimiter)
487 $text = preg_quote($str);
488 $text = str_replace($delimiter, '\\' . $delimiter, $text);
494 // Obtain list of naughty words and build preg style replacement arrays for use by the
495 // calling script, note that the vars are passed as references this just makes it easier
496 // to return both sets of arrays
498 function obtain_word_list(&$orig_word, &$replacement_word)
503 // Define censored word matches
505 $sql = "SELECT word, replacement
506 FROM " . WORDS_TABLE;
507 if( !($result = $db->sql_query($sql)) )
509 message_die(GENERAL_ERROR, 'Could not get censored words from database', '', __LINE__, __FILE__, $sql);
512 if ( $row = $db->sql_fetchrow($result) )
516 $orig_word[] = '#\b(' . str_replace('\*', '\w*?', phpbb_preg_quote($row['word'], '#')) . ')\b#i';
517 $replacement_word[] = $row['replacement'];
519 while ( $row = $db->sql_fetchrow($result) );
526 // This is general replacement for die(), allows templated
527 // output in users (or default) language, etc.
529 // $msg_code can be one of these constants:
531 // GENERAL_MESSAGE : Use for any simple text message, eg. results
532 // of an operation, authorisation failures, etc.
534 // GENERAL ERROR : Use for any error which occurs _AFTER_ the
535 // common.php include and session code, ie. most errors in
538 // CRITICAL_MESSAGE : Used when basic config data is available but
539 // a session may not exist, eg. banned users
541 // CRITICAL_ERROR : Used when config data cannot be obtained, eg
542 // no database connection. Should _not_ be used in 99.5% of cases
544 function message_die($msg_code, $msg_text = '', $msg_title = '', $err_line = '', $err_file = '', $sql = '')
546 global $db, $template, $board_config, $theme, $lang, $phpEx, $phpbb_root_path, $nav_links, $gen_simple_header, $images;
547 global $userdata, $user_ip, $session_length;
550 if(defined('HAS_DIED'))
552 die("message_die() was called multiple times. This isn't supposed to happen. Was message_die() used in page_tail.php?");
561 // Get SQL error if we are debugging. Do this as soon as possible to prevent
562 // subsequent queries from overwriting the status of sql_error()
564 if ( DEBUG && ( $msg_code == GENERAL_ERROR || $msg_code == CRITICAL_ERROR ) )
566 $sql_error = $db->sql_error();
570 if ( $sql_error['message'] != '' )
572 $debug_text .= '<br /><br />SQL Error : ' . $sql_error['code'] . ' ' . $sql_error['message'];
575 if ( $sql_store != '' )
577 $debug_text .= "<br /><br />$sql_store";
580 if ( $err_line != '' && $err_file != '' )
582 $debug_text .= '</br /><br />Line : ' . $err_line . '<br />File : ' . $err_file;
586 if( empty($userdata) && ( $msg_code == GENERAL_MESSAGE || $msg_code == GENERAL_ERROR ) )
588 $userdata = session_pagestart($user_ip, PAGE_INDEX);
589 init_userprefs($userdata);
593 // If the header hasn't been output then do it
595 if ( !defined('HEADER_INC') && $msg_code != CRITICAL_ERROR )
599 if ( !empty($board_config['default_lang']) )
601 include($phpbb_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_main.'.$phpEx);
605 include($phpbb_root_path . 'language/lang_english/lang_main.'.$phpEx);
609 if ( empty($template) )
611 $template = new Template($phpbb_root_path . 'templates/' . $board_config['board_template']);
615 $theme = setup_style($board_config['default_style']);
619 // Load the Page Header
621 if ( !defined('IN_ADMIN') )
623 include($phpbb_root_path . 'includes/page_header.'.$phpEx);
627 include($phpbb_root_path . 'admin/page_header_admin.'.$phpEx);
633 case GENERAL_MESSAGE:
634 if ( $msg_title == '' )
636 $msg_title = $lang['Information'];
640 case CRITICAL_MESSAGE:
641 if ( $msg_title == '' )
643 $msg_title = $lang['Critical_Information'];
648 if ( $msg_text == '' )
650 $msg_text = $lang['An_error_occured'];
653 if ( $msg_title == '' )
655 $msg_title = $lang['General_Error'];
661 // Critical errors mean we cannot rely on _ANY_ DB information being
662 // available so we're going to dump out a simple echo'd statement
664 include($phpbb_root_path . 'language/lang_english/lang_main.'.$phpEx);
666 if ( $msg_text == '' )
668 $msg_text = $lang['A_critical_error'];
671 if ( $msg_title == '' )
673 $msg_title = 'phpBB : <b>' . $lang['Critical_Error'] . '</b>';
679 // Add on DEBUG info if we've enabled debug mode and this is an error. This
680 // prevents debug info being output for general messages should DEBUG be
681 // set TRUE by accident (preventing confusion for the end user!)
683 if ( DEBUG && ( $msg_code == GENERAL_ERROR || $msg_code == CRITICAL_ERROR ) )
685 if ( $debug_text != '' )
687 $msg_text = $msg_text . '<br /><br /><b><u>DEBUG MODE</u></b>' . $debug_text;
691 if ( $msg_code != CRITICAL_ERROR )
693 if ( !empty($lang[$msg_text]) )
695 $msg_text = $lang[$msg_text];
698 if ( !defined('IN_ADMIN') )
700 $template->set_filenames(array(
701 'message_body' => 'message_body.tpl')
706 $template->set_filenames(array(
707 'message_body' => 'admin/admin_message_body.tpl')
711 $template->assign_vars(array(
712 'MESSAGE_TITLE' => $msg_title,
713 'MESSAGE_TEXT' => $msg_text)
715 $template->pparse('message_body');
717 if ( !defined('IN_ADMIN') )
719 include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
723 include($phpbb_root_path . 'admin/page_footer_admin.'.$phpEx);
728 echo "<html>\n<body>\n" . $msg_title . "\n<br /><br />\n" . $msg_text . "</body>\n</html>";
735 // This function is for compatibility with PHP 4.x's realpath()
736 // function. In later versions of PHP, it needs to be called
737 // to do checks with some functions. Older versions of PHP don't
738 // seem to need this, so we'll just return the original value.
739 // dougk_ff7 <October 5, 2002>
740 function phpbb_realpath($path)
742 global $phpbb_root_path, $phpEx;
744 return (!@function_exists('realpath') || !@realpath($phpbb_root_path . 'includes/functions.'.$phpEx)) ? $path : @realpath($path);
747 function redirect($url)
749 global $db, $board_config;
756 if (strstr(urldecode($url), "\n") || strstr(urldecode($url), "\r"))
758 message_die(GENERAL_ERROR, 'Tried to redirect to potentially insecure url.');
761 $server_protocol = ($board_config['cookie_secure']) ? 'https://' : 'http://';
762 $server_name = preg_replace('#^\/?(.*?)\/?$#', '\1', trim($board_config['server_name']));
763 $server_port = ($board_config['server_port'] <> 80) ? ':' . trim($board_config['server_port']) : '';
764 $script_name = preg_replace('#^\/?(.*?)\/?$#', '\1', trim($board_config['script_path']));
765 $script_name = ($script_name == '') ? $script_name : '/' . $script_name;
766 $url = preg_replace('#^\/?(.*?)\/?$#', '/\1', trim($url));
768 // Redirect via an HTML form for PITA webservers
769 if (@preg_match('/Microsoft|WebSTAR|Xitami/', getenv('SERVER_SOFTWARE')))
771 header('Refresh: 0; URL=' . $server_protocol . $server_name . $server_port . $script_name . $url);
772 echo '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><meta http-equiv="refresh" content="0; url=' . $server_protocol . $server_name . $server_port . $script_name . $url . '"><title>Redirect</title></head><body><div align="center">If your browser does not support meta redirection please click <a href="' . $server_protocol . $server_name . $server_port . $script_name . $url . '">HERE</a> to be redirected</div></body></html>';
776 // Behave as per HTTP/1.1 spec for others
777 header('Location: ' . $server_protocol . $server_name . $server_port . $script_name . $url);