diff options
author | David M <davidmj@users.sourceforge.net> | 2008-01-03 17:00:40 +0000 |
---|---|---|
committer | David M <davidmj@users.sourceforge.net> | 2008-01-03 17:00:40 +0000 |
commit | 85055ac97fa57ca339924cef719115d85bdf6c2e (patch) | |
tree | 1e19230af2689c3837356c0f7947719c0cdf67ef /phpBB/includes | |
parent | 0f26ffbadea13d97b841dfe56b21da7a5479000a (diff) | |
download | forums-85055ac97fa57ca339924cef719115d85bdf6c2e.tar forums-85055ac97fa57ca339924cef719115d85bdf6c2e.tar.gz forums-85055ac97fa57ca339924cef719115d85bdf6c2e.tar.bz2 forums-85055ac97fa57ca339924cef719115d85bdf6c2e.tar.xz forums-85055ac97fa57ca339924cef719115d85bdf6c2e.zip |
oh boy...
- Migrate code base to PHP 5.1+
git-svn-id: file:///svn/phpbb/trunk@8295 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes')
58 files changed, 775 insertions, 1306 deletions
diff --git a/phpBB/includes/acm/acm_file.php b/phpBB/includes/acm/acm_file.php index 775e8d4495..fa6e79260b 100644 --- a/phpBB/includes/acm/acm_file.php +++ b/phpBB/includes/acm/acm_file.php @@ -22,18 +22,18 @@ if (!defined('IN_PHPBB')) */ class acm { - var $vars = array(); - var $var_expires = array(); - var $is_modified = false; + private $vars = array(); + private $var_expires = array(); + private $is_modified = false; - var $sql_rowset = array(); - var $sql_row_pointer = array(); - var $cache_dir = ''; + public $sql_rowset = array(); + private $sql_row_pointer = array(); + public $cache_dir = ''; /** * Set cache path */ - function acm() + function __construct() { global $phpbb_root_path; $this->cache_dir = $phpbb_root_path . 'cache/'; @@ -42,25 +42,24 @@ class acm /** * Load global cache */ - function load() + private function load() { global $phpEx; + + // grab the global cache if (file_exists($this->cache_dir . 'data_global.' . $phpEx)) { @include($this->cache_dir . 'data_global.' . $phpEx); - } - else - { - return false; + return true; } - return true; + return false; } /** * Unload cache object */ - function unload() + public function unload() { $this->save(); unset($this->vars); @@ -77,7 +76,7 @@ class acm /** * Save modified objects */ - function save() + private function save() { if (!$this->is_modified) { @@ -112,7 +111,7 @@ class acm /** * Tidy cache */ - function tidy() + public function tidy() { global $phpEx; @@ -161,9 +160,9 @@ class acm /** * Get saved cache object */ - function get($var_name) + public function get($var_name) { - if ($var_name[0] == '_') + if ($var_name[0] === '_') { global $phpEx; @@ -186,7 +185,7 @@ class acm */ function put($var_name, $var, $ttl = 31536000) { - if ($var_name[0] == '_') + if ($var_name[0] === '_') { global $phpEx; @@ -252,7 +251,7 @@ class acm { global $phpEx; - if ($var_name == 'sql' && !empty($table)) + if ($var_name === 'sql' && !empty($table)) { if (!is_array($table)) { @@ -310,7 +309,7 @@ class acm return; } - if ($var_name[0] == '_') + if ($var_name[0] === '_') { $this->remove_file($this->cache_dir . 'data' . $var_name . ".$phpEx"); } @@ -330,7 +329,7 @@ class acm */ function _exists($var_name) { - if ($var_name[0] == '_') + if ($var_name[0] === '_') { global $phpEx; return file_exists($this->cache_dir . 'data' . $var_name . ".$phpEx"); diff --git a/phpBB/includes/acp/acp_captcha.php b/phpBB/includes/acp/acp_captcha.php index 0d653c22d1..5b2b345ef8 100644 --- a/phpBB/includes/acp/acp_captcha.php +++ b/phpBB/includes/acp/acp_captcha.php @@ -44,6 +44,7 @@ class acp_captcha { $config[$captcha_var] = (isset($_REQUEST[$captcha_var])) ? request_var($captcha_var, 0) : $config[$captcha_var]; } + if ($config['captcha_gd']) { include($phpbb_root_path . 'includes/captcha/captcha_gd.' . $phpEx); @@ -52,9 +53,9 @@ class acp_captcha { include($phpbb_root_path . 'includes/captcha/captcha_non_gd.' . $phpEx); } - $captcha = new captcha(); - $captcha->execute(gen_rand_string(mt_rand(5, 8)), time()); - exit_handler(); + + captcha::execute(gen_rand_string(mt_rand(5, 8)), time()); + exit(); } $config_vars = array( diff --git a/phpBB/includes/acp/acp_database.php b/phpBB/includes/acp/acp_database.php index 62331fbca2..a54230039d 100644 --- a/phpBB/includes/acp/acp_database.php +++ b/phpBB/includes/acp/acp_database.php @@ -446,7 +446,7 @@ class base_extractor var $format; var $run_comp = false; - function base_extractor($download = false, $store = false, $format, $filename, $time) + function __construct($download = false, $store = false, $format, $filename, $time) { $this->download = $download; $this->store = $store; diff --git a/phpBB/includes/acp/acp_inactive.php b/phpBB/includes/acp/acp_inactive.php index 5683ae5dab..90f326b099 100755 --- a/phpBB/includes/acp/acp_inactive.php +++ b/phpBB/includes/acp/acp_inactive.php @@ -24,7 +24,7 @@ class acp_inactive var $u_action; var $p_master; - function acp_inactive(&$p_master) + function __construct(&$p_master) { $this->p_master = &$p_master; } diff --git a/phpBB/includes/acp/acp_profile.php b/phpBB/includes/acp/acp_profile.php index 309f5d5e74..d89d01fcbc 100644 --- a/phpBB/includes/acp/acp_profile.php +++ b/phpBB/includes/acp/acp_profile.php @@ -729,7 +729,7 @@ class acp_profile 'S_FIELD_NO_VIEW' => ($cp->vars['field_no_view']) ? true : false, 'L_LANG_SPECIFIC' => sprintf($user->lang['LANG_SPECIFIC_OPTIONS'], $config['default_lang']), - 'FIELD_TYPE' => $user->lang['FIELD_' . strtoupper($cp->profile_types[$field_type])], + 'FIELD_TYPE' => $user->lang['FIELD_' . strtoupper(custom_profile::profile_types[$field_type])], 'FIELD_IDENT' => $cp->vars['field_ident'], 'LANG_NAME' => $cp->vars['lang_name'], 'LANG_EXPLAIN' => $cp->vars['lang_explain']) @@ -742,7 +742,7 @@ class acp_profile 'S_TEXT' => ($field_type == FIELD_TEXT) ? true : false, 'S_STRING' => ($field_type == FIELD_STRING) ? true : false, - 'L_DEFAULT_VALUE_EXPLAIN' => $user->lang[strtoupper($cp->profile_types[$field_type]) . '_DEFAULT_VALUE_EXPLAIN'], + 'L_DEFAULT_VALUE_EXPLAIN' => $user->lang[strtoupper(custom_profile::profile_types[$field_type]) . '_DEFAULT_VALUE_EXPLAIN'], 'LANG_DEFAULT_VALUE' => $cp->vars['lang_default_value']) ); } @@ -769,7 +769,7 @@ class acp_profile 'S_BOOL' => ($field_type == FIELD_BOOL) ? true : false, 'S_DROPDOWN' => ($field_type == FIELD_DROPDOWN) ? true : false, - 'L_LANG_OPTIONS_EXPLAIN' => $user->lang[strtoupper($cp->profile_types[$field_type]) . '_ENTRIES_EXPLAIN'], + 'L_LANG_OPTIONS_EXPLAIN' => $user->lang[strtoupper(custom_profile::profile_types[$field_type]) . '_ENTRIES_EXPLAIN'], 'LANG_OPTIONS' => ($field_type == FIELD_DROPDOWN) ? implode("\n", $cp->vars['lang_options']) : '', 'FIRST_LANG_OPTION' => ($field_type == FIELD_BOOL) ? $cp->vars['lang_options'][0] : '', 'SECOND_LANG_OPTION' => ($field_type == FIELD_BOOL) ? $cp->vars['lang_options'][1] : '') @@ -786,7 +786,7 @@ class acp_profile ); // Build options based on profile type - $function = 'get_' . $cp->profile_types[$field_type] . '_options'; + $function = 'get_' . custom_profile::profile_types[$field_type] . '_options'; $options = $cp->$function(); foreach ($options as $num => $option_ary) @@ -851,7 +851,7 @@ class acp_profile $template->assign_block_vars('fields', array( 'FIELD_IDENT' => $row['field_ident'], - 'FIELD_TYPE' => $user->lang['FIELD_' . strtoupper($cp->profile_types[$row['field_type']])], + 'FIELD_TYPE' => $user->lang['FIELD_' . strtoupper(custom_profile::profile_types[$row['field_type']])], 'L_ACTIVATE_DEACTIVATE' => $user->lang[$active_lang], 'U_ACTIVATE_DEACTIVATE' => $this->u_action . "&action=$active_value&field_id=$id", @@ -873,7 +873,7 @@ class acp_profile } $s_select_type = ''; - foreach ($cp->profile_types as $key => $value) + foreach (custom_profile::profile_types as $key => $value) { $s_select_type .= '<option value="' . $key . '">' . $user->lang['FIELD_' . strtoupper($value)] . '</option>'; } diff --git a/phpBB/includes/acp/acp_styles.php b/phpBB/includes/acp/acp_styles.php index 31e99a6b0c..3fec4fc2ff 100644 --- a/phpBB/includes/acp/acp_styles.php +++ b/phpBB/includes/acp/acp_styles.php @@ -1782,7 +1782,7 @@ parse_css_file = {PARSE_CSS_FILE} $theme_cfg = str_replace(array('{MODE}', '{NAME}', '{COPYRIGHT}', '{VERSION}'), array($mode, $style_row['theme_name'], $style_row['theme_copyright'], $config['version']), $this->theme_cfg); // Read old cfg file - $items = $cache->obtain_cfg_items($style_row); + $items = cache::obtain_cfg_items($style_row); $items = $items['theme']; if (!isset($items['parse_css_file'])) diff --git a/phpBB/includes/acp/acp_users.php b/phpBB/includes/acp/acp_users.php index 310759d38c..252fb743cd 100644 --- a/phpBB/includes/acp/acp_users.php +++ b/phpBB/includes/acp/acp_users.php @@ -24,7 +24,7 @@ class acp_users var $u_action; var $p_master; - function acp_users(&$p_master) + function __construct(&$p_master) { $this->p_master = &$p_master; } diff --git a/phpBB/includes/acp/auth.php b/phpBB/includes/acp/auth.php index b4ea0e46d0..9eee5829a1 100644 --- a/phpBB/includes/acp/auth.php +++ b/phpBB/includes/acp/auth.php @@ -27,7 +27,7 @@ class auth_admin extends auth /** * Init auth settings */ - function auth_admin() + function __construct() { global $db, $cache; @@ -84,7 +84,7 @@ class auth_admin extends auth * @param local|global $scope the scope defines the permission scope. If local, a forum_id is additionally required * @param ACL_NEVER|ACL_NO|ACL_YES $acl_fill defines the mode those permissions not set are getting filled with */ - function get_mask($mode, $user_id = false, $group_id = false, $forum_id = false, $auth_option = false, $scope = false, $acl_fill = ACL_NEVER) + public function get_mask($mode, $user_id = false, $group_id = false, $forum_id = false, $auth_option = false, $scope = false, $acl_fill = ACL_NEVER) { global $db, $user; @@ -235,7 +235,7 @@ class auth_admin extends auth * Get permission mask for roles * This function only supports getting masks for one role */ - function get_role_mask($role_id) + public function get_role_mask($role_id) { global $db; @@ -273,7 +273,7 @@ class auth_admin extends auth /** * Display permission mask (assign to template) */ - function display_mask($mode, $permission_type, &$hold_ary, $user_mode = 'user', $local = false, $group_display = true) + public function display_mask($mode, $permission_type, array $hold_ary, $user_mode = 'user', $local = false, $group_display = true) { global $template, $user, $db, $phpbb_root_path, $phpEx; @@ -451,7 +451,7 @@ class auth_admin extends auth foreach ($hold_ary as $forum_id => $forum_array) { $content_array = $categories = array(); - $this->build_permission_array($hold_ary[$forum_id], $content_array, $categories, array_keys($ug_names_ary)); + this::build_permission_array($hold_ary[$forum_id], $content_array, $categories, array_keys($ug_names_ary)); $template->assign_block_vars($tpl_pmask, array( 'NAME' => ($forum_id == 0) ? $forum_names_ary[0] : $forum_names_ary[$forum_id]['forum_name'], @@ -519,7 +519,7 @@ class auth_admin extends auth 'FORUM_ID' => $forum_id) ); - $this->assign_cat_array($ug_array, $tpl_pmask . '.' . $tpl_fmask . '.' . $tpl_category, $tpl_mask, $ug_id, $forum_id, $show_trace, ($mode == 'view')); + this::assign_cat_array($ug_array, $tpl_pmask . '.' . $tpl_fmask . '.' . $tpl_category, $tpl_mask, $ug_id, $forum_id, $show_trace, ($mode == 'view')); unset($content_array[$ug_id]); } @@ -537,7 +537,7 @@ class auth_admin extends auth } $content_array = $categories = array(); - $this->build_permission_array($hold_ary[$ug_id], $content_array, $categories, array_keys($forum_names_ary)); + this::build_permission_array($hold_ary[$ug_id], $content_array, $categories, array_keys($forum_names_ary)); $template->assign_block_vars($tpl_pmask, array( 'NAME' => $ug_name, @@ -606,7 +606,7 @@ class auth_admin extends auth 'FORUM_ID' => $forum_id) ); - $this->assign_cat_array($forum_array, $tpl_pmask . '.' . $tpl_fmask . '.' . $tpl_category, $tpl_mask, $ug_id, $forum_id, $show_trace, ($mode == 'view')); + this::assign_cat_array($forum_array, $tpl_pmask . '.' . $tpl_fmask . '.' . $tpl_category, $tpl_mask, $ug_id, $forum_id, $show_trace, ($mode == 'view')); } unset($hold_ary[$ug_id], $ug_names_ary[$ug_id]); @@ -617,7 +617,7 @@ class auth_admin extends auth /** * Display permission mask for roles */ - function display_role_mask(&$hold_ary) + public function display_role_mask(array $hold_ary) { global $db, $template, $user, $phpbb_root_path, $phpbb_admin_path, $phpEx; @@ -698,15 +698,10 @@ class auth_admin extends auth * 'global' => array('optionA', 'optionB', ...) * ); */ - function acl_add_option($options) + public function acl_add_option(array $options) { global $db, $cache; - if (!is_array($options)) - { - return false; - } - $cur_options = array(); $sql = 'SELECT auth_option, is_global, is_local @@ -784,7 +779,7 @@ class auth_admin extends auth /** * Set a user or group ACL record */ - function acl_set($ug_type, $forum_id, $ug_id, $auth, $role_id = 0, $clear_prefetch = true) + public function acl_set($ug_type, $forum_id, $ug_id, $auth, $role_id = 0, $clear_prefetch = true) { global $db; @@ -917,7 +912,7 @@ class auth_admin extends auth /** * Set a role-specific ACL record */ - function acl_set_role($role_id, $auth) + public function acl_set_role($role_id, $auth) { global $db; @@ -980,7 +975,7 @@ class auth_admin extends auth /** * Remove local permission */ - function acl_delete($mode, $ug_id = false, $forum_id = false, $permission_type = false) + public function acl_delete($mode, $ug_id = false, $forum_id = false, $permission_type = false) { global $db; @@ -1088,7 +1083,7 @@ class auth_admin extends auth * Assign category to template * used by display_mask() */ - function assign_cat_array(&$category_array, $tpl_cat, $tpl_mask, $ug_id, $forum_id, $show_trace = false, $s_view) + private static function assign_cat_array(array $category_array, $tpl_cat, $tpl_mask, $ug_id, $forum_id, $show_trace = false, $s_view) { global $template, $user, $phpbb_admin_path, $phpEx; @@ -1164,7 +1159,7 @@ class auth_admin extends auth * Building content array from permission rows with explicit key ordering * used by display_mask() */ - function build_permission_array(&$permission_row, &$content_array, &$categories, $key_sort_array) + public static function build_permission_array(array $permission_row, array &$content_array, array &$categories, array $key_sort_array) { global $user; @@ -1229,7 +1224,7 @@ class auth_admin extends auth * "more" permissions by this. * Admin permissions will not be copied. */ - function ghost_permissions($from_user_id, $to_user_id) + public function ghost_permissions($from_user_id, $to_user_id) { global $db; diff --git a/phpBB/includes/auth.php b/phpBB/includes/auth.php index c965149018..ccace05f3a 100644 --- a/phpBB/includes/auth.php +++ b/phpBB/includes/auth.php @@ -22,15 +22,15 @@ if (!defined('IN_PHPBB')) */ class auth { - var $acl = array(); - var $cache = array(); - var $acl_options = array(); - var $acl_forum_ids = false; + private $acl = array(); + private $cache = array(); + public $acl_options = array(); + private $acl_forum_ids = false; /** * Init permissions */ - function acl(&$userdata) + function acl(array &$userdata) { global $db, $cache; @@ -100,7 +100,7 @@ class auth * If a forum id is specified the local option will be combined with a global option if one exist. * If a forum id is not specified, only the global option will be checked. */ - function acl_get($opt, $f = 0) + public function acl_get($opt, $f = 0) { $negate = false; @@ -110,6 +110,7 @@ class auth $opt = substr($opt, 1); } + // @todo: use the ref technique to reduce opcode generation if (!isset($this->cache[$f][$opt])) { // We combine the global/local option with an OR because some options are global and local. @@ -137,7 +138,7 @@ class auth } // Founder always has all global options set to true... - return ($negate) ? !$this->cache[$f][$opt] : $this->cache[$f][$opt]; + return $negate xor $this->cache[$f][$opt]; } /** @@ -146,7 +147,7 @@ class auth * * @param bool $clean set to true if only values needs to be returned which are set/unset */ - function acl_getf($opt, $clean = false) + public function acl_getf($opt, $clean = false) { $acl_f = array(); $negate = false; @@ -196,14 +197,11 @@ class auth if (!$clean) { - $acl_f[$f][$opt] = ($negate) ? !$allowed : $allowed; + $acl_f[$f][$opt] = $negate xor $allowed; } - else + else if ($negate xor $allowed) { - if (($negate && !$allowed) || (!$negate && $allowed)) - { - $acl_f[$f][$opt] = 1; - } + $acl_f[$f][$opt] = 1; } } } @@ -227,7 +225,7 @@ class auth * If global option is checked it returns the global state (same as acl_get($opt)) * Local option has precedence... */ - function acl_getf_global($opt) + public function acl_getf_global($opt) { if (is_array($opt)) { @@ -271,7 +269,7 @@ class auth /** * Get permission settings (more than one) */ - function acl_gets() + public function acl_gets() { $args = func_get_args(); $f = array_pop($args); @@ -300,7 +298,7 @@ class auth /** * Get permission listing based on user_id/options/forum_ids */ - function acl_get_list($user_id = false, $opts = false, $forum_id = false) + public function acl_get_list($user_id = false, $opts = false, $forum_id = false) { $hold_ary = $this->acl_raw_data($user_id, $opts, $forum_id); @@ -325,7 +323,7 @@ class auth /** * Cache data to user_permissions row */ - function acl_cache(&$userdata) + public function acl_cache(array &$userdata) { global $db; @@ -403,7 +401,7 @@ class auth /** * Build bitstring from permission set */ - function build_bitstring(&$hold_ary) + protected function build_bitstring(&$hold_ary) { $hold_str = ''; @@ -464,7 +462,7 @@ class auth /** * Clear one or all users cached permission settings */ - function acl_clear_prefetch($user_id = false) + public function acl_clear_prefetch($user_id = false) { global $db; @@ -487,8 +485,9 @@ class auth /** * Get assigned roles + * @todo: protected or public? */ - function acl_role_data($user_type, $role_type, $ug_id = false, $forum_id = false) + public function acl_role_data($user_type, $role_type, $ug_id = false, $forum_id = false) { global $db; @@ -520,8 +519,9 @@ class auth /** * Get raw acl data based on user/option/forum + * @todo: protected or public? */ - function acl_raw_data($user_id = false, $opts = false, $forum_id = false) + public function acl_raw_data($user_id = false, $opts = false, $forum_id = false) { global $db; @@ -632,6 +632,7 @@ class auth while ($row = $db->sql_fetchrow($result)) { + // @todo: use the ref technique to reduce opcode generation if (!isset($hold_ary[$row['user_id']][$row['forum_id']][$row['auth_option']]) || (isset($hold_ary[$row['user_id']][$row['forum_id']][$row['auth_option']]) && $hold_ary[$row['user_id']][$row['forum_id']][$row['auth_option']] != ACL_NEVER)) { $setting = ($row['auth_role_id']) ? $row['role_auth_setting'] : $row['auth_setting']; @@ -663,7 +664,7 @@ class auth /** * Get raw user based permission settings */ - function acl_user_raw_data($user_id = false, $opts = false, $forum_id = false) + public function acl_user_raw_data($user_id = false, $opts = false, $forum_id = false) { global $db; @@ -717,7 +718,7 @@ class auth /** * Get raw group based permission settings */ - function acl_group_raw_data($group_id = false, $opts = false, $forum_id = false) + public function acl_group_raw_data($group_id = false, $opts = false, $forum_id = false) { global $db; @@ -771,7 +772,7 @@ class auth /** * Authentication plug-ins is largely down to Sergey Kanareykin, our thanks to him. */ - function login($username, $password, $autologin = false, $viewonline = 1, $admin = 0) + public function login($username, $password, $autologin = false, $viewonline = 1, $admin = 0) { global $config, $db, $user, $phpbb_root_path, $phpEx; @@ -873,7 +874,7 @@ class auth /** * Fill auth_option statement for later querying based on the supplied options */ - function build_auth_option_statement($key, $auth_options, &$sql_opts) + private function build_auth_option_statement($key, $auth_options, &$sql_opts) { global $db; diff --git a/phpBB/includes/auth/auth_db.php b/phpBB/includes/auth/auth_db.php index 432ae92d21..aa09710730 100644 --- a/phpBB/includes/auth/auth_db.php +++ b/phpBB/includes/auth/auth_db.php @@ -112,8 +112,9 @@ function login_db(&$username, &$password) } } + // @todo: safe to remove? // If the password convert flag is set we need to convert it - if ($row['user_pass_convert']) + /*if ($row['user_pass_convert']) { // in phpBB2 passwords were used exactly as they were sent, with addslashes applied $password_old_format = isset($_REQUEST['password']) ? (string) $_REQUEST['password'] : ''; @@ -161,7 +162,7 @@ function login_db(&$username, &$password) ); } } - } + }*/ // Check password ... if (!$row['user_pass_convert'] && phpbb_check_hash($password, $row['user_password'])) diff --git a/phpBB/includes/bbcode.php b/phpBB/includes/bbcode.php index ef73762582..354885143c 100644 --- a/phpBB/includes/bbcode.php +++ b/phpBB/includes/bbcode.php @@ -36,7 +36,7 @@ class bbcode * Constructor * Init bbcode cache entries if bitfield is specified */ - function bbcode($bitfield = '') + function __construct($bitfield = '') { if ($bitfield) { diff --git a/phpBB/includes/cache.php b/phpBB/includes/cache.php index 31b8b73e10..52e0007b28 100644 --- a/phpBB/includes/cache.php +++ b/phpBB/includes/cache.php @@ -20,16 +20,16 @@ if (!defined('IN_PHPBB')) * Class for grabbing/handling cached entries, extends acm_file or acm_db depending on the setup * @package acm */ -class cache extends acm +class cache { /** * Get config values */ - function obtain_config() + public static function obtain_config() { - global $db; + global $db, $cache; - if (($config = $this->get('config')) !== false) + if (($config = $cache->get('config')) !== false) { $sql = 'SELECT config_name, config_value FROM ' . CONFIG_TABLE . ' @@ -61,7 +61,7 @@ class cache extends acm } $db->sql_freeresult($result); - $this->put('config', $cached_config); + $cache->put('config', $cached_config); } return $config; @@ -71,12 +71,14 @@ class cache extends acm * Obtain list of naughty words and build preg style replacement arrays for use by the * calling script */ - function obtain_word_list() + public static function obtain_word_list() { - global $db; + global $cache; - if (($censors = $this->get('_word_censors')) === false) + if (($censors = $cache->get('_word_censors')) === false) { + global $db; + $sql = 'SELECT word, replacement FROM ' . WORDS_TABLE; $result = $db->sql_query($sql); @@ -89,7 +91,7 @@ class cache extends acm } $db->sql_freeresult($result); - $this->put('_word_censors', $censors); + $cache->put('_word_censors', $censors); } return $censors; @@ -98,12 +100,14 @@ class cache extends acm /** * Obtain currently listed icons */ - function obtain_icons() + public static function obtain_icons() { - if (($icons = $this->get('_icons')) === false) + global $cache; + + if (($icons = $cache->get('_icons')) === false) { global $db; - + // Topic icons $sql = 'SELECT * FROM ' . ICONS_TABLE . ' @@ -120,7 +124,7 @@ class cache extends acm } $db->sql_freeresult($result); - $this->put('_icons', $icons); + $cache->put('_icons', $icons); } return $icons; @@ -129,12 +133,14 @@ class cache extends acm /** * Obtain ranks */ - function obtain_ranks() + public static function obtain_ranks() { - if (($ranks = $this->get('_ranks')) === false) + global $cache; + + if (($ranks = $cache->get('_ranks')) === false) { global $db; - + $sql = 'SELECT * FROM ' . RANKS_TABLE . ' ORDER BY rank_min DESC'; @@ -161,7 +167,7 @@ class cache extends acm } $db->sql_freeresult($result); - $this->put('_ranks', $ranks); + $cache->put('_ranks', $ranks); } return $ranks; @@ -174,9 +180,11 @@ class cache extends acm * * @return array allowed extensions array. */ - function obtain_attach_extensions($forum_id) + public static function obtain_attach_extensions($forum_id) { - if (($extensions = $this->get('_extensions')) === false) + global $cache; + + if (($extensions = $cache->get('_extensions')) === false) { global $db; @@ -220,7 +228,7 @@ class cache extends acm } $db->sql_freeresult($result); - $this->put('_extensions', $extensions); + $cache->put('_extensions', $extensions); } // Forum post @@ -279,12 +287,14 @@ class cache extends acm /** * Obtain active bots */ - function obtain_bots() + public static function obtain_bots() { - if (($bots = $this->get('_bots')) === false) + global $cache; + + if (($bots = $cache->get('_bots')) === false) { global $db; - + switch ($db->sql_layer) { case 'mssql': @@ -319,7 +329,7 @@ class cache extends acm } $db->sql_freeresult($result); - $this->put('_bots', $bots); + $cache->put('_bots', $bots); } return $bots; @@ -328,9 +338,9 @@ class cache extends acm /** * Obtain cfg file data */ - function obtain_cfg_items($theme) + public static function obtain_cfg_items($theme) { - global $config, $phpbb_root_path; + global $config, $phpbb_root_path, $cache; $parsed_items = array( 'theme' => array(), @@ -340,7 +350,7 @@ class cache extends acm foreach ($parsed_items as $key => $parsed_array) { - $parsed_array = $this->get('_cfg_' . $key . '_' . $theme[$key . '_path']); + $parsed_array = $cache->get('_cfg_' . $key . '_' . $theme[$key . '_path']); if ($parsed_array === false) { @@ -366,7 +376,7 @@ class cache extends acm $parsed_array = parse_cfg_file($filename); $parsed_array['filetime'] = @filemtime($filename); - $this->put('_cfg_' . $key . '_' . $theme[$key . '_path'], $parsed_array); + $cache->put('_cfg_' . $key . '_' . $theme[$key . '_path'], $parsed_array); } $parsed_items[$key] = $parsed_array; } @@ -377,9 +387,11 @@ class cache extends acm /** * Obtain disallowed usernames */ - function obtain_disallowed_usernames() + public static function obtain_disallowed_usernames() { - if (($usernames = $this->get('_disallowed_usernames')) === false) + global $cache; + + if (($usernames = $cache->get('_disallowed_usernames')) === false) { global $db; @@ -394,7 +406,7 @@ class cache extends acm } $db->sql_freeresult($result); - $this->put('_disallowed_usernames', $usernames); + $cache->put('_disallowed_usernames', $usernames); } return $usernames; @@ -403,12 +415,14 @@ class cache extends acm /** * Obtain hooks... */ - function obtain_hooks() + public static function obtain_hooks() { - global $phpbb_root_path, $phpEx; + global $cache; - if (($hook_files = $this->get('_hooks')) === false) + if (($hook_files = $cache->get('_hooks')) === false) { + global $phpbb_root_path; + $hook_files = array(); // Now search for hooks... @@ -416,6 +430,8 @@ class cache extends acm if ($dh) { + global $phpEx; + while (($file = readdir($dh)) !== false) { if (strpos($file, 'hook_') === 0 && substr($file, -(strlen($phpEx) + 1)) === '.' . $phpEx) @@ -426,7 +442,7 @@ class cache extends acm closedir($dh); } - $this->put('_hooks', $hook_files); + $cache->put('_hooks', $hook_files); } return $hook_files; diff --git a/phpBB/includes/captcha/captcha_gd.php b/phpBB/includes/captcha/captcha_gd.php index 9c9eb5eda7..74afc152a2 100644 --- a/phpBB/includes/captcha/captcha_gd.php +++ b/phpBB/includes/captcha/captcha_gd.php @@ -24,20 +24,20 @@ if (!defined('IN_PHPBB')) */ class captcha { - var $width = 360; - var $height = 96; + const width = 360; + const height = 96; /** * Create the image containing $code with a seed of $seed */ - function execute($code, $seed) + public static function execute($code, $seed) { global $config; srand($seed); mt_srand($seed); // Create image - $img = imagecreatetruecolor($this->width, $this->height); + $img = imagecreatetruecolor(self::width, self::height); // Generate colours $colour = new colour_manager($img, array( @@ -53,15 +53,15 @@ class captcha // Generate code characters $characters = $sizes = $bounding_boxes = array(); - $width_avail = $this->width - 15; + $width_avail = self::width - 15; $code_len = strlen($code); - $captcha_bitmaps = $this->captcha_bitmaps(); + $captcha_bitmaps = self::captcha_bitmaps(); for ($i = 0; $i < $code_len; ++$i) { $characters[$i] = new char_cube3d($captcha_bitmaps, $code[$i]); - list($min, $max) = $characters[$i]->range(); + list($min, $max) = char_cube3d::range(); $sizes[$i] = mt_rand($min, $max); $box = $characters[$i]->dimensions($sizes[$i]); @@ -82,20 +82,20 @@ class captcha if ($config['captcha_gd_x_grid']) { $grid = (int) $config['captcha_gd_x_grid']; - for ($y = 0; $y < $this->height; $y += mt_rand($grid - 2, $grid + 2)) + for ($y = 0; $y < self::height; $y += mt_rand($grid - 2, $grid + 2)) { $current_colour = $scheme[array_rand($scheme)]; - imageline($img, mt_rand(0,4), mt_rand($y - 3, $y), mt_rand($this->width - 5, $this->width), mt_rand($y - 3, $y), $current_colour); + imageline($img, mt_rand(0,4), mt_rand($y - 3, $y), mt_rand(self::width - 5, self::width), mt_rand($y - 3, $y), $current_colour); } } if ($config['captcha_gd_y_grid']) { $grid = (int) $config['captcha_gd_y_grid']; - for ($x = 0; $x < $this->width; $x += mt_rand($grid - 2, $grid + 2)) + for ($x = 0; $x < self::width; $x += mt_rand($grid - 2, $grid + 2)) { $current_colour = $scheme[array_rand($scheme)]; - imagedashedline($img, mt_rand($x -3, $x + 3), mt_rand(0, 4), mt_rand($x -3, $x + 3), mt_rand($this->height - 5, $this->height), $current_colour); + imagedashedline($img, mt_rand($x -3, $x + 3), mt_rand(0, 4), mt_rand($x -3, $x + 3), mt_rand(self::height - 5, self::height), $current_colour); } } @@ -104,7 +104,7 @@ class captcha { $dimm = $bounding_boxes[$i]; $xoffset += ($offset[$i] - $dimm[0]); - $yoffset = mt_rand(-$dimm[1], $this->height - $dimm[3]); + $yoffset = mt_rand(-$dimm[1], self::height - $dimm[3]); $characters[$i]->drawchar($sizes[$i], $xoffset, $yoffset, $img, $colour->get_resource('background'), $scheme); $xoffset += $dimm[2]; @@ -112,7 +112,7 @@ class captcha if ($config['captcha_gd_foreground_noise']) { - $this->noise_line($img, 0, 0, $this->width, $this->height, $colour->get_resource('background'), $scheme, $bg_colours); + self::noise_line($img, 0, 0, self::width, self::height, $colour->get_resource('background'), $scheme, $bg_colours); } // Send image @@ -125,7 +125,7 @@ class captcha /** * Noise line */ - function noise_line($img, $min_x, $min_y, $max_x, $max_y, $bg, $font, $non_font) + private static function noise_line($img, $min_x, $min_y, $max_x, $max_y, $bg, $font, $non_font) { imagesetthickness($img, 2); @@ -174,7 +174,7 @@ class captcha /** * Return bitmaps */ - function captcha_bitmaps() + private static function captcha_bitmaps() { return array( 'width' => 9, @@ -786,21 +786,21 @@ class captcha */ class char_cube3d { - var $bitmap; - var $bitmap_width; - var $bitmap_height; - - var $basis_matrix = array(array(1, 0, 0), array(0, 1, 0), array(0, 0, 1)); - var $abs_x = array(1, 0); - var $abs_y = array(0, 1); - var $x = 0; - var $y = 1; - var $z = 2; - var $letter = ''; + private $bitmap; + private $bitmap_width; + private $bitmap_height; + + private $basis_matrix = array(array(1, 0, 0), array(0, 1, 0), array(0, 0, 1)); + private $abs_x = array(1, 0); + private $abs_y = array(0, 1); + private $x = 0; + private $y = 1; + private $z = 2; + private $letter = ''; /** */ - function char_cube3d(&$bitmaps, $letter) + function __construct(&$bitmaps, $letter) { $this->bitmap = $bitmaps['data'][$letter]; $this->bitmap_width = $bitmaps['width']; @@ -886,7 +886,7 @@ class char_cube3d /** * Draw a character */ - function drawchar($scale, $xoff, $yoff, $img, $background, $colours) + public function drawchar($scale, $xoff, $yoff, $img, $background, $colours) { $width = $this->bitmap_width; $height = $this->bitmap_height; @@ -915,16 +915,16 @@ class char_cube3d $origin = array(0, 0, 0); $xvec = $this->scale($this->basis_matrix[$this->x], $scale); $yvec = $this->scale($this->basis_matrix[$this->y], $scale); - $face_corner = $this->sum2($xvec, $yvec); + $face_corner = self::sum2($xvec, $yvec); $zvec = $this->scale($this->basis_matrix[$this->z], $scale); - $x_corner = $this->sum2($xvec, $zvec); - $y_corner = $this->sum2($yvec, $zvec); + $x_corner = self::sum2($xvec, $zvec); + $y_corner = self::sum2($yvec, $zvec); - imagefilledpolygon($img, $this->gen_poly($xo, $yo, $origin, $xvec, $x_corner,$zvec), 4, $colour1); - imagefilledpolygon($img, $this->gen_poly($xo, $yo, $origin, $yvec, $y_corner,$zvec), 4, $colour2); + imagefilledpolygon($img, self::gen_poly($xo, $yo, $origin, $xvec, $x_corner,$zvec), 4, $colour1); + imagefilledpolygon($img, self::gen_poly($xo, $yo, $origin, $yvec, $y_corner,$zvec), 4, $colour2); - $face = $this->gen_poly($xo, $yo, $origin, $xvec, $face_corner, $yvec); + $face = self::gen_poly($xo, $yo, $origin, $xvec, $face_corner, $yvec); imagefilledpolygon($img, $face, 4, $background); imagepolygon($img, $face, 4, $colour1); @@ -936,7 +936,7 @@ class char_cube3d /* * return a roughly acceptable range of sizes for rendering with this texttype */ - function range() + public static function range() { return array(3, 4); } @@ -944,7 +944,7 @@ class char_cube3d /** * Vector length */ - function vectorlen($vector) + private static function vectorlen($vector) { return sqrt(pow($vector[0], 2) + pow($vector[1], 2) + pow($vector[2], 2)); } @@ -952,10 +952,10 @@ class char_cube3d /** * Normalize */ - function normalize(&$vector, $length = 1) + private static function normalize(&$vector, $length = 1) { $length = (( $length < 1) ? 1 : $length); - $length /= $this->vectorlen($vector); + $length /= self::vectorlen($vector); $vector[0] *= $length; $vector[1] *= $length; $vector[2] *= $length; @@ -963,7 +963,7 @@ class char_cube3d /** */ - function cross_product($vector1, $vector2) + private static function cross_product($vector1, $vector2) { $retval = array(0, 0, 0); $retval[0] = (($vector1[1] * $vector2[2]) - ($vector1[2] * $vector2[1])); @@ -975,21 +975,21 @@ class char_cube3d /** */ - function sum($vector1, $vector2) + private static function sum($vector1, $vector2) { return array($vector1[0] + $vector2[0], $vector1[1] + $vector2[1], $vector1[2] + $vector2[2]); } /** */ - function sum2($vector1, $vector2) + private static function sum2($vector1, $vector2) { return array($vector1[0] + $vector2[0], $vector1[1] + $vector2[1]); } /** */ - function scale($vector, $length) + private static function scale($vector, $length) { if (sizeof($vector) == 2) { @@ -1001,7 +1001,7 @@ class char_cube3d /** */ - function gen_poly($xoff, $yoff, &$vec1, &$vec2, &$vec3, &$vec4) + private static function gen_poly($xoff, $yoff, &$vec1, &$vec2, &$vec3, &$vec4) { $poly = array(); $poly[0] = $xoff + $vec1[0]; @@ -1019,7 +1019,7 @@ class char_cube3d /** * dimensions */ - function dimensions($size) + public function dimensions($size) { $xn = $this->scale($this->basis_matrix[$this->x], -($this->bitmap_width / 2) * $size); $xp = $this->scale($this->basis_matrix[$this->x], ($this->bitmap_width / 2) * $size); @@ -1027,10 +1027,10 @@ class char_cube3d $yp = $this->scale($this->basis_matrix[$this->y], ($this->bitmap_height / 2) * $size); $p = array(); - $p[0] = $this->sum2($xn, $yn); - $p[1] = $this->sum2($xp, $yn); - $p[2] = $this->sum2($xp, $yp); - $p[3] = $this->sum2($xn, $yp); + $p[0] = self::sum2($xn, $yn); + $p[1] = self::sum2($xp, $yn); + $p[2] = self::sum2($xp, $yp); + $p[3] = self::sum2($xn, $yp); $min_x = $max_x = $p[0][0]; $min_y = $max_y = $p[0][1]; @@ -1052,15 +1052,15 @@ class char_cube3d */ class colour_manager { - var $img; - var $mode; - var $colours; - var $named_colours; + private $img; + private $mode; + private $colours; + private $named_colours; /** * Create the colour manager, link it to the image resource */ - function colour_manager($img, $background = false, $mode = 'ahsv') + function __construct($img, $background = false, $mode = 'ahsv') { $this->img = $img; $this->mode = $mode; @@ -1077,7 +1077,7 @@ class colour_manager /** * Lookup a named colour resource */ - function get_resource($named_colour) + public function get_resource($named_colour) { if (isset($this->named_colours[$named_colour])) { @@ -1095,7 +1095,7 @@ class colour_manager /** * Assign a name to a colour resource */ - function name_colour($name, $resource) + private function name_colour($name, $resource) { $this->named_colours[$name] = $resource; } @@ -1103,7 +1103,7 @@ class colour_manager /** * names and allocates a colour resource */ - function allocate_named($name, $colour, $mode = false) + private function allocate_named($name, $colour, $mode = false) { $resource = $this->allocate($colour, $mode); @@ -1117,7 +1117,7 @@ class colour_manager /** * allocates a specified colour into the image */ - function allocate($colour, $mode = false) + private function allocate($colour, $mode = false) { if ($mode === false) { @@ -1164,7 +1164,7 @@ class colour_manager /** * randomly generates a colour, with optional params */ - function random_colour($params = array(), $mode = false) + private function random_colour($params = array(), $mode = false) { if ($mode === false) { @@ -1263,7 +1263,7 @@ class colour_manager /** */ - function colour_scheme($resource, $include_original = true) + public function colour_scheme($resource, $include_original = true) { $mode = 'hsv'; @@ -1289,7 +1289,7 @@ class colour_manager /** */ - function mono_range($resource, $count = 5, $include_original = true) + public function mono_range($resource, $count = 5, $include_original = true) { if (is_array($resource)) { @@ -1331,7 +1331,7 @@ class colour_manager /** * Convert from one colour model to another */ - function model_convert($colour, $from_model, $to_model) + private static function model_convert($colour, $from_model, $to_model) { if ($from_model == $to_model) { @@ -1387,7 +1387,7 @@ class colour_manager /** * Slightly altered from wikipedia's algorithm */ - function hsv2rgb($hsv) + private static function hsv2rgb($hsv) { colour_manager::normalize_hue($hsv[0]); @@ -1450,7 +1450,7 @@ class colour_manager /** * (more than) Slightly altered from wikipedia's algorithm */ - function rgb2hsv($rgb) + private static function rgb2hsv($rgb) { $r = min(255, max(0, $rgb[0])); $g = min(255, max(0, $rgb[1])); @@ -1488,7 +1488,7 @@ class colour_manager /** */ - function normalize_hue(&$hue) + private static function normalize_hue(&$hue) { $hue %= 360; @@ -1501,7 +1501,7 @@ class colour_manager /** * Alternate hue to hue */ - function ah2h($ahue) + private static function ah2h($ahue) { if (is_array($ahue)) { @@ -1535,7 +1535,7 @@ class colour_manager /** * hue to Alternate hue */ - function h2ah($hue) + private static function h2ah($hue) { if (is_array($hue)) { diff --git a/phpBB/includes/captcha/captcha_non_gd.php b/phpBB/includes/captcha/captcha_non_gd.php index f82896f628..978aaa575f 100644 --- a/phpBB/includes/captcha/captcha_non_gd.php +++ b/phpBB/includes/captcha/captcha_non_gd.php @@ -23,25 +23,15 @@ if (!defined('IN_PHPBB')) */ class captcha { - var $filtered_pngs; - var $width = 320; - var $height = 50; - - /** - * Define filtered pngs on init - */ - function captcha() - { - // If we can we will generate a single filtered png, we avoid nastiness via emulation of some Zlib stuff - $this->define_filtered_pngs(); - } + const width = 320; + const height = 50; /** * Create the image containing $code with a seed of $seed */ - function execute($code, $seed) + public static function execute($code, $seed) { - $img_height = $this->height - 10; + $img_height = self::height - 10; $img_width = 0; mt_srand($seed); @@ -49,27 +39,30 @@ class captcha $char_widths = $hold_chars = array(); $code_len = strlen($code); + // If we can we will generate a single filtered png, we avoid nastiness via emulation of some Zlib stuff + $filtered_pngs = self::define_filtered_pngs(); + for ($i = 0; $i < $code_len; $i++) { $char = $code[$i]; $width = mt_rand(0, 4); - $raw_width = $this->filtered_pngs[$char]['width']; + $raw_width = $filtered_pngs[$char]['width']; $char_widths[$i] = $width; $img_width += $raw_width - $width; // Split the char into chunks of $raw_width + 1 length if (empty($hold_chars[$char])) { - $hold_chars[$char] = str_split(base64_decode($this->filtered_pngs[$char]['data']), $raw_width + 1); + $hold_chars[$char] = str_split(base64_decode($filtered_pngs[$char]['data']), $raw_width + 1); } } - $offset_x = mt_rand(0, $this->width - $img_width); - $offset_y = mt_rand(0, $this->height - $img_height); + $offset_x = mt_rand(0, self::width - $img_width); + $offset_y = mt_rand(0, self::height - $img_height); $image = ''; - for ($i = 0; $i < $this->height; $i++) + for ($i = 0; $i < self::height; $i++) { $image .= chr(0); @@ -82,10 +75,10 @@ class captcha for ($j = 0; $j < $code_len; $j++) { - $image .= $this->randomise(substr($hold_chars[$code{$j}][$i - $offset_y - 1], 1), $char_widths[$j]); + $image .= self::randomise(substr($hold_chars[$code{$j}][$i - $offset_y - 1], 1), $char_widths[$j]); } - for ($j = $offset_x + $img_width; $j < $this->width; $j++) + for ($j = $offset_x + $img_width; $j < self::width; $j++) { $image .= chr(mt_rand(140, 255)); } @@ -100,13 +93,12 @@ class captcha } unset($hold_chars); - $image = $this->create_png($image, $this->width, $this->height); + $image = self::create_png($image, $this->width, $this->height); // Output image header('Content-Type: image/png'); header('Cache-control: no-cache, no-store'); echo $image; - exit; } /** @@ -114,14 +106,14 @@ class captcha * certain limits so as to keep it readable. It also varies the image * width a little */ - function randomise($scanline, $width) + private static function randomise($scanline, $width) { $new_line = ''; - $end = strlen($scanline) - ceil($width/2); - for ($i = floor($width/2); $i < $end; $i++) + $end = strlen($scanline) - ceil($width / 2); + for ($i = $width >> 1; $i < $end; $i++) { - $pixel = ord($scanline{$i}); + $pixel = ord($scanline[$i]); if ($pixel < 190) { @@ -144,7 +136,7 @@ class captcha * This creates a chunk of the given type, with the given data * of the given length adding the relevant crc */ - function png_chunk($length, $type, $data) + private static function png_chunk($length, $type, $data) { $raw = $type . $data; @@ -165,7 +157,7 @@ class captcha // IHDR $raw = pack('N2', $width, $height); $raw .= pack('C5', 8, 0, 0, 0, 0); - $image .= $this->png_chunk(13, 'IHDR', $raw); + $image .= self::png_chunk(13, 'IHDR', $raw); // IDAT if (@extension_loaded('zlib')) @@ -226,10 +218,10 @@ class captcha } // IDAT - $image .= $this->png_chunk($length, 'IDAT', $raw_image); + $image .= self::png_chunk($length, 'IDAT', $raw_image); // IEND - $image .= $this->png_chunk(0, 'IEND', ''); + $image .= self::png_chunk(0, 'IEND', ''); return $image; } @@ -238,7 +230,7 @@ class captcha * png image data * Each 'data' element is base64_encoded uncompressed IDAT */ - function define_filtered_pngs() + private static function define_filtered_pngs() { $this->filtered_pngs = array( '0' => array( diff --git a/phpBB/includes/db/db_tools.php b/phpBB/includes/db/db_tools.php index 0a65fc12ca..2e349df6ce 100644 --- a/phpBB/includes/db/db_tools.php +++ b/phpBB/includes/db/db_tools.php @@ -253,7 +253,7 @@ class phpbb_db_tools /** */ - function phpbb_db_tools(&$db) + function __construct(&$db) { $this->db = $db; diff --git a/phpBB/includes/db/dbal.php b/phpBB/includes/db/dbal.php index e37ccda0db..a2a42e173c 100644 --- a/phpBB/includes/db/dbal.php +++ b/phpBB/includes/db/dbal.php @@ -66,7 +66,7 @@ class dbal /** * Constructor */ - function dbal() + function __construct() { $this->num_queries = array( 'cached' => 0, diff --git a/phpBB/includes/db/firebird.php b/phpBB/includes/db/firebird.php index d23d1866c1..b258b96fa1 100644 --- a/phpBB/includes/db/firebird.php +++ b/phpBB/includes/db/firebird.php @@ -27,7 +27,6 @@ class dbal_firebird extends dbal { var $last_query_text = ''; var $service_handle = false; - var $affected_rows = 0; /** * Connect to server @@ -41,7 +40,7 @@ class dbal_firebird extends dbal $this->db_connect_id = ($this->persistency) ? @ibase_pconnect($this->server . ':' . $this->dbname, $this->user, $sqlpassword, false, false, 3) : @ibase_connect($this->server . ':' . $this->dbname, $this->user, $sqlpassword, false, false, 3); - $this->service_handle = (function_exists('ibase_service_attach')) ? @ibase_service_attach($this->server, $this->user, $sqlpassword) : false; + $this->service_handle = (strtolower($this->user) == 'sysdba') ? @ibase_service_attach($this->server, $this->user, $sqlpassword) : false; return ($this->db_connect_id) ? $this->db_connect_id : $this->sql_error(''); } @@ -51,7 +50,7 @@ class dbal_firebird extends dbal */ function sql_server_info() { - if ($this->service_handle !== false && function_exists('ibase_server_info')) + if ($this->service_handle !== false) { return @ibase_server_info($this->service_handle, IBASE_SVC_SERVER_VERSION); } @@ -164,25 +163,6 @@ class dbal_firebird extends dbal } } - if (!function_exists('ibase_affected_rows') && (preg_match('/^UPDATE ([\w_]++)\s+SET [\w_]++\s*=\s*(?:\'(?:[^\']++|\'\')*+\'|[\d-.]+)(?:,\s*[\w_]++\s*=\s*(?:\'(?:[^\']++|\'\')*+\'|[\d-.]+))*+\s+(WHERE.*)?$/s', $query, $regs) || preg_match('/^DELETE FROM ([\w_]++)\s*(WHERE\s*.*)?$/s', $query, $regs))) - { - $affected_sql = 'SELECT COUNT(*) as num_rows_affected FROM ' . $regs[1]; - if (!empty($regs[2])) - { - $affected_sql .= ' ' . $regs[2]; - } - - if (!($temp_q_id = @ibase_query($this->db_connect_id, $affected_sql))) - { - return false; - } - - $temp_result = @ibase_fetch_assoc($temp_q_id); - @ibase_free_result($temp_q_id); - - $this->affected_rows = ($temp_result) ? $temp_result['NUM_ROWS_AFFECTED'] : false; - } - if (sizeof($array)) { $p_query = @ibase_prepare($this->db_connect_id, $query); @@ -207,15 +187,7 @@ class dbal_firebird extends dbal if (!$this->transaction) { - if (function_exists('ibase_commit_ret')) - { - @ibase_commit_ret(); - } - else - { - // way cooler than ibase_commit_ret :D - @ibase_query('COMMIT RETAIN;'); - } + @ibase_commit_ret(); } if ($cache_ttl && method_exists($cache, 'sql_save')) @@ -258,15 +230,7 @@ class dbal_firebird extends dbal */ function sql_affectedrows() { - // PHP 5+ function - if (function_exists('ibase_affected_rows')) - { - return ($this->db_connect_id) ? @ibase_affected_rows($this->db_connect_id) : false; - } - else - { - return $this->affected_rows; - } + return ($this->db_connect_id) ? @ibase_affected_rows($this->db_connect_id) : false; } /** @@ -438,7 +402,7 @@ class dbal_firebird extends dbal { return array( 'message' => @ibase_errmsg(), - 'code' => (@function_exists('ibase_errcode') ? @ibase_errcode() : '') + 'code' => @ibase_errcode() ); } diff --git a/phpBB/includes/db/mssql.php b/phpBB/includes/db/mssql.php index b222588cf2..1e42abcce2 100644 --- a/phpBB/includes/db/mssql.php +++ b/phpBB/includes/db/mssql.php @@ -39,14 +39,7 @@ class dbal_mssql extends dbal @ini_set('mssql.textlimit', 2147483647); @ini_set('mssql.textsize', 2147483647); - if (version_compare(PHP_VERSION, '5.1.0', '>=') || (version_compare(PHP_VERSION, '5.0.0-dev', '<=') && version_compare(PHP_VERSION, '4.4.1', '>='))) - { - $this->db_connect_id = ($this->persistency) ? @mssql_pconnect($this->server, $this->user, $sqlpassword, $new_link) : @mssql_connect($this->server, $this->user, $sqlpassword, $new_link); - } - else - { - $this->db_connect_id = ($this->persistency) ? @mssql_pconnect($this->server, $this->user, $sqlpassword) : @mssql_connect($this->server, $this->user, $sqlpassword); - } + $this->db_connect_id = ($this->persistency) ? @mssql_pconnect($this->server, $this->user, $sqlpassword, $new_link) : @mssql_connect($this->server, $this->user, $sqlpassword, $new_link); if ($this->db_connect_id && $this->dbname != '') { diff --git a/phpBB/includes/db/mysql.php b/phpBB/includes/db/mysql.php index 2d689f86f9..840d40b03d 100644 --- a/phpBB/includes/db/mysql.php +++ b/phpBB/includes/db/mysql.php @@ -362,11 +362,12 @@ class dbal_mysql extends dbal function _sql_report($mode, $query = '') { static $test_prof; + static $test_extend; // current detection method, might just switch to see the existance of INFORMATION_SCHEMA.PROFILING if ($test_prof === null) { - $test_prof = false; + $test_prof = $test_extend = false; if (strpos($this->mysql_version, 'community') !== false) { $ver = substr($this->mysql_version, 0, strpos($this->mysql_version, '-')); @@ -375,6 +376,11 @@ class dbal_mysql extends dbal $test_prof = true; } } + + if (version_compare($ver, '4.1.1', '>=')) + { + $test_extend = true; + } } switch ($mode) @@ -401,7 +407,7 @@ class dbal_mysql extends dbal @mysql_query('SET profiling = 1;', $this->db_connect_id); } - if ($result = @mysql_query("EXPLAIN $explain_query", $this->db_connect_id)) + if ($result = @mysql_query('EXPLAIN ' . (($test_extend) ? 'EXTENDED ' : '') . "$explain_query", $this->db_connect_id)) { while ($row = @mysql_fetch_assoc($result)) { @@ -415,6 +421,27 @@ class dbal_mysql extends dbal $this->html_hold .= '</table>'; } + if ($test_extend) + { + $html_table = false; + + if ($result = @mysql_query('SHOW WARNINGS', $this->db_connect_id)) + { + $this->html_hold .= '<br />'; + while ($row = @mysql_fetch_assoc($result)) + { + $html_table = $this->sql_report('add_select_row', $query, $html_table, $row); + } + } + @mysql_free_result($result); + + if ($html_table) + { + $this->html_hold .= '</table>'; + } + } + + if ($test_prof) { $html_table = false; diff --git a/phpBB/includes/db/oracle.php b/phpBB/includes/db/oracle.php index a63c06e5c0..18740fb036 100644 --- a/phpBB/includes/db/oracle.php +++ b/phpBB/includes/db/oracle.php @@ -48,7 +48,7 @@ class dbal_oracle extends dbal $connect = $sqlserver . (($port) ? ':' . $port : '') . '/' . $database; } - $this->db_connect_id = ($new_link) ? @ocinlogon($this->user, $sqlpassword, $connect, 'UTF8') : (($this->persistency) ? @ociplogon($this->user, $sqlpassword, $connect, 'UTF8') : @ocilogon($this->user, $sqlpassword, $connect, 'UTF8')); + $this->db_connect_id = ($new_link) ? @oci_new_connect($this->user, $sqlpassword, $connect, 'UTF8') : (($this->persistency) ? @oci_pconnect($this->user, $sqlpassword, $connect, 'UTF8') : @oci_connect($this->user, $sqlpassword, $connect, 'UTF8')); return ($this->db_connect_id) ? $this->db_connect_id : $this->sql_error(''); } @@ -58,7 +58,7 @@ class dbal_oracle extends dbal */ function sql_server_info() { - return @ociserverversion($this->db_connect_id); + return @oci_server_version($this->db_connect_id); } /** @@ -74,11 +74,11 @@ class dbal_oracle extends dbal break; case 'commit': - return @ocicommit($this->db_connect_id); + return @oci_commit($this->db_connect_id); break; case 'rollback': - return @ocirollback($this->db_connect_id); + return @oci_rollback($this->db_connect_id); break; } @@ -308,14 +308,14 @@ class dbal_oracle extends dbal break; } - $this->query_result = @ociparse($this->db_connect_id, $query); + $this->query_result = @oci_parse($this->db_connect_id, $query); foreach ($array as $key => $value) { - @ocibindbyname($this->query_result, $key, $array[$key], -1); + @oci_bind_by_name($this->query_result, $key, $array[$key], -1); } - $success = @ociexecute($this->query_result, OCI_DEFAULT); + $success = @oci_execute($this->query_result, OCI_DEFAULT); if (!$success) { @@ -375,7 +375,7 @@ class dbal_oracle extends dbal */ function sql_affectedrows() { - return ($this->query_result) ? @ocirowcount($this->query_result) : false; + return ($this->query_result) ? @oci_num_rows($this->query_result) : false; } /** @@ -398,9 +398,9 @@ class dbal_oracle extends dbal if ($query_id !== false) { $row = array(); - $result = @ocifetchinto($query_id, $row, OCI_ASSOC + OCI_RETURN_NULLS); + $row = @oci_fetch_array($query_id, OCI_ASSOC + OCI_RETURN_NULLS); - if (!$result || !$row) + if (!$row) { return false; } @@ -453,7 +453,7 @@ class dbal_oracle extends dbal } // Reset internal pointer - @ociexecute($query_id, OCI_DEFAULT); + @oci_execute($query_id, OCI_DEFAULT); // We do not fetch the row for rownum == 0 because then the next resultset would be the second row for ($i = 0; $i < $rownum; $i++) @@ -479,13 +479,13 @@ class dbal_oracle extends dbal if (preg_match('#^INSERT[\t\n ]+INTO[\t\n ]+([a-z0-9\_\-]+)#is', $this->last_query_text, $tablename)) { $query = 'SELECT ' . $tablename[1] . '_seq.currval FROM DUAL'; - $stmt = @ociparse($this->db_connect_id, $query); - @ociexecute($stmt, OCI_DEFAULT); + $stmt = @oci_parse($this->db_connect_id, $query); + @oci_execute($stmt, OCI_DEFAULT); - $temp_result = @ocifetchinto($stmt, $temp_array, OCI_ASSOC + OCI_RETURN_NULLS); - @ocifreestatement($stmt); + $temp_array = @oci_fetch_array($stmt, OCI_ASSOC + OCI_RETURN_NULLS); + @oci_free_statement($stmt); - if ($temp_result) + if ($temp_array) { return $temp_array['CURRVAL']; } @@ -519,7 +519,7 @@ class dbal_oracle extends dbal if (isset($this->open_queries[(int) $query_id])) { unset($this->open_queries[(int) $query_id]); - return @ocifreestatement($query_id); + return @oci_free_statement($query_id); } return false; @@ -553,9 +553,9 @@ class dbal_oracle extends dbal */ function _sql_error() { - $error = @ocierror(); - $error = (!$error) ? @ocierror($this->query_result) : $error; - $error = (!$error) ? @ocierror($this->db_connect_id) : $error; + $error = @oci_error(); + $error = (!$error) ? @oci_error($this->query_result) : $error; + $error = (!$error) ? @oci_error($this->db_connect_id) : $error; if ($error) { @@ -575,7 +575,7 @@ class dbal_oracle extends dbal */ function _sql_close() { - return @ocilogoff($this->db_connect_id); + return @oci_close($this->db_connect_id); } /** @@ -594,11 +594,11 @@ class dbal_oracle extends dbal $sql = "SELECT table_name FROM USER_TABLES WHERE table_name LIKE '%PLAN_TABLE%'"; - $stmt = ociparse($this->db_connect_id, $sql); - ociexecute($stmt); + $stmt = oci_parse($this->db_connect_id, $sql); + oci_execute($stmt); $result = array(); - if (ocifetchinto($stmt, $result, OCI_ASSOC + OCI_RETURN_NULLS)) + if ($result = oci_fetch_array($stmt, OCI_ASSOC + OCI_RETURN_NULLS)) { $table = $result['TABLE_NAME']; @@ -606,17 +606,17 @@ class dbal_oracle extends dbal $statement_id = substr(md5($query), 0, 30); // Remove any stale plans - $stmt2 = ociparse($this->db_connect_id, "DELETE FROM $table WHERE statement_id='$statement_id'"); - ociexecute($stmt2); - ocifreestatement($stmt2); + $stmt2 = oci_parse($this->db_connect_id, "DELETE FROM $table WHERE statement_id='$statement_id'"); + oci_execute($stmt2); + oci_free_statement($stmt2); // Explain the plan $sql = "EXPLAIN PLAN SET STATEMENT_ID = '$statement_id' FOR $query"; $stmt2 = ociparse($this->db_connect_id, $sql); - ociexecute($stmt2); - ocifreestatement($stmt2); + oci_execute($stmt2); + oci_free_statement($stmt2); // Get the data from the plan $sql = "SELECT operation, options, object_name, object_type, cardinality, cost @@ -624,24 +624,24 @@ class dbal_oracle extends dbal START WITH id = 0 AND statement_id = '$statement_id' CONNECT BY PRIOR id = parent_id AND statement_id = '$statement_id'"; - $stmt2 = ociparse($this->db_connect_id, $sql); - ociexecute($stmt2); + $stmt2 = oci_parse($this->db_connect_id, $sql); + oci_execute($stmt2); $row = array(); - while (ocifetchinto($stmt2, $row, OCI_ASSOC + OCI_RETURN_NULLS)) + while ($row = oci_fetch_array($stmt2, OCI_ASSOC + OCI_RETURN_NULLS)) { $html_table = $this->sql_report('add_select_row', $query, $html_table, $row); } - ocifreestatement($stmt2); + oci_free_statement($stmt2); // Remove the plan we just made, we delete them on request anyway - $stmt2 = ociparse($this->db_connect_id, "DELETE FROM $table WHERE statement_id='$statement_id'"); - ociexecute($stmt2); - ocifreestatement($stmt2); + $stmt2 = oci_parse($this->db_connect_id, "DELETE FROM $table WHERE statement_id='$statement_id'"); + oci_execute($stmt2); + oci_free_statement($stmt2); } - ocifreestatement($stmt); + oci_free_statement($stmt); if ($html_table) { @@ -654,15 +654,15 @@ class dbal_oracle extends dbal $endtime = explode(' ', microtime()); $endtime = $endtime[0] + $endtime[1]; - $result = @ociparse($this->db_connect_id, $query); - $success = @ociexecute($result, OCI_DEFAULT); + $result = @oci_parse($this->db_connect_id, $query); + $success = @oci_execute($result, OCI_DEFAULT); $row = array(); - while (@ocifetchinto($result, $row, OCI_ASSOC + OCI_RETURN_NULLS)) + while ($void = @oci_fetch_array($result, OCI_ASSOC + OCI_RETURN_NULLS)) { // Take the time spent on parsing rows into account } - @ocifreestatement($result); + @oci_free_statement($result); $splittime = explode(' ', microtime()); $splittime = $splittime[0] + $splittime[1]; diff --git a/phpBB/includes/db/postgres.php b/phpBB/includes/db/postgres.php index bb689a7394..0ac27023f3 100644 --- a/phpBB/includes/db/postgres.php +++ b/phpBB/includes/db/postgres.php @@ -82,21 +82,7 @@ class dbal_postgres extends dbal if ($this->db_connect_id) { // determine what version of PostgreSQL is running, we can be more efficient if they are running 8.2+ - if (version_compare(PHP_VERSION, '5.0.0', '>=')) - { - $this->pgsql_version = @pg_parameter_status($this->db_connect_id, 'server_version'); - } - else - { - $query_id = @pg_query($this->db_connect_id, 'SELECT VERSION()'); - $row = @pg_fetch_assoc($query_id, null); - @pg_free_result($query_id); - - if (!empty($row['version'])) - { - $this->pgsql_version = substr($row['version'], 10); - } - } + $this->pgsql_version = @pg_parameter_status($this->db_connect_id, 'server_version'); if (!empty($this->pgsql_version) && $this->pgsql_version[0] >= '8' && $this->pgsql_version[2] >= '2') { @@ -172,7 +158,7 @@ class dbal_postgres extends dbal if ($this->query_result === false) { - if (($this->query_result = @pg_query($this->db_connect_id, $query)) === false) + if (($this->query_result = pg_query($this->db_connect_id, $query)) === false) { $this->sql_error($query); } diff --git a/phpBB/includes/diff/diff.php b/phpBB/includes/diff/diff.php index 0b3d14dbda..801480df95 100644 --- a/phpBB/includes/diff/diff.php +++ b/phpBB/includes/diff/diff.php @@ -43,7 +43,7 @@ class diff * @param array $from_lines An array of strings. Typically these are lines from a file. * @param array $to_lines An array of strings. */ - function diff(&$from_content, &$to_content, $preserve_cr = true) + function __construct(&$from_content, &$to_content, $preserve_cr = true) { $diff_engine = &new diff_engine(); $this->_edits = $diff_engine->diff($from_content, $to_content, $preserve_cr); @@ -645,7 +645,7 @@ class diff3 extends diff */ class diff3_op { - function diff3_op($orig = false, $final1 = false, $final2 = false) + function __construct($orig = false, $final1 = false, $final2 = false) { $this->orig = $orig ? $orig : array(); $this->final1 = $final1 ? $final1 : array(); @@ -717,7 +717,7 @@ class diff3_op_copy extends diff3_op */ class diff3_block_builder { - function diff3_block_builder() + function __construct() { $this->_init(); } diff --git a/phpBB/includes/diff/renderer.php b/phpBB/includes/diff/renderer.php index 4157bc2cde..11745dab3d 100644 --- a/phpBB/includes/diff/renderer.php +++ b/phpBB/includes/diff/renderer.php @@ -51,7 +51,7 @@ class diff_renderer /** * Constructor. */ - function diff_renderer($params = array()) + function __construct($params = array()) { foreach ($params as $param => $value) { diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index bf00beb2e1..63a90ee9cc 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -323,7 +323,7 @@ function _hash_gensalt_private($input, &$itoa64, $iteration_count_log2 = 6) } $output = '$H$'; - $output .= $itoa64[min($iteration_count_log2 + ((PHP_VERSION >= 5) ? 5 : 3), 30)]; + $output .= $itoa64[min($iteration_count_log2 + 5, 30)]; $output .= _hash_encode64($input, 6, $itoa64); return $output; @@ -409,24 +409,12 @@ function _hash_crypt_private($password, $setting, &$itoa64) * consequently in lower iteration counts and hashes that are * quicker to crack (by non-PHP code). */ - if (PHP_VERSION >= 5) - { - $hash = md5($salt . $password, true); - do - { - $hash = md5($hash . $password, true); - } - while (--$count); - } - else + $hash = md5($salt . $password, true); + do { - $hash = pack('H*', md5($salt . $password)); - do - { - $hash = pack('H*', md5($hash . $password)); - } - while (--$count); + $hash = md5($hash . $password, true); } + while (--$count); $output = substr($setting, 0, 12); $output .= _hash_encode64($hash, 16, $itoa64); @@ -434,95 +422,6 @@ function _hash_crypt_private($password, $setting, &$itoa64) return $output; } -// Compatibility functions - -if (!function_exists('array_combine')) -{ - /** - * A wrapper for the PHP5 function array_combine() - * @param array $keys contains keys for the resulting array - * @param array $values contains values for the resulting array - * - * @return Returns an array by using the values from the keys array as keys and the - * values from the values array as the corresponding values. Returns false if the - * number of elements for each array isn't equal or if the arrays are empty. - */ - function array_combine($keys, $values) - { - $keys = array_values($keys); - $values = array_values($values); - - $n = sizeof($keys); - $m = sizeof($values); - if (!$n || !$m || ($n != $m)) - { - return false; - } - - $combined = array(); - for ($i = 0; $i < $n; $i++) - { - $combined[$keys[$i]] = $values[$i]; - } - return $combined; - } -} - -if (!function_exists('str_split')) -{ - /** - * A wrapper for the PHP5 function str_split() - * @param array $string contains the string to be converted - * @param array $split_length contains the length of each chunk - * - * @return Converts a string to an array. If the optional split_length parameter is specified, - * the returned array will be broken down into chunks with each being split_length in length, - * otherwise each chunk will be one character in length. FALSE is returned if split_length is - * less than 1. If the split_length length exceeds the length of string, the entire string is - * returned as the first (and only) array element. - */ - function str_split($string, $split_length = 1) - { - if ($split_length < 1) - { - return false; - } - else if ($split_length >= strlen($string)) - { - return array($string); - } - else - { - preg_match_all('#.{1,' . $split_length . '}#s', $string, $matches); - return $matches[0]; - } - } -} - -if (!function_exists('stripos')) -{ - /** - * A wrapper for the PHP5 function stripos - * Find position of first occurrence of a case-insensitive string - * - * @param string $haystack is the string to search in - * @param string $needle is the string to search for - * - * @return mixed Returns the numeric position of the first occurrence of needle in the haystack string. Unlike strpos(), stripos() is case-insensitive. - * Note that the needle may be a string of one or more characters. - * If needle is not found, stripos() will return boolean FALSE. - */ - function stripos($haystack, $needle) - { - if (preg_match('#' . preg_quote($needle, '#') . '#i', $haystack, $m)) - { - return strpos($haystack, $m[0]); - } - - return false; - } -} - if (!function_exists('realpath')) { /** @@ -713,18 +612,6 @@ else } } -if (!function_exists('htmlspecialchars_decode')) -{ - /** - * A wrapper for htmlspecialchars_decode - * @ignore - */ - function htmlspecialchars_decode($string, $quote_style = ENT_COMPAT) - { - return strtr($string, array_flip(get_html_translation_table(HTML_SPECIALCHARS, $quote_style))); - } -} - // functions used for building option fields /** @@ -3153,6 +3040,8 @@ function page_header($page_title = '', $display_online_list = true) ORDER BY u.username_clean ASC, s.session_ip ASC'; $result = $db->sql_query($sql); + $prev_user_id = false; + while ($row = $db->sql_fetchrow($result)) { // User is logged in and therefore not a guest @@ -3355,6 +3244,9 @@ function page_header($page_title = '', $display_online_list = true) 'S_BOARD_DISABLED' => ($config['board_disable']) ? true : false, 'S_REGISTERED_USER' => $user->data['is_registered'], 'S_IS_BOT' => $user->data['is_bot'], + 'S_IN_SEARCH' => false, + 'S_VIEWTOPIC' => false, + 'S_VIEWFORUM' => false, 'S_USER_PM_POPUP' => $user->optionget('popuppm'), 'S_USER_LANG' => $user->lang['USER_LANG'], 'S_USER_BROWSER' => (isset($user->data['session_browser'])) ? $user->data['session_browser'] : $user->lang['UNKNOWN_BROWSER'], diff --git a/phpBB/includes/functions_compress.php b/phpBB/includes/functions_compress.php index 36b7d575d9..9537bd1ed1 100644 --- a/phpBB/includes/functions_compress.php +++ b/phpBB/includes/functions_compress.php @@ -22,12 +22,12 @@ if (!defined('IN_PHPBB')) */ class compress { - var $fp = 0; + protected $fp = 0; /** * Add file to archive */ - function add_file($src, $src_rm_prefix = '', $src_add_prefix = '', $skip_files = '') + public function add_file($src, $src_rm_prefix = '', $src_add_prefix = '', $skip_files = '') { global $phpbb_root_path; @@ -87,7 +87,7 @@ class compress /** * Add custom file (the filepath will not be adjusted) */ - function add_custom_file($src, $filename) + public function add_custom_file($src, $filename) { $this->data($filename, file_get_contents($src), false, stat($src)); return true; @@ -96,7 +96,7 @@ class compress /** * Add file data */ - function add_data($src, $name) + public function add_data($src, $name) { $stat = array(); $stat[2] = 436; //384 @@ -110,7 +110,7 @@ class compress /** * Return available methods */ - function methods() + public static function methods() { $methods = array('.tar'); $available_methods = array('.tar.gz' => 'zlib', '.tar.bz2' => 'bz2', '.zip' => 'zlib'); @@ -143,17 +143,17 @@ class compress */ class compress_zip extends compress { - var $datasec = array(); - var $ctrl_dir = array(); - var $eof_cdh = "\x50\x4b\x05\x06\x00\x00\x00\x00"; + private $datasec = array(); + private $ctrl_dir = array(); + const eof_cdh = "\x50\x4b\x05\x06\x00\x00\x00\x00"; - var $old_offset = 0; - var $datasec_len = 0; + private $old_offset = 0; + private $datasec_len = 0; /** * Constructor */ - function compress_zip($mode, $file) + function __construct($mode, $file) { return $this->fp = @fopen($file, $mode . 'b'); } @@ -161,7 +161,7 @@ class compress_zip extends compress /** * Convert unix to dos time */ - function unix_to_dos_time($time) + private static function unix_to_dos_time($time) { $timearray = (!$time) ? getdate() : getdate($time); @@ -178,7 +178,7 @@ class compress_zip extends compress /** * Extract archive */ - function extract($dst) + public function extract($dst) { // Loop the file, looking for files and folders $dd_try = false; @@ -313,7 +313,7 @@ class compress_zip extends compress /** * Close archive */ - function close() + public function close() { // Write out central file directory and footer ... if it exists if (sizeof($this->ctrl_dir)) @@ -326,11 +326,11 @@ class compress_zip extends compress /** * Create the structures ... note we assume version made by is MSDOS */ - function data($name, $data, $is_dir = false, $stat) + protected function data($name, $data, $is_dir = false, $stat) { $name = str_replace('\\', '/', $name); - $hexdtime = pack('V', $this->unix_to_dos_time($stat[9])); + $hexdtime = pack('V', self::unix_to_dos_time($stat[9])); if ($is_dir) { @@ -412,11 +412,11 @@ class compress_zip extends compress /** * file */ - function file() + private function file() { $ctrldir = implode('', $this->ctrl_dir); - return $ctrldir . $this->eof_cdh . + return $ctrldir . self::eof_cdh . pack('v', sizeof($this->ctrl_dir)) . // total # of entries "on this disk" pack('v', sizeof($this->ctrl_dir)) . // total # of entries overall pack('V', strlen($ctrldir)) . // size of central dir @@ -427,7 +427,7 @@ class compress_zip extends compress /** * Download archive */ - function download($filename, $download_name = false) + public function download($filename, $download_name = false) { global $phpbb_root_path; @@ -462,17 +462,17 @@ class compress_zip extends compress */ class compress_tar extends compress { - var $isgz = false; - var $isbz = false; - var $filename = ''; - var $mode = ''; - var $type = ''; - var $wrote = false; + private $isgz = false; + private $isbz = false; + private $filename = ''; + private $mode = ''; + private $type = ''; + private $wrote = false; /** * Constructor */ - function compress_tar($mode, $file, $type = '') + function __construct($mode, $file, $type = '') { $type = (!$type) ? $file : $type; $this->isgz = (strpos($type, '.tar.gz') !== false || strpos($type, '.tgz') !== false) ? true : false; @@ -487,7 +487,7 @@ class compress_tar extends compress /** * Extract archive */ - function extract($dst) + public function extract($dst) { $fzread = ($this->isbz && function_exists('bzread')) ? 'bzread' : (($this->isgz && @extension_loaded('zlib')) ? 'gzread' : 'fread'); @@ -549,7 +549,7 @@ class compress_tar extends compress /** * Close archive */ - function close() + public function close() { $fzclose = ($this->isbz && function_exists('bzclose')) ? 'bzclose' : (($this->isgz && @extension_loaded('zlib')) ? 'gzclose' : 'fclose'); @@ -567,7 +567,7 @@ class compress_tar extends compress /** * Create the structures */ - function data($name, $data, $is_dir = false, $stat) + protected function data($name, $data, $is_dir = false, $stat) { $this->wrote = true; $fzwrite = ($this->isbz && function_exists('bzwrite')) ? 'bzwrite' : (($this->isgz && @extension_loaded('zlib')) ? 'gzwrite' : 'fwrite'); @@ -613,7 +613,7 @@ class compress_tar extends compress /** * Open archive */ - function open() + private function open() { $fzopen = ($this->isbz && function_exists('bzopen')) ? 'bzopen' : (($this->isgz && @extension_loaded('zlib')) ? 'gzopen' : 'fopen'); $this->fp = @$fzopen($this->file, $this->mode . (($fzopen == 'bzopen') ? '' : 'b') . (($fzopen == 'gzopen') ? '9' : '')); @@ -627,7 +627,7 @@ class compress_tar extends compress /** * Download archive */ - function download($filename, $download_name = false) + public function download($filename, $download_name = false) { global $phpbb_root_path; diff --git a/phpBB/includes/functions_content.php b/phpBB/includes/functions_content.php index c0acd2eb41..b601e3a60c 100644 --- a/phpBB/includes/functions_content.php +++ b/phpBB/includes/functions_content.php @@ -660,7 +660,7 @@ function censor_text($text) } else { - $censors = $cache->obtain_word_list(); + $censors = cache::obtain_word_list(); } } @@ -722,6 +722,7 @@ function parse_attachments($forum_id, &$message, &$attachments, &$update_count, // $compiled_attachments = array(); + // @todo: do we really need this check? if (!isset($template->filename['attachment_tpl'])) { $template->set_filenames(array( @@ -731,7 +732,7 @@ function parse_attachments($forum_id, &$message, &$attachments, &$update_count, if (empty($extensions) || !is_array($extensions)) { - $extensions = $cache->obtain_attach_extensions($forum_id); + $extensions = cache::obtain_attach_extensions($forum_id); } // Look for missing attachment information... @@ -1046,7 +1047,7 @@ function extension_allowed($forum_id, $extension, &$extensions) if (empty($extensions)) { global $cache; - $extensions = $cache->obtain_attach_extensions($forum_id); + $extensions = cache::obtain_attach_extensions($forum_id); } return (!isset($extensions['_allowed_'][$extension])) ? false : true; @@ -1187,7 +1188,7 @@ class bitfield { var $data; - function bitfield($bitfield = '') + function __construct($bitfield = '') { $this->data = base64_decode($bitfield); } diff --git a/phpBB/includes/functions_display.php b/phpBB/includes/functions_display.php index 05630342d1..a9b037787c 100644 --- a/phpBB/includes/functions_display.php +++ b/phpBB/includes/functions_display.php @@ -1106,7 +1106,7 @@ function get_user_rank($user_rank, $user_posts, &$rank_title, &$rank_img, &$rank if (empty($ranks)) { global $cache; - $ranks = $cache->obtain_ranks(); + $ranks = cache::obtain_ranks(); } if (!empty($user_rank)) diff --git a/phpBB/includes/functions_install.php b/phpBB/includes/functions_install.php index f43ef7c5c7..129b516e8c 100644 --- a/phpBB/includes/functions_install.php +++ b/phpBB/includes/functions_install.php @@ -362,7 +362,7 @@ function connect_check_db($error_connect, &$error, $dbms_details, $table_prefix, case 'firebird': // check the version of FB, use some hackery if we can't get access to the server info - if ($db->service_handle !== false && function_exists('ibase_server_info')) + if ($db->service_handle !== false && strtolower($dbuser) == 'sysdba') { $val = @ibase_server_info($db->service_handle, IBASE_SVC_SERVER_VERSION); preg_match('#V([\d.]+)#', $val, $match); diff --git a/phpBB/includes/functions_jabber.php b/phpBB/includes/functions_jabber.php index 8575f339c1..e8bd3d423e 100644 --- a/phpBB/includes/functions_jabber.php +++ b/phpBB/includes/functions_jabber.php @@ -30,31 +30,31 @@ if (!defined('IN_PHPBB')) */ class jabber { - var $connection = null; - var $session = array(); - var $timeout = 10; + private $connection = null; + private $session = array(); + private $timeout = 10; - var $server; - var $port; - var $username; - var $password; - var $use_ssl; - var $resource = 'functions_jabber.phpbb.php'; + private $server; + private $port; + private $username; + private $password; + private $use_ssl; + private $resource = 'functions_jabber.phpbb.php'; - var $enable_logging; - var $log_array; + private $enable_logging; + private $log_array; - var $features = array(); + private $features = array(); /** */ - function jabber($server, $port, $username, $password, $use_ssl = false) + function __construct($server, $port, $username, $password, $use_ssl = false) { $this->server = ($server) ? $server : 'localhost'; $this->port = ($port) ? $port : 5222; $this->username = $username; $this->password = $password; - $this->use_ssl = ($use_ssl && $this->can_use_ssl()) ? true : false; + $this->use_ssl = ($use_ssl && self::can_use_ssl()) ? true : false; // Change port if we use SSL if ($this->port == 5222 && $this->use_ssl) @@ -69,7 +69,7 @@ class jabber /** * Able to use the SSL functionality? */ - function can_use_ssl() + public static function can_use_ssl() { // Will not work with PHP >= 5.2.1 or < 5.2.3RC2 until timeout problem with ssl hasn't been fixed (http://bugs.php.net/41236) return ((version_compare(PHP_VERSION, '5.2.1', '<') || version_compare(PHP_VERSION, '5.2.3RC2', '>=')) && @extension_loaded('openssl')) ? true : false; @@ -78,7 +78,7 @@ class jabber /** * Able to use TLS? */ - function can_use_tls() + public static function can_use_tls() { if (!@extension_loaded('openssl') || !function_exists('stream_socket_enable_crypto') || !function_exists('stream_get_meta_data') || !function_exists('socket_set_blocking') || !function_exists('stream_get_wrappers')) { @@ -105,7 +105,7 @@ class jabber * @param string $name * @access public */ - function set_resource($name) + public function set_resource($name) { $this->resource = $name; } @@ -113,7 +113,7 @@ class jabber /** * Connect */ - function connect() + public function connect() { /* if (!$this->check_jid($this->username . '@' . $this->server)) { @@ -142,7 +142,7 @@ class jabber /** * Disconnect */ - function disconnect() + public function disconnect() { if ($this->connected()) { @@ -163,7 +163,7 @@ class jabber /** * Connected? */ - function connected() + public function connected() { return (is_resource($this->connection) && !feof($this->connection)) ? true : false; } @@ -174,7 +174,7 @@ class jabber * @access public * @return bool */ - function login() + public function login() { if (!sizeof($this->features)) { @@ -188,10 +188,10 @@ class jabber /** * Send data to the Jabber server * @param string $xml - * @access public + * @access private * @return bool */ - function send($xml) + private function send($xml) { if ($this->connected()) { @@ -211,10 +211,10 @@ class jabber * @param string $server host to connect to * @param int $port port number * @param bool $use_ssl use ssl or not - * @access public + * @access private * @return bool */ - function open_socket($server, $port, $use_ssl = false) + private function open_socket($server, $port, $use_ssl = false) { if (@function_exists('dns_get_record')) { @@ -243,7 +243,7 @@ class jabber /** * Return log */ - function get_log() + public function get_log() { if ($this->enable_logging && sizeof($this->log_array)) { @@ -256,7 +256,7 @@ class jabber /** * Add information to log */ - function add_to_log($string) + private function add_to_log($string) { if ($this->enable_logging) { @@ -267,10 +267,10 @@ class jabber /** * Listens to the connection until it gets data or the timeout is reached. * Thus, it should only be called if data is expected to be received. - * @access public + * @access private * @return mixed either false for timeout or an array with the received data */ - function listen($timeout = 10, $wait = false) + private function listen($timeout = 10, $wait = false) { if (!$this->connected()) { @@ -291,7 +291,7 @@ class jabber if ($data != '') { $this->add_to_log('RECV: '. $data); - return $this->xmlize($data); + return self::xmlize($data); } else { @@ -302,10 +302,10 @@ class jabber /** * Initiates account registration (based on data used for contructor) - * @access public + * @access private * @return bool */ - function register() + private function register() { if (!isset($this->session['id']) || isset($this->session['jid'])) { @@ -322,10 +322,10 @@ class jabber * @param $message online, offline... * @param $type dnd, away, chat, xa or nothing * @param $unavailable set this to true if you want to become unavailable - * @access public + * @access private * @return bool */ - function send_presence($message = '', $type = '', $unavailable = false) + private function send_presence($message = '', $type = '', $unavailable = false) { if (!isset($this->session['jid'])) { @@ -347,10 +347,10 @@ class jabber /** * This handles all the different XML elements * @param array $xml - * @access public + * @access private * @return bool */ - function response($xml) + private function response($xml) { if (!is_array($xml) || !sizeof($xml)) { @@ -420,7 +420,7 @@ class jabber } // Let's use TLS if SSL is not enabled and we can actually use it - if (!$this->session['ssl'] && $this->can_use_tls() && $this->can_use_ssl() && isset($xml['stream:features'][0]['#']['starttls'])) + if (!$this->session['ssl'] && self::can_use_tls() && self::can_use_ssl() && isset($xml['stream:features'][0]['#']['starttls'])) { $this->add_to_log('Switching to TLS.'); $this->send("<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>\n"); @@ -483,7 +483,7 @@ class jabber case 'challenge': // continue with authentication...a challenge literally -_- $decoded = base64_decode($xml['challenge'][0]['#']); - $decoded = $this->parse_data($decoded); + $decoded = self::parse_data($decoded); if (!isset($decoded['digest-uri'])) { @@ -656,7 +656,7 @@ class jabber } } - function send_message($to, $text, $subject = '', $type = 'normal') + public function send_message($to, $text, $subject = '', $type = 'normal') { if (!isset($this->session['jid'])) { @@ -681,7 +681,7 @@ class jabber * @access public * @return string */ - function encrypt_password($data) + public function encrypt_password($data) { // let's me think about <challenge> again... foreach (array('realm', 'cnonce', 'digest-uri') as $key) @@ -712,10 +712,10 @@ class jabber /** * parse_data like a="b",c="d",... or like a="a, b", c, d="e", f=g,... * @param string $data - * @access public + * @access private * @return array a => b ... */ - function parse_data($data) + private static function parse_data($data) { $data = explode(',', $data); $pairs = array(); @@ -744,10 +744,10 @@ class jabber /** * opposite of jabber::parse_data() * @param array $data - * @access public + * @access private * @return string */ - function implode_data($data) + private function implode_data($data) { $return = array(); foreach ($data as $key => $value) @@ -762,7 +762,7 @@ class jabber * @author Hans Anderson * @copyright Hans Anderson / http://www.hansanderson.com/php/xml/ */ - function xmlize($data, $skip_white = 1, $encoding = 'UTF-8') + private static function xmlize($data, $skip_white = 1, $encoding = 'UTF-8') { $data = trim($data); @@ -783,7 +783,7 @@ class jabber $tagname = $vals[$i]['tag']; $array[$tagname][0]['@'] = (isset($vals[$i]['attributes'])) ? $vals[$i]['attributes'] : array(); - $array[$tagname][0]['#'] = $this->_xml_depth($vals, $i); + $array[$tagname][0]['#'] = self::_xml_depth($vals, $i); if (substr($data, 0, 5) != '<?xml') { @@ -798,7 +798,7 @@ class jabber * @author Hans Anderson * @copyright Hans Anderson / http://www.hansanderson.com/php/xml/ */ - function _xml_depth($vals, &$i) + private static function _xml_depth($vals, &$i) { $children = array(); @@ -821,7 +821,7 @@ class jabber $children[$tagname][$size]['@'] = $vals[$i]['attributes']; } - $children[$tagname][$size]['#'] = $this->_xml_depth($vals, $i); + $children[$tagname][$size]['#'] = self::_xml_depth($vals, $i); break; diff --git a/phpBB/includes/functions_messenger.php b/phpBB/includes/functions_messenger.php index be78ad2999..8aba4ed255 100644 --- a/phpBB/includes/functions_messenger.php +++ b/phpBB/includes/functions_messenger.php @@ -22,17 +22,17 @@ if (!defined('IN_PHPBB')) */ class messenger { - var $vars, $msg, $extra_headers, $replyto, $from, $subject; - var $addresses = array(); + private $vars, $msg, $extra_headers, $replyto, $from, $subject; + private $addresses = array(); - var $mail_priority = MAIL_NORMAL_PRIORITY; - var $use_queue = true; - var $tpl_msg = array(); + private $mail_priority = MAIL_NORMAL_PRIORITY; + private $use_queue = true; + private $tpl_msg = array(); /** * Constructor */ - function messenger($use_queue = true) + function __construct($use_queue = true) { global $config; @@ -43,7 +43,7 @@ class messenger /** * Resets all the data (address, template file, etc etc) to default */ - function reset() + private function reset() { $this->addresses = $this->extra_headers = array(); $this->vars = $this->msg = $this->replyto = $this->from = ''; @@ -254,7 +254,7 @@ class messenger /** * Add error message to log */ - function error($type, $msg) + public static function error($type, $msg) { global $user, $phpEx, $phpbb_root_path, $config; @@ -299,7 +299,7 @@ class messenger /** * Return email header */ - function build_header($to, $cc, $bcc) + private function build_header($to, $cc, $bcc) { global $config; @@ -346,7 +346,7 @@ class messenger /** * Send out emails */ - function msg_email() + private function msg_email() { global $config, $user; @@ -413,7 +413,7 @@ class messenger if (!$result) { - $this->error('EMAIL', $err_msg); + self::error('EMAIL', $err_msg); return false; } } @@ -434,7 +434,7 @@ class messenger /** * Send jabber message out */ - function msg_jabber() + private function msg_jabber() { global $config, $db, $user, $phpbb_root_path, $phpEx; @@ -468,13 +468,13 @@ class messenger if (!$this->jabber->connect()) { - $this->error('JABBER', $user->lang['ERR_JAB_CONNECT'] . '<br />' . $this->jabber->get_log()); + self::error('JABBER', $user->lang['ERR_JAB_CONNECT'] . '<br />' . $this->jabber->get_log()); return false; } if (!$this->jabber->login()) { - $this->error('JABBER', $user->lang['ERR_JAB_AUTH'] . '<br />' . $this->jabber->get_log()); + self::error('JABBER', $user->lang['ERR_JAB_AUTH'] . '<br />' . $this->jabber->get_log()); return false; } @@ -504,15 +504,15 @@ class messenger */ class queue { - var $data = array(); - var $queue_data = array(); - var $package_size = 0; - var $cache_file = ''; + private $data = array(); + private $queue_data = array(); + private $package_size = 0; + private $cache_file = ''; /** * constructor */ - function queue() + function __construct() { global $phpEx, $phpbb_root_path; @@ -523,7 +523,7 @@ class queue /** * Init a queue object */ - function init($object, $package_size) + public function init($object, $package_size) { $this->data[$object] = array(); $this->data[$object]['package_size'] = $package_size; @@ -533,7 +533,7 @@ class queue /** * Put object in queue */ - function put($object, $scope) + public function put($object, $scope) { $this->data[$object]['data'][] = $scope; } @@ -542,7 +542,7 @@ class queue * Process queue * Using lock file */ - function process() + public function process() { global $db, $config, $phpEx, $phpbb_root_path, $user; @@ -707,7 +707,7 @@ class queue /** * Save queue */ - function save() + public function save() { if (!sizeof($this->data)) { @@ -963,16 +963,16 @@ function smtpmail($addresses, $subject, $message, &$err_msg, $headers = '') */ class smtp_class { - var $server_response = ''; - var $socket = 0; - var $responses = array(); - var $commands = array(); - var $numeric_response_code = 0; + private $server_response = ''; + public $socket = 0; + private $responses = array(); + private $commands = array(); + public $numeric_response_code = 0; - var $backtrace = false; - var $backtrace_log = array(); + private $backtrace = false; + private $backtrace_log = array(); - function smtp_class() + function __construct() { // Always create a backtrace for admins to identify SMTP problems $this->backtrace = true; @@ -982,7 +982,7 @@ class smtp_class /** * Add backtrace message for debugging */ - function add_backtrace($message) + public function add_backtrace($message) { if ($this->backtrace) { @@ -993,7 +993,7 @@ class smtp_class /** * Send command to smtp server */ - function server_send($command, $private_info = false) + public function server_send($command, $private_info = false) { fputs($this->socket, $command . "\r\n"); @@ -1005,7 +1005,7 @@ class smtp_class /** * We use the line to give the support people an indication at which command the error occurred */ - function server_parse($response, $line) + public function server_parse($response, $line) { global $user; @@ -1037,7 +1037,7 @@ class smtp_class /** * Close session */ - function close_session(&$err_msg) + public function close_session(&$err_msg) { fclose($this->socket); @@ -1051,7 +1051,7 @@ class smtp_class /** * Log into server and get possible auth codes if neccessary */ - function log_into_server($hostname, $username, $password, $default_auth_method) + public function log_into_server($hostname, $username, $password, $default_auth_method) { global $user; @@ -1171,7 +1171,7 @@ class smtp_class /** * Pop before smtp authentication */ - function pop_before_smtp($hostname, $username, $password) + private function pop_before_smtp($hostname, $username, $password) { global $user; @@ -1206,7 +1206,7 @@ class smtp_class /** * Plain authentication method */ - function plain($username, $password) + private function plain($username, $password) { $this->server_send('AUTH PLAIN'); if ($err_msg = $this->server_parse('334', __LINE__)) @@ -1227,7 +1227,7 @@ class smtp_class /** * Login authentication method */ - function login($username, $password) + private function login($username, $password) { $this->server_send('AUTH LOGIN'); if ($err_msg = $this->server_parse('334', __LINE__)) @@ -1253,7 +1253,7 @@ class smtp_class /** * cram_md5 authentication method */ - function cram_md5($username, $password) + private function cram_md5($username, $password) { $this->server_send('AUTH CRAM-MD5'); if ($err_msg = $this->server_parse('334', __LINE__)) @@ -1280,7 +1280,7 @@ class smtp_class * digest_md5 authentication method * A real pain in the *** */ - function digest_md5($username, $password) + private function digest_md5($username, $password) { global $config, $user; diff --git a/phpBB/includes/functions_posting.php b/phpBB/includes/functions_posting.php index 9ed2d78cb7..020ba0e0e3 100644 --- a/phpBB/includes/functions_posting.php +++ b/phpBB/includes/functions_posting.php @@ -249,7 +249,7 @@ function posting_gen_topic_icons($mode, $icon_id) global $phpbb_root_path, $config, $template, $cache; // Grab icons - $icons = $cache->obtain_icons(); + $icons = cache::obtain_icons(); if (!$icon_id) { @@ -373,7 +373,7 @@ function upload_attachment($form_name, $forum_id, $local = false, $local_storage return $filedata; } - $extensions = $cache->obtain_attach_extensions((($is_message) ? false : (int) $forum_id)); + $extensions = cache::obtain_attach_extensions((($is_message) ? false : (int) $forum_id)); $upload->set_allowed_extensions(array_keys($extensions['_allowed_'])); $file = ($local) ? $upload->local_upload($local_storage, $local_filedata) : $upload->form_upload($form_name); @@ -991,7 +991,7 @@ function topic_review($topic_id, $forum_id, $mode = 'topic_review', $cur_post_id $extensions = $attachments = array(); if ($has_attachments && $auth->acl_get('u_download') && $auth->acl_get('f_download', $forum_id)) { - $extensions = $cache->obtain_attach_extensions($forum_id); + $extensions = cache::obtain_attach_extensions($forum_id); // Get attachments... $sql = 'SELECT * diff --git a/phpBB/includes/functions_profile_fields.php b/phpBB/includes/functions_profile_fields.php index 63b506c5b8..d3b8a58915 100644 --- a/phpBB/includes/functions_profile_fields.php +++ b/phpBB/includes/functions_profile_fields.php @@ -22,16 +22,16 @@ if (!defined('IN_PHPBB')) */ class custom_profile { - var $profile_types = array(FIELD_INT => 'int', FIELD_STRING => 'string', FIELD_TEXT => 'text', FIELD_BOOL => 'bool', FIELD_DROPDOWN => 'dropdown', FIELD_DATE => 'date'); - var $profile_cache = array(); - var $options_lang = array(); + const profile_types = array(FIELD_INT => 'int', FIELD_STRING => 'string', FIELD_TEXT => 'text', FIELD_BOOL => 'bool', FIELD_DROPDOWN => 'dropdown', FIELD_DATE => 'date'); + private $profile_cache = array(); + private $options_lang = array(); /** * Assign editable fields to template, mode can be profile (for profile change) or register (for registration) * Called by ucp_profile and ucp_register * @access public */ - function generate_profile_fields($mode, $lang_id) + public function generate_profile_fields($mode, $lang_id) { global $db, $template, $auth; @@ -88,7 +88,7 @@ class custom_profile * Validate entered profile field data * @access public */ - function validate_profile_field($field_type, &$field_value, $field_data) + public function validate_profile_field($field_type, &$field_value, $field_data) { switch ($field_type) { @@ -200,7 +200,7 @@ class custom_profile * Build profile cache, used for display * @access private */ - function build_cache() + private function build_cache() { global $db, $user, $auth; @@ -227,14 +227,15 @@ class custom_profile /** * Get language entries for options and store them here for later use */ - function get_option_lang($field_id, $lang_id, $field_type, $preview) + private function get_option_lang($field_id, $lang_id, $field_type, $preview) { global $db; if ($preview) { $lang_options = (!is_array($this->vars['lang_options'])) ? explode("\n", $this->vars['lang_options']) : $this->vars['lang_options']; - + + // @todo: ref optimize foreach ($lang_options as $num => $var) { $this->options_lang[$field_id][$lang_id][($num + 1)] = $var; @@ -250,6 +251,7 @@ class custom_profile ORDER BY option_id"; $result = $db->sql_query($sql); + // @todo: ref optimize while ($row = $db->sql_fetchrow($result)) { $this->options_lang[$field_id][$lang_id][($row['option_id'] + 1)] = $row['lang_value']; @@ -262,7 +264,7 @@ class custom_profile * Submit profile field * @access public */ - function submit_cp_field($mode, $lang_id, &$cp_data, &$cp_error) + public function submit_cp_field($mode, $lang_id, &$cp_data, &$cp_error) { global $auth, $db, $user; @@ -354,7 +356,7 @@ class custom_profile * This is directly connected to the user -> mode == grab is to grab the user specific fields, mode == show is for assigning the row to the template * @access public */ - function generate_profile_fields_template($mode, $user_id = 0, $profile_row = false) + public function generate_profile_fields_template($mode, $user_id = 0, $profile_row = false) { global $db; @@ -446,12 +448,12 @@ class custom_profile /** * Get Profile Value for display */ - function get_profile_value($ident_ary) + private function get_profile_value($ident_ary) { $value = $ident_ary['value']; $field_type = $ident_ary['data']['field_type']; - switch ($this->profile_types[$field_type]) + switch (self::profile_types[$field_type]) { case 'int': if ($value == '') @@ -550,7 +552,7 @@ class custom_profile * Get field value for registration/profile * @access private */ - function get_var($field_validation, &$profile_row, $default_value, $preview) + private function get_var($field_validation, &$profile_row, $default_value, $preview) { global $user; @@ -609,19 +611,19 @@ class custom_profile * Process int-type * @access private */ - function generate_int($profile_row, $preview = false) + private function generate_int($profile_row, $preview = false) { global $template; $profile_row['field_value'] = $this->get_var('int', $profile_row, $profile_row['field_default_value'], $preview); - $template->assign_block_vars($this->profile_types[$profile_row['field_type']], array_change_key_case($profile_row, CASE_UPPER)); + $template->assign_block_vars(self::profile_types[$profile_row['field_type']], array_change_key_case($profile_row, CASE_UPPER)); } /** * Process date-type * @access private */ - function generate_date($profile_row, $preview = false) + private function generate_date($profile_row, $preview = false) { global $user, $template; @@ -673,21 +675,21 @@ class custom_profile unset($now); $profile_row['field_value'] = 0; - $template->assign_block_vars($this->profile_types[$profile_row['field_type']], array_change_key_case($profile_row, CASE_UPPER)); + $template->assign_block_vars(self::profile_types[$profile_row['field_type']], array_change_key_case($profile_row, CASE_UPPER)); } /** * Process bool-type * @access private */ - function generate_bool($profile_row, $preview = false) + private function generate_bool($profile_row, $preview = false) { global $template; $value = $this->get_var('int', $profile_row, $profile_row['field_default_value'], $preview); $profile_row['field_value'] = $value; - $template->assign_block_vars($this->profile_types[$profile_row['field_type']], array_change_key_case($profile_row, CASE_UPPER)); + $template->assign_block_vars(self::profile_types[$profile_row['field_type']], array_change_key_case($profile_row, CASE_UPPER)); if ($profile_row['field_length'] == 1) { @@ -711,19 +713,19 @@ class custom_profile * Process string-type * @access private */ - function generate_string($profile_row, $preview = false) + private function generate_string($profile_row, $preview = false) { global $template; $profile_row['field_value'] = $this->get_var('string', $profile_row, $profile_row['lang_default_value'], $preview); - $template->assign_block_vars($this->profile_types[$profile_row['field_type']], array_change_key_case($profile_row, CASE_UPPER)); + $template->assign_block_vars(self::profile_types[$profile_row['field_type']], array_change_key_case($profile_row, CASE_UPPER)); } /** * Process text-type * @access private */ - function generate_text($profile_row, $preview = false) + private function generate_text($profile_row, $preview = false) { global $template; global $user, $phpEx, $phpbb_root_path; @@ -733,14 +735,14 @@ class custom_profile $profile_row['field_cols'] = $field_length[1]; $profile_row['field_value'] = $this->get_var('string', $profile_row, $profile_row['lang_default_value'], $preview); - $template->assign_block_vars($this->profile_types[$profile_row['field_type']], array_change_key_case($profile_row, CASE_UPPER)); + $template->assign_block_vars(self::profile_types[$profile_row['field_type']], array_change_key_case($profile_row, CASE_UPPER)); } /** * Process dropdown-type * @access private */ - function generate_dropdown($profile_row, $preview = false) + private function generate_dropdown($profile_row, $preview = false) { global $user, $template; @@ -752,7 +754,7 @@ class custom_profile } $profile_row['field_value'] = $value; - $template->assign_block_vars($this->profile_types[$profile_row['field_type']], array_change_key_case($profile_row, CASE_UPPER)); + $template->assign_block_vars(self::profile_types[$profile_row['field_type']], array_change_key_case($profile_row, CASE_UPPER)); foreach ($this->options_lang[$profile_row['field_id']][$profile_row['lang_id']] as $option_id => $option_value) { @@ -769,7 +771,7 @@ class custom_profile * change == user is able to set/enter profile values; preview == just show the value * @access private */ - function process_field_row($mode, $profile_row) + private function process_field_row($mode, $profile_row) { global $template; @@ -781,13 +783,13 @@ class custom_profile ); // empty previously filled blockvars - foreach ($this->profile_types as $field_case => $field_type) + foreach (self::profile_types as $field_case => $field_type) { $template->destroy_block_vars($field_type); } // Assign template variables - $type_func = 'generate_' . $this->profile_types[$profile_row['field_type']]; + $type_func = 'generate_' . self::profile_types[$profile_row['field_type']]; $this->$type_func($profile_row, $preview); // Return templated data @@ -797,7 +799,7 @@ class custom_profile /** * Build Array for user insertion into custom profile fields table */ - function build_insert_sql_array($cp_data) + public static function build_insert_sql_array($cp_data) { global $db, $user, $auth; @@ -833,7 +835,7 @@ class custom_profile * Get profile field value on submit * @access private */ - function get_profile_field($profile_row) + private function get_profile_field($profile_row) { global $phpbb_root_path, $phpEx; global $config; @@ -906,12 +908,12 @@ class custom_profile */ class custom_profile_admin extends custom_profile { - var $vars = array(); + public $vars = array(); /** * Return possible validation options */ - function validate_options() + public function validate_options() { global $user; @@ -930,7 +932,7 @@ class custom_profile_admin extends custom_profile /** * Get string options for second step in ACP */ - function get_string_options() + public function get_string_options() { global $user; @@ -947,7 +949,7 @@ class custom_profile_admin extends custom_profile /** * Get text options for second step in ACP */ - function get_text_options() + public function get_text_options() { global $user; @@ -964,7 +966,7 @@ class custom_profile_admin extends custom_profile /** * Get int options for second step in ACP */ - function get_int_options() + public function get_int_options() { global $user; @@ -981,7 +983,7 @@ class custom_profile_admin extends custom_profile /** * Get bool options for second step in ACP */ - function get_bool_options() + public function get_bool_options() { global $user, $config, $lang_defs; @@ -1011,7 +1013,7 @@ class custom_profile_admin extends custom_profile /** * Get dropdown options for second step in ACP */ - function get_dropdown_options() + public function get_dropdown_options() { global $user, $config, $lang_defs; @@ -1045,7 +1047,7 @@ class custom_profile_admin extends custom_profile /** * Get date options for second step in ACP */ - function get_date_options() + public function get_date_options() { global $user, $config, $lang_defs; diff --git a/phpBB/includes/functions_template.php b/phpBB/includes/functions_template.php index 17d3328427..5ff04b9826 100644 --- a/phpBB/includes/functions_template.php +++ b/phpBB/includes/functions_template.php @@ -37,16 +37,16 @@ if (!defined('IN_PHPBB')) */ class template_compile { - var $template; + private $template; // Various storage arrays - var $block_names = array(); - var $block_else_level = array(); + private $block_names = array(); + private $block_else_level = array(); /** * constuctor */ - function template_compile(&$template) + function __construct(template &$template) { $this->template = &$template; } @@ -55,7 +55,7 @@ class template_compile * Load template source from file * @access private */ - function _tpl_load_file($handle, $store_in_db = false) + public function _tpl_load_file($handle, $store_in_db = false) { // Try and open template for read if (!file_exists($this->template->files[$handle])) @@ -91,7 +91,7 @@ class template_compile * the ones that exist in zend_language_scanner.l * @access private */ - function remove_php_tags(&$code) + private function remove_php_tags(&$code) { // This matches the information gathered from the internal PHP lexer $match = array( @@ -107,7 +107,7 @@ class template_compile * The all seeing all doing compile method. Parts are inspired by or directly from Smarty * @access private */ - function compile($code, $no_echo = false, $echo_var = '') + public function compile($code, $no_echo = false, $echo_var = '') { global $config; @@ -232,7 +232,7 @@ class template_compile * Compile variables * @access private */ - function compile_var_tags(&$text_blocks) + private function compile_var_tags(&$text_blocks) { // change template varrefs into PHP varrefs $varrefs = array(); @@ -274,7 +274,7 @@ class template_compile * Compile blocks * @access private */ - function compile_tag_block($tag_args) + private function compile_tag_block($tag_args) { $no_nesting = false; @@ -379,7 +379,7 @@ class template_compile * some adaptions for our block level methods * @access private */ - function compile_tag_if($tag_args, $elseif) + private function compile_tag_if($tag_args, $elseif) { // Tokenize args for 'if' tag. preg_match_all('/(?: @@ -527,7 +527,7 @@ class template_compile * Compile DEFINE tags * @access private */ - function compile_tag_define($tag_args, $op) + private function compile_tag_define($tag_args, $op) { preg_match('#^((?:[a-z0-9\-_]+\.)+)?\$(?=[A-Z])([A-Z0-9_\-]*)(?: = (\'?)([^\']*)(\'?))?$#', $tag_args, $match); @@ -580,7 +580,7 @@ class template_compile * Compile INCLUDE tag * @access private */ - function compile_tag_include($tag_args) + private function compile_tag_include($tag_args) { return "\$this->_tpl_include('$tag_args');"; } @@ -589,7 +589,7 @@ class template_compile * Compile INCLUDE_PHP tag * @access private */ - function compile_tag_include_php($tag_args) + private function compile_tag_include_php($tag_args) { return "include('" . $tag_args . "');"; } @@ -599,7 +599,7 @@ class template_compile * This is from Smarty * @access private */ - function _parse_is_expr($is_arg, $tokens) + private function _parse_is_expr($is_arg, array $tokens) { $expr_end = 0; $negate_expr = false; @@ -670,7 +670,7 @@ class template_compile * NOTE: expects a trailing "." on the namespace. * @access private */ - function generate_block_varref($namespace, $varname, $echo = true, $defop = false) + private function generate_block_varref($namespace, $varname, $echo = true, $defop = false) { // Strip the trailing period. $namespace = substr($namespace, 0, -1); @@ -695,7 +695,7 @@ class template_compile * NOTE: does not expect a trailing "." on the blockname. * @access private */ - function generate_block_data_ref($blockname, $include_last_iterator, $defop = false) + private function generate_block_data_ref($blockname, $include_last_iterator, $defop = false) { // Get an array of the blocks involved. $blocks = explode('.', $blockname); @@ -733,7 +733,7 @@ class template_compile * Write compiled file to cache directory * @access private */ - function compile_write($handle, $data) + public function compile_write($handle, $data) { global $phpEx; @@ -742,7 +742,7 @@ class template_compile if ($fp = @fopen($filename, 'wb')) { @flock($fp, LOCK_EX); - @fwrite ($fp, $data); + @fwrite($fp, $data); @flock($fp, LOCK_UN); @fclose($fp); diff --git a/phpBB/includes/functions_transfer.php b/phpBB/includes/functions_transfer.php index 2925a2df77..9eb32a7b45 100644 --- a/phpBB/includes/functions_transfer.php +++ b/phpBB/includes/functions_transfer.php @@ -36,7 +36,7 @@ class transfer /** * Constructor - init some basic values */ - function transfer() + function __construct() { global $phpbb_root_path; @@ -50,7 +50,7 @@ class transfer /** * Write file to location */ - function write_file($destination_file = '', $contents = '') + public function write_file($destination_file = '', $contents = '') { global $phpbb_root_path; @@ -86,7 +86,7 @@ class transfer /** * Moving file into location. If the destination file already exists it gets overwritten */ - function overwrite_file($source_file, $destination_file) + public function overwrite_file($source_file, $destination_file) { /** * @todo generally think about overwriting files in another way, by creating a temporary file and then renaming it @@ -102,7 +102,7 @@ class transfer /** * Create directory structure */ - function make_dir($dir) + public function make_dir($dir) { global $phpbb_root_path; @@ -142,7 +142,7 @@ class transfer /** * Copy file from source location to destination location */ - function copy_file($from_loc, $to_loc) + public function copy_file($from_loc, $to_loc) { global $phpbb_root_path; @@ -162,7 +162,7 @@ class transfer /** * Remove file */ - function delete_file($file) + public function delete_file($file) { global $phpbb_root_path; @@ -175,7 +175,7 @@ class transfer * Remove directory * @todo remove child directories? */ - function remove_dir($dir) + public function remove_dir($dir) { global $phpbb_root_path; @@ -187,7 +187,7 @@ class transfer /** * Rename a file or folder */ - function rename($old_handle, $new_handle) + public function rename($old_handle, $new_handle) { global $phpbb_root_path; @@ -199,7 +199,7 @@ class transfer /** * Check if a specified file exist... */ - function file_exists($directory, $filename) + public function file_exists($directory, $filename) { global $phpbb_root_path; @@ -219,7 +219,7 @@ class transfer /** * Open session */ - function open_session() + public function open_session() { return $this->_init(); } @@ -227,7 +227,7 @@ class transfer /** * Close current session */ - function close_session() + public function close_session() { return $this->_close(); } @@ -235,7 +235,7 @@ class transfer /** * Determine methods able to be used */ - function methods() + public static function methods() { $methods = array(); $disabled_functions = explode(',', @ini_get('disable_functions')); @@ -263,7 +263,7 @@ class ftp extends transfer /** * Standard parameters for FTP session */ - function ftp($host, $username, $password, $root_path, $port = 21, $timeout = 10) + function __construct($host, $username, $password, $root_path, $port = 21, $timeout = 10) { $this->host = $host; $this->port = $port; @@ -280,7 +280,7 @@ class ftp extends transfer } // Init some needed values - transfer::transfer(); + parent::__construct(); return; } @@ -288,7 +288,7 @@ class ftp extends transfer /** * Requests data */ - function data() + private function data() { global $user; @@ -306,7 +306,7 @@ class ftp extends transfer * Init FTP Session * @access private */ - function _init() + private function _init() { // connect to the server $this->connection = @ftp_connect($this->host, $this->port, $this->timeout); @@ -338,7 +338,7 @@ class ftp extends transfer * Create Directory (MKDIR) * @access private */ - function _mkdir($dir) + private function _mkdir($dir) { return @ftp_mkdir($this->connection, $dir); } @@ -347,7 +347,7 @@ class ftp extends transfer * Remove directory (RMDIR) * @access private */ - function _rmdir($dir) + private function _rmdir($dir) { return @ftp_rmdir($this->connection, $dir); } @@ -356,7 +356,7 @@ class ftp extends transfer * Rename file * @access private */ - function _rename($old_handle, $new_handle) + private function _rename($old_handle, $new_handle) { return @ftp_rename($this->connection, $old_handle, $new_handle); } @@ -365,7 +365,7 @@ class ftp extends transfer * Change current working directory (CHDIR) * @access private */ - function _chdir($dir = '') + private function _chdir($dir = '') { if ($dir && $dir !== '/') { @@ -382,7 +382,7 @@ class ftp extends transfer * change file permissions (CHMOD) * @access private */ - function _chmod($file, $perms) + private function _chmod($file, $perms) { if (function_exists('ftp_chmod')) { @@ -403,7 +403,7 @@ class ftp extends transfer * Upload file to location (PUT) * @access private */ - function _put($from_file, $to_file) + private function _put($from_file, $to_file) { // get the file extension $file_extension = strtolower(substr(strrchr($to_file, '.'), 1)); @@ -425,7 +425,7 @@ class ftp extends transfer * Delete file (DELETE) * @access private */ - function _delete($file) + private function _delete($file) { return @ftp_delete($this->connection, $file); } @@ -434,7 +434,7 @@ class ftp extends transfer * Close ftp session (CLOSE) * @access private */ - function _close() + private function _close() { if (!$this->connection) { @@ -449,7 +449,7 @@ class ftp extends transfer * At the moment not used by parent class * @access private */ - function _cwd() + private function _cwd() { return @ftp_pwd($this->connection); } @@ -458,7 +458,7 @@ class ftp extends transfer * Return list of files in a given directory (LS) * @access private */ - function _ls($dir = './') + private function _ls($dir = './') { return @ftp_nlist($this->connection, $dir); } @@ -467,7 +467,7 @@ class ftp extends transfer * FTP SITE command (ftp-only function) * @access private */ - function _site($command) + private function _site($command) { return @ftp_site($this->connection, $command); } @@ -486,7 +486,7 @@ class ftp_fsock extends transfer /** * Standard parameters for FTP session */ - function ftp_fsock($host, $username, $password, $root_path, $port = 21, $timeout = 10) + function __construct($host, $username, $password, $root_path, $port = 21, $timeout = 10) { $this->host = $host; $this->port = $port; @@ -503,7 +503,7 @@ class ftp_fsock extends transfer } // Init some needed values - transfer::transfer(); + parent::__construct(); return; } @@ -511,7 +511,7 @@ class ftp_fsock extends transfer /** * Requests data */ - function data() + private function data() { global $user; @@ -529,7 +529,7 @@ class ftp_fsock extends transfer * Init FTP Session * @access private */ - function _init() + private function _init() { $errno = 0; $errstr = ''; @@ -568,7 +568,7 @@ class ftp_fsock extends transfer * Create Directory (MKDIR) * @access private */ - function _mkdir($dir) + private function _mkdir($dir) { return $this->_send_command('MKD', $dir); } @@ -577,7 +577,7 @@ class ftp_fsock extends transfer * Remove directory (RMDIR) * @access private */ - function _rmdir($dir) + private function _rmdir($dir) { return $this->_send_command('RMD', $dir); } @@ -586,7 +586,7 @@ class ftp_fsock extends transfer * Rename File * @access private */ - function _rename($old_handle, $new_handle) + private function _rename($old_handle, $new_handle) { $this->_send_command('RNFR', $old_handle); return $this->_send_command('RNTO', $new_handle); @@ -613,7 +613,7 @@ class ftp_fsock extends transfer * change file permissions (CHMOD) * @access private */ - function _chmod($file, $perms) + private function _chmod($file, $perms) { // Unfortunatly CHMOD is not expecting an octal value... // We need to transform the integer (which was an octal) to an octal representation (to get the int) and then pass as is. ;) @@ -624,7 +624,7 @@ class ftp_fsock extends transfer * Upload file to location (PUT) * @access private */ - function _put($from_file, $to_file) + private function _put($from_file, $to_file) { // We only use the BINARY file mode to cicumvent rewrite actions from ftp server (mostly linefeeds being replaced) // 'I' == BINARY @@ -660,7 +660,7 @@ class ftp_fsock extends transfer * Delete file (DELETE) * @access private */ - function _delete($file) + private function _delete($file) { return $this->_send_command('DELE', $file); } @@ -669,7 +669,7 @@ class ftp_fsock extends transfer * Close ftp session (CLOSE) * @access private */ - function _close() + private function _close() { if (!$this->connection) { @@ -684,7 +684,7 @@ class ftp_fsock extends transfer * At the moment not used by parent class * @access private */ - function _cwd() + private function _cwd() { $this->_send_command('PWD', '', false); return preg_replace('#^[0-9]{3} "(.+)" .+\r\n#', '\\1', $this->_check_command(true)); @@ -694,7 +694,7 @@ class ftp_fsock extends transfer * Return list of files in a given directory (LS) * @access private */ - function _ls($dir = './') + private function _ls($dir = './') { if (!$this->_open_data_connection()) { @@ -717,7 +717,7 @@ class ftp_fsock extends transfer * Send a command to server (FTP fsock only function) * @access private */ - function _send_command($command, $args = '', $check = true) + private function _send_command($command, $args = '', $check = true) { if (!empty($args)) { @@ -738,7 +738,7 @@ class ftp_fsock extends transfer * Opens a connection to send data (FTP fosck only function) * @access private */ - function _open_data_connection() + private function _open_data_connection() { $this->_send_command('PASV', '', false); @@ -773,7 +773,7 @@ class ftp_fsock extends transfer * Closes a connection used to send data * @access private */ - function _close_data_connection() + private function _close_data_connection() { return @fclose($this->data_connection); } @@ -782,7 +782,7 @@ class ftp_fsock extends transfer * Check to make sure command was successful (FTP fsock only function) * @access private */ - function _check_command($return = false) + private function _check_command($return = false) { $response = ''; diff --git a/phpBB/includes/functions_upload.php b/phpBB/includes/functions_upload.php index 8e4bb6284a..f28e299f10 100644 --- a/phpBB/includes/functions_upload.php +++ b/phpBB/includes/functions_upload.php @@ -48,7 +48,7 @@ class filespec * File Class * @access private */ - function filespec($upload_ary, $upload_namespace) + function __construct($upload_ary, $upload_namespace) { if (!isset($upload_ary)) { @@ -446,7 +446,7 @@ class fileupload * @param int $max_height Maximum image height (only checked for images) * */ - function fileupload($error_prefix = '', $allowed_extensions = false, $max_filesize = false, $min_width = false, $min_height = false, $max_width = false, $max_height = false) + function __construct($error_prefix = '', $allowed_extensions = false, $max_filesize = false, $min_width = false, $min_height = false, $max_width = false, $max_height = false) { $this->set_allowed_extensions($allowed_extensions); $this->set_max_filesize($max_filesize); diff --git a/phpBB/includes/functions_user.php b/phpBB/includes/functions_user.php index c9921cc6f0..edaaee3d8f 100644 --- a/phpBB/includes/functions_user.php +++ b/phpBB/includes/functions_user.php @@ -1354,88 +1354,38 @@ function validate_username($username, $allowed_username = false) $mbstring = $pcre = false; - // generic UTF-8 character types supported? - if ((version_compare(PHP_VERSION, '5.1.0', '>=') || (version_compare(PHP_VERSION, '5.0.0-dev', '<=') && version_compare(PHP_VERSION, '4.4.0', '>='))) && @preg_match('/\p{L}/u', 'a') !== false) - { - $pcre = true; - } - else if (function_exists('mb_ereg_match')) - { - mb_regex_encoding('UTF-8'); - $mbstring = true; - } - + // generic UTF-8 character types supported switch ($config['allow_name_chars']) { case 'USERNAME_CHARS_ANY': - $pcre = true; $regex = '.+'; break; case 'USERNAME_ALPHA_ONLY': - $pcre = true; $regex = '[A-Za-z0-9]+'; break; case 'USERNAME_ALPHA_SPACERS': - $pcre = true; $regex = '[A-Za-z0-9-[\]_+ ]+'; break; case 'USERNAME_LETTER_NUM': - if ($pcre) - { - $regex = '[\p{Lu}\p{Ll}\p{N}]+'; - } - else if ($mbstring) - { - $regex = '[[:upper:][:lower:][:digit:]]+'; - } - else - { - $pcre = true; - $regex = '[a-zA-Z0-9]+'; - } + $regex = '[\p{Lu}\p{Ll}\p{N}]+'; break; case 'USERNAME_LETTER_NUM_SPACERS': - if ($pcre) - { - $regex = '[-\]_+ [\p{Lu}\p{Ll}\p{N}]+'; - } - else if ($mbstring) - { - $regex = '[-\]_+ [[:upper:][:lower:][:digit:]]+'; - } - else - { - $pcre = true; - $regex = '[-\]_+ [a-zA-Z0-9]+'; - } + $regex = '[-\]_+ [\p{Lu}\p{Ll}\p{N}]+'; break; case 'USERNAME_ASCII': default: - $pcre = true; $regex = '[\x01-\x7F]+'; break; } - if ($pcre) + if (!preg_match('#^' . $regex . '$#u', $username)) { - if (!preg_match('#^' . $regex . '$#u', $username)) - { - return 'INVALID_CHARS'; - } - } - else if ($mbstring) - { - $matches = array(); - mb_ereg_search_init('^' . $username . '$', $regex, $matches); - if (!mb_ereg_search()) - { - return 'INVALID_CHARS'; - } + return 'INVALID_CHARS'; } $sql = 'SELECT username @@ -1462,7 +1412,7 @@ function validate_username($username, $allowed_username = false) return 'USERNAME_TAKEN'; } - $bad_usernames = $cache->obtain_disallowed_usernames(); + $bad_usernames = cache::obtain_disallowed_usernames(); foreach ($bad_usernames as $bad_username) { @@ -1503,37 +1453,12 @@ function validate_password($password) return false; } - $pcre = $mbstring = false; - - // generic UTF-8 character types supported? - if ((version_compare(PHP_VERSION, '5.1.0', '>=') || (version_compare(PHP_VERSION, '5.0.0-dev', '<=') && version_compare(PHP_VERSION, '4.4.0', '>='))) && @preg_match('/\p{L}/u', 'a') !== false) - { - $upp = '\p{Lu}'; - $low = '\p{Ll}'; - $let = '\p{L}'; - $num = '\p{N}'; - $sym = '[^\p{Lu}\p{Ll}\p{N}]'; - $pcre = true; - } - else if (function_exists('mb_ereg_match')) - { - mb_regex_encoding('UTF-8'); - $upp = '[[:upper:]]'; - $low = '[[:lower:]]'; - $let = '[[:lower:][:upper:]]'; - $num = '[[:digit:]]'; - $sym = '[^[:upper:][:lower:][:digit:]]'; - $mbstring = true; - } - else - { - $upp = '[A-Z]'; - $low = '[a-z]'; - $let = '[a-zA-Z]'; - $num = '[0-9]'; - $sym = '[^A-Za-z0-9]'; - $pcre = true; - } + // generic UTF-8 character types supported + $upp = '\p{Lu}'; + $low = '\p{Ll}'; + $let = '\p{L}'; + $num = '\p{N}'; + $sym = '[^\p{Lu}\p{Ll}\p{N}]'; $chars = array(); @@ -1799,6 +1724,7 @@ function validate_jabber($jid) $pos = 0; $result = true; + // @todo: rewrite this! while ($pos < strlen($username)) { $len = $uni = 0; diff --git a/phpBB/includes/hooks/index.php b/phpBB/includes/hooks/index.php index aa85e63f32..7db4eec96c 100644 --- a/phpBB/includes/hooks/index.php +++ b/phpBB/includes/hooks/index.php @@ -42,7 +42,7 @@ class phpbb_hook * * @param array $valid_hooks array containing the hookable functions/methods */ - function phpbb_hook($valid_hooks) + function __construct($valid_hooks) { foreach ($valid_hooks as $_null => $method) { diff --git a/phpBB/includes/mcp/mcp_forum.php b/phpBB/includes/mcp/mcp_forum.php index d97fbb7107..1cba3157d7 100644 --- a/phpBB/includes/mcp/mcp_forum.php +++ b/phpBB/includes/mcp/mcp_forum.php @@ -132,7 +132,7 @@ function mcp_forum_view($id, $mode, $action, $forum_info) )); // Grab icons - $icons = $cache->obtain_icons(); + $icons = cache::obtain_icons(); $topic_rows = array(); diff --git a/phpBB/includes/mcp/mcp_logs.php b/phpBB/includes/mcp/mcp_logs.php index 6c20cf85b4..6c74e65f5b 100755 --- a/phpBB/includes/mcp/mcp_logs.php +++ b/phpBB/includes/mcp/mcp_logs.php @@ -26,7 +26,7 @@ class mcp_logs var $u_action; var $p_master; - function mcp_logs(&$p_master) + function __construct(&$p_master) { $this->p_master = &$p_master; } diff --git a/phpBB/includes/mcp/mcp_main.php b/phpBB/includes/mcp/mcp_main.php index 3332ab04d8..3b4f27d751 100644 --- a/phpBB/includes/mcp/mcp_main.php +++ b/phpBB/includes/mcp/mcp_main.php @@ -26,7 +26,7 @@ class mcp_main var $p_master; var $u_action; - function mcp_main(&$p_master) + function __construct(&$p_master) { $this->p_master = &$p_master; } diff --git a/phpBB/includes/mcp/mcp_notes.php b/phpBB/includes/mcp/mcp_notes.php index 42a64055ce..b4804d56ea 100755 --- a/phpBB/includes/mcp/mcp_notes.php +++ b/phpBB/includes/mcp/mcp_notes.php @@ -26,7 +26,7 @@ class mcp_notes var $p_master; var $u_action; - function mcp_notes(&$p_master) + function __construct(&$p_master) { $this->p_master = &$p_master; } diff --git a/phpBB/includes/mcp/mcp_post.php b/phpBB/includes/mcp/mcp_post.php index 8f4630bf4c..8d4ea46e31 100644 --- a/phpBB/includes/mcp/mcp_post.php +++ b/phpBB/includes/mcp/mcp_post.php @@ -140,7 +140,7 @@ function mcp_post_details($id, $mode, $action) if ($post_info['post_attachment'] && $auth->acl_get('u_download') && $auth->acl_get('f_download', $post_info['forum_id'])) { - $extensions = $cache->obtain_attach_extensions($post_info['forum_id']); + $extensions = cache::obtain_attach_extensions($post_info['forum_id']); $sql = 'SELECT * FROM ' . ATTACHMENTS_TABLE . ' diff --git a/phpBB/includes/mcp/mcp_queue.php b/phpBB/includes/mcp/mcp_queue.php index 6d7f9ffaba..88fc9cb13d 100644 --- a/phpBB/includes/mcp/mcp_queue.php +++ b/phpBB/includes/mcp/mcp_queue.php @@ -26,7 +26,7 @@ class mcp_queue var $p_master; var $u_action; - function mcp_queue(&$p_master) + function __construct(&$p_master) { $this->p_master = &$p_master; } @@ -140,7 +140,7 @@ class mcp_queue if ($post_info['post_attachment'] && $auth->acl_get('u_download') && $auth->acl_get('f_download', $post_info['forum_id'])) { - $extensions = $cache->obtain_attach_extensions($post_info['forum_id']); + $extensions = cache::obtain_attach_extensions($post_info['forum_id']); $sql = 'SELECT * FROM ' . ATTACHMENTS_TABLE . ' diff --git a/phpBB/includes/mcp/mcp_reports.php b/phpBB/includes/mcp/mcp_reports.php index 37ea7e5132..4e607b79c7 100755 --- a/phpBB/includes/mcp/mcp_reports.php +++ b/phpBB/includes/mcp/mcp_reports.php @@ -26,7 +26,7 @@ class mcp_reports var $p_master; var $u_action; - function mcp_reports(&$p_master) + function __construct(&$p_master) { $this->p_master = &$p_master; } @@ -149,7 +149,7 @@ class mcp_reports if ($post_info['post_attachment'] && $auth->acl_get('u_download') && $auth->acl_get('f_download', $post_info['forum_id'])) { - $extensions = $cache->obtain_attach_extensions($post_info['forum_id']); + $extensions = cache::obtain_attach_extensions($post_info['forum_id']); $sql = 'SELECT * FROM ' . ATTACHMENTS_TABLE . ' diff --git a/phpBB/includes/mcp/mcp_topic.php b/phpBB/includes/mcp/mcp_topic.php index f8214e4f1b..ca566b1524 100644 --- a/phpBB/includes/mcp/mcp_topic.php +++ b/phpBB/includes/mcp/mcp_topic.php @@ -164,7 +164,7 @@ function mcp_topic_view($id, $mode, $action) $extensions = $attachments = array(); if ($topic_info['topic_attachment'] && sizeof($post_id_list)) { - $extensions = $cache->obtain_attach_extensions($topic_info['forum_id']); + $extensions = cache::obtain_attach_extensions($topic_info['forum_id']); // Get attachments... if ($auth->acl_get('u_download') && $auth->acl_get('f_download', $topic_info['forum_id'])) diff --git a/phpBB/includes/mcp/mcp_warn.php b/phpBB/includes/mcp/mcp_warn.php index 315a2c1362..6751ef41bf 100755 --- a/phpBB/includes/mcp/mcp_warn.php +++ b/phpBB/includes/mcp/mcp_warn.php @@ -26,7 +26,7 @@ class mcp_warn var $p_master; var $u_action; - function mcp_warn(&$p_master) + function __construct(&$p_master) { $this->p_master = &$p_master; } diff --git a/phpBB/includes/search/fulltext_mysql.php b/phpBB/includes/search/fulltext_mysql.php index 1cd28fc6d2..b359b3ba1c 100644 --- a/phpBB/includes/search/fulltext_mysql.php +++ b/phpBB/includes/search/fulltext_mysql.php @@ -28,42 +28,25 @@ include_once($phpbb_root_path . 'includes/search/search.' . $phpEx); */ class fulltext_mysql extends search_backend { - var $stats = array(); - var $word_length = array(); - var $split_words = array(); - var $search_query; - var $common_words = array(); - var $pcre_properties = false; - var $mbstring_regex = false; - - function fulltext_mysql(&$error) + private $stats = array(); + public $word_length = array(); + private $split_words = array(); + public $search_query; + public $common_words = array(); + + function __construct(&$error) { global $config; $this->word_length = array('min' => $config['fulltext_mysql_min_word_len'], 'max' => $config['fulltext_mysql_max_word_len']); - if (version_compare(PHP_VERSION, '5.1.0', '>=') || (version_compare(PHP_VERSION, '5.0.0-dev', '<=') && version_compare(PHP_VERSION, '4.4.0', '>='))) - { - // While this is the proper range of PHP versions, PHP may not be linked with the bundled PCRE lib and instead with an older version - if (@preg_match('/\p{L}/u', 'a') !== false) - { - $this->pcre_properties = true; - } - } - - if (function_exists('mb_ereg')) - { - $this->mbstring_regex = true; - mb_regex_encoding('UTF-8'); - } - $error = false; } /** * Checks for correct MySQL version and stores min/max word length in the config */ - function init() + public function init() { global $db, $user; @@ -116,7 +99,7 @@ class fulltext_mysql extends search_backend * @param string $terms is either 'all' or 'any' * @return bool false if no valid keywords were found and otherwise true */ - function split_keywords(&$keywords, $terms) + public function split_keywords(&$keywords, $terms) { global $config; @@ -132,40 +115,11 @@ class fulltext_mysql extends search_backend $split_keywords = preg_replace("#[\n\r\t]+#", ' ', trim(htmlspecialchars_decode($keywords))); // Split words - if ($this->pcre_properties) - { - $split_keywords = preg_replace('#([^\p{L}\p{N}\'*"()])#u', '$1$1', str_replace('\'\'', '\' \'', trim($split_keywords))); - } - else if ($this->mbstring_regex) - { - $split_keywords = mb_ereg_replace('([^\w\'*"()])', '\\1\\1', str_replace('\'\'', '\' \'', trim($split_keywords))); - } - else - { - $split_keywords = preg_replace('#([^\w\'*"()])#u', '$1$1', str_replace('\'\'', '\' \'', trim($split_keywords))); - } + $split_keywords = preg_replace('#([^\p{L}\p{N}\'*"()])#u', '$1$1', str_replace('\'\'', '\' \'', trim($split_keywords))); - if ($this->pcre_properties) - { - $matches = array(); - preg_match_all('#(?:[^\p{L}\p{N}*"()]|^)([+\-|]?(?:[\p{L}\p{N}*"()]+\'?)*[\p{L}\p{N}*"()])(?:[^\p{L}\p{N}*"()]|$)#u', $split_keywords, $matches); - $this->split_words = $matches[1]; - } - else if ($this->mbstring_regex) - { - mb_ereg_search_init($split_keywords, '(?:[^\w*"()]|^)([+\-|]?(?:[\w*"()]+\'?)*[\w*"()])(?:[^\w*"()]|$)'); - - while (($word = mb_ereg_search_regs())) - { - $this->split_words[] = $word[1]; - } - } - else - { - $matches = array(); - preg_match_all('#(?:[^\w*"()]|^)([+\-|]?(?:[\w*"()]+\'?)*[\w*"()])(?:[^\w*"()]|$)#u', $split_keywords, $matches); - $this->split_words = $matches[1]; - } + $matches = array(); + preg_match_all('#(?:[^\p{L}\p{N}*"()]|^)([+\-|]?(?:[\p{L}\p{N}*"()]+\'?)*[\p{L}\p{N}*"()])(?:[^\p{L}\p{N}*"()]|$)#u', $split_keywords, $matches); + $this->split_words = $matches[1]; // to allow phrase search, we need to concatenate quoted words $tmp_split_words = array(); @@ -259,46 +213,16 @@ class fulltext_mysql extends search_backend /** * Turns text into an array of words */ - function split_message($text) + private function split_message($text) { global $config; // Split words - if ($this->pcre_properties) - { - $text = preg_replace('#([^\p{L}\p{N}\'*])#u', '$1$1', str_replace('\'\'', '\' \'', trim($text))); - } - else if ($this->mbstring_regex) - { - $text = mb_ereg_replace('([^\w\'*])', '\\1\\1', str_replace('\'\'', '\' \'', trim($text))); - } - else - { - $text = preg_replace('#([^\w\'*])#u', '$1$1', str_replace('\'\'', '\' \'', trim($text))); - } + $text = preg_replace('#([^\p{L}\p{N}\'*])#u', '$1$1', str_replace('\'\'', '\' \'', trim($text))); - if ($this->pcre_properties) - { - $matches = array(); - preg_match_all('#(?:[^\p{L}\p{N}*]|^)([+\-|]?(?:[\p{L}\p{N}*]+\'?)*[\p{L}\p{N}*])(?:[^\p{L}\p{N}*]|$)#u', $text, $matches); - $text = $matches[1]; - } - else if ($this->mbstring_regex) - { - mb_ereg_search_init($text, '(?:[^\w*]|^)([+\-|]?(?:[\w*]+\'?)*[\w*])(?:[^\w*]|$)'); - - $text = array(); - while (($word = mb_ereg_search_regs())) - { - $text[] = $word[1]; - } - } - else - { - $matches = array(); - preg_match_all('#(?:[^\w*]|^)([+\-|]?(?:[\w*]+\'?)*[\w*])(?:[^\w*]|$)#u', $text, $matches); - $text = $matches[1]; - } + $matches = array(); + preg_match_all('#(?:[^\p{L}\p{N}*]|^)([+\-|]?(?:[\p{L}\p{N}*]+\'?)*[\p{L}\p{N}*])(?:[^\p{L}\p{N}*]|$)#u', $text, $matches); + $text = $matches[1]; // remove too short or too long words $text = array_values($text); @@ -335,7 +259,7 @@ class fulltext_mysql extends search_backend * * @access public */ - function keyword_search($type, &$fields, &$terms, &$sort_by_sql, &$sort_key, &$sort_dir, &$sort_days, &$ex_fid_ary, &$m_approve_fid_ary, &$topic_id, &$author_ary, &$id_ary, $start, $per_page) + public function keyword_search($type, &$fields, &$terms, &$sort_by_sql, &$sort_key, &$sort_dir, &$sort_days, &$ex_fid_ary, &$m_approve_fid_ary, &$topic_id, &$author_ary, &$id_ary, $start, $per_page) { global $config, $db; @@ -361,7 +285,7 @@ class fulltext_mysql extends search_backend // try reading the results from cache $result_count = 0; - if ($this->obtain_ids($search_key, $result_count, $id_ary, $start, $per_page, $sort_dir) == SEARCH_RESULT_IN_CACHE) + if ($this->obtain_ids($search_key, $result_count, $id_ary, $start, $per_page, $sort_dir) == self::SEARCH_RESULT_IN_CACHE) { return $result_count; } @@ -494,7 +418,7 @@ class fulltext_mysql extends search_backend * @param int $per_page number of ids each page is supposed to contain * @return total number of results */ - function author_search($type, $firstpost_only, &$sort_by_sql, &$sort_key, &$sort_dir, &$sort_days, &$ex_fid_ary, &$m_approve_fid_ary, &$topic_id, &$author_ary, &$id_ary, $start, $per_page) + public function author_search($type, $firstpost_only, &$sort_by_sql, &$sort_key, &$sort_dir, &$sort_days, &$ex_fid_ary, &$m_approve_fid_ary, &$topic_id, &$author_ary, &$id_ary, $start, $per_page) { global $config, $db; @@ -521,7 +445,7 @@ class fulltext_mysql extends search_backend // try reading the results from cache $result_count = 0; - if ($this->obtain_ids($search_key, $result_count, $id_ary, $start, $per_page, $sort_dir) == SEARCH_RESULT_IN_CACHE) + if ($this->obtain_ids($search_key, $result_count, $id_ary, $start, $per_page, $sort_dir) == self::SEARCH_RESULT_IN_CACHE) { return $result_count; } @@ -642,7 +566,7 @@ class fulltext_mysql extends search_backend * * @param string $mode contains the post mode: edit, post, reply, quote ... */ - function index($mode, $post_id, &$message, &$subject, $poster_id, $forum_id) + public function index($mode, $post_id, &$message, &$subject, $poster_id, $forum_id) { global $db; @@ -664,7 +588,7 @@ class fulltext_mysql extends search_backend /** * Destroy cached results, that might be outdated after deleting a post */ - function index_remove($post_ids, $author_ids, $forum_ids) + public function index_remove($post_ids, $author_ids, $forum_ids) { $this->destroy_cache(array(), $author_ids); } @@ -672,7 +596,7 @@ class fulltext_mysql extends search_backend /** * Destroy old cache entries */ - function tidy() + public function tidy() { global $db, $config; @@ -685,7 +609,7 @@ class fulltext_mysql extends search_backend /** * Create fulltext index */ - function create_index($acp_module, $u_action) + public function create_index($acp_module, $u_action) { global $db; @@ -746,7 +670,7 @@ class fulltext_mysql extends search_backend /** * Drop fulltext index */ - function delete_index($acp_module, $u_action) + public function delete_index($acp_module, $u_action) { global $db; @@ -791,7 +715,7 @@ class fulltext_mysql extends search_backend /** * Returns true if both FULLTEXT indexes exist */ - function index_created() + public function index_created() { if (empty($this->stats)) { @@ -804,7 +728,7 @@ class fulltext_mysql extends search_backend /** * Returns an associative array containing information about the indexes */ - function index_stats() + public function index_stats() { global $user; @@ -818,7 +742,7 @@ class fulltext_mysql extends search_backend ); } - function get_stats() + private function get_stats() { global $db; @@ -863,22 +787,13 @@ class fulltext_mysql extends search_backend } /** - * Display a note, that UTF-8 support is not available with certain versions of PHP + * Display nothing, we force UTF-8 support in all versions of PHP */ function acp() { global $user, $config; - $tpl = ' - <dl> - <dt><label>' . $user->lang['FULLTEXT_MYSQL_PCRE'] . '</label><br /><span>' . $user->lang['FULLTEXT_MYSQL_PCRE_EXPLAIN'] . '</span></dt> - <dd>' . (($this->pcre_properties) ? $user->lang['YES'] : $user->lang['NO']) . ' (PHP ' . PHP_VERSION . ')</dd> - </dl> - <dl> - <dt><label>' . $user->lang['FULLTEXT_MYSQL_MBSTRING'] . '</label><br /><span>' . $user->lang['FULLTEXT_MYSQL_MBSTRING_EXPLAIN'] . '</span></dt> - <dd>' . (($this->mbstring_regex) ? $user->lang['YES'] : $user->lang['NO']). '</dd> - </dl> - '; + $tpl = ''; // These are fields required in the config table return array( diff --git a/phpBB/includes/search/fulltext_native.php b/phpBB/includes/search/fulltext_native.php index bfcb02f8e6..89689151fe 100755 --- a/phpBB/includes/search/fulltext_native.php +++ b/phpBB/includes/search/fulltext_native.php @@ -28,14 +28,14 @@ include_once($phpbb_root_path . 'includes/search/search.' . $phpEx); */ class fulltext_native extends search_backend { - var $stats = array(); - var $word_length = array(); - var $search_query; - var $common_words = array(); + private $stats = array(); + public $word_length = array(); + public $search_query; + public $common_words = array(); - var $must_contain_ids = array(); - var $must_not_contain_ids = array(); - var $must_exclude_one_ids = array(); + private $must_contain_ids = array(); + private $must_not_contain_ids = array(); + private $must_exclude_one_ids = array(); /** * Initialises the fulltext_native search backend with min/max word length and makes sure the UTF-8 normalizer is loaded. @@ -44,7 +44,7 @@ class fulltext_native extends search_backend * * @access public */ - function fulltext_native(&$error) + function __construct(&$error) { global $phpbb_root_path, $phpEx, $config; @@ -79,7 +79,7 @@ class fulltext_native extends search_backend * * @access public */ - function split_keywords($keywords, $terms) + public function split_keywords($keywords, $terms) { global $db, $user; @@ -402,7 +402,7 @@ class fulltext_native extends search_backend * * @access public */ - function keyword_search($type, &$fields, &$terms, &$sort_by_sql, &$sort_key, &$sort_dir, &$sort_days, &$ex_fid_ary, &$m_approve_fid_ary, &$topic_id, &$author_ary, &$id_ary, $start, $per_page) + public function keyword_search($type, &$fields, &$terms, &$sort_by_sql, &$sort_key, &$sort_dir, &$sort_days, &$ex_fid_ary, &$m_approve_fid_ary, &$topic_id, &$author_ary, &$id_ary, $start, $per_page) { global $config, $db; @@ -430,7 +430,7 @@ class fulltext_native extends search_backend // try reading the results from cache $total_results = 0; - if ($this->obtain_ids($search_key, $total_results, $id_ary, $start, $per_page, $sort_dir) == SEARCH_RESULT_IN_CACHE) + if ($this->obtain_ids($search_key, $total_results, $id_ary, $start, $per_page, $sort_dir) == self::SEARCH_RESULT_IN_CACHE) { return $total_results; } @@ -761,7 +761,7 @@ class fulltext_native extends search_backend * * @access public */ - function author_search($type, $firstpost_only, &$sort_by_sql, &$sort_key, &$sort_dir, &$sort_days, &$ex_fid_ary, &$m_approve_fid_ary, &$topic_id, &$author_ary, &$id_ary, $start, $per_page) + public function author_search($type, $firstpost_only, &$sort_by_sql, &$sort_key, &$sort_dir, &$sort_days, &$ex_fid_ary, &$m_approve_fid_ary, &$topic_id, &$author_ary, &$id_ary, $start, $per_page) { global $config, $db; @@ -788,7 +788,7 @@ class fulltext_native extends search_backend // try reading the results from cache $total_results = 0; - if ($this->obtain_ids($search_key, $total_results, $id_ary, $start, $per_page, $sort_dir) == SEARCH_RESULT_IN_CACHE) + if ($this->obtain_ids($search_key, $total_results, $id_ary, $start, $per_page, $sort_dir) == self::SEARCH_RESULT_IN_CACHE) { return $total_results; } @@ -973,7 +973,7 @@ class fulltext_native extends search_backend * * @access private */ - function split_message($text) + private function split_message($text) { global $phpbb_root_path, $phpEx, $user; @@ -1052,7 +1052,7 @@ class fulltext_native extends search_backend * * @access public */ - function index($mode, $post_id, &$message, &$subject, $poster_id, $forum_id) + public function index($mode, $post_id, &$message, &$subject, $poster_id, $forum_id) { global $config, $db, $user; @@ -1211,7 +1211,7 @@ class fulltext_native extends search_backend /** * Removes entries from the wordmatch table for the specified post_ids */ - function index_remove($post_ids, $author_ids, $forum_ids) + public function index_remove($post_ids, $author_ids, $forum_ids) { global $db; @@ -1271,7 +1271,7 @@ class fulltext_native extends search_backend * Tidy up indexes: Tag 'common words' and remove * words no longer referenced in the match table */ - function tidy() + public function tidy() { global $db, $config; @@ -1336,7 +1336,7 @@ class fulltext_native extends search_backend /** * Deletes all words from the index */ - function delete_index($acp_module, $u_action) + public function delete_index($acp_module, $u_action) { global $db; @@ -1360,7 +1360,7 @@ class fulltext_native extends search_backend /** * Returns true if both FULLTEXT indexes exist */ - function index_created() + public function index_created() { if (!sizeof($this->stats)) { @@ -1373,7 +1373,7 @@ class fulltext_native extends search_backend /** * Returns an associative array containing information about the indexes */ - function index_stats() + public function index_stats() { global $user; @@ -1387,7 +1387,7 @@ class fulltext_native extends search_backend $user->lang['TOTAL_MATCHES'] => $this->stats['total_matches']); } - function get_stats() + private function get_stats() { global $db; @@ -1414,24 +1414,16 @@ class fulltext_native extends search_backend * * @param string $text Text to split, in UTF-8 (not normalized or sanitized) * @param string $allowed_chars String of special chars to allow - * @param string $encoding Text encoding * @return string Cleaned up text, only alphanumeric chars are left * * @todo normalizer::cleanup being able to be used? */ - function cleanup($text, $allowed_chars = null, $encoding = 'utf-8') + private function cleanup($text, $allowed_chars = null) { global $phpbb_root_path, $phpEx; static $conv = array(), $conv_loaded = array(); $words = $allow = array(); - // Convert the text to UTF-8 - $encoding = strtolower($encoding); - if ($encoding != 'utf-8') - { - $text = utf8_recode($text, $encoding); - } - $utf_len_mask = array( "\xC0" => 2, "\xD0" => 2, @@ -1649,7 +1641,7 @@ class fulltext_native extends search_backend /** * Returns a list of options for the ACP to display */ - function acp() + public function acp() { global $user, $config; diff --git a/phpBB/includes/search/search.php b/phpBB/includes/search/search.php index 32d7ed595f..e13a59caed 100755 --- a/phpBB/includes/search/search.php +++ b/phpBB/includes/search/search.php @@ -17,13 +17,6 @@ if (!defined('IN_PHPBB')) } /** -* @ignore -*/ -define('SEARCH_RESULT_NOT_IN_CACHE', 0); -define('SEARCH_RESULT_IN_CACHE', 1); -define('SEARCH_RESULT_INCOMPLETE', 2); - -/** * search_backend * optional base class for search plugins providing simple caching based on ACM * and functions to retrieve ignore_words and synonyms @@ -31,11 +24,15 @@ define('SEARCH_RESULT_INCOMPLETE', 2); */ class search_backend { - var $ignore_words = array(); - var $match_synonym = array(); - var $replace_synonym = array(); + const SEARCH_RESULT_NOT_IN_CACHE = 0; + const SEARCH_RESULT_IN_CACHE = 1; + const SEARCH_RESULT_INCOMPLETE = 2; + + public $ignore_words = array(); + public $match_synonym = array(); + public $replace_synonym = array(); - function search_backend(&$error) + function __construct(&$error) { // This class cannot be used as a search plugin $error = true; @@ -44,7 +41,7 @@ class search_backend /** * Retrieves a language dependend list of words that should be ignored by the search */ - function get_ignore_words() + public function get_ignore_words() { if (!sizeof($this->ignore_words)) { @@ -66,7 +63,7 @@ class search_backend /** * Stores a list of synonyms that should be replaced in $this->match_synonym and $this->replace_synonym and caches them */ - function get_synonyms() + public function get_synonyms() { if (!sizeof($this->match_synonym)) { @@ -95,14 +92,14 @@ class search_backend * * @return int SEARCH_RESULT_NOT_IN_CACHE or SEARCH_RESULT_IN_CACHE or SEARCH_RESULT_INCOMPLETE */ - function obtain_ids($search_key, &$result_count, &$id_ary, $start, $per_page, $sort_dir) + protected function obtain_ids($search_key, &$result_count, &$id_ary, $start, $per_page, $sort_dir) { global $cache; if (!($stored_ids = $cache->get('_search_results_' . $search_key))) { // no search results cached for this search_key - return SEARCH_RESULT_NOT_IN_CACHE; + return self::SEARCH_RESULT_NOT_IN_CACHE; } else { @@ -119,7 +116,7 @@ class search_backend // the user requested a page past the last index if ($start < 0) { - return SEARCH_RESULT_NOT_IN_CACHE; + return self::SEARCH_RESULT_NOT_IN_CACHE; } } @@ -143,9 +140,9 @@ class search_backend if (!$complete) { - return SEARCH_RESULT_INCOMPLETE; + return self::SEARCH_RESULT_INCOMPLETE; } - return SEARCH_RESULT_IN_CACHE; + return self::SEARCH_RESULT_IN_CACHE; } } @@ -155,7 +152,7 @@ class search_backend * @param array &$id_ary contains a list of post or topic ids that shall be cached, the first element * must have the absolute index $start in the result set. */ - function save_ids($search_key, $keywords, $author_ary, $result_count, &$id_ary, $start, $sort_dir) + protected function save_ids($search_key, $keywords, $author_ary, $result_count, &$id_ary, $start, $sort_dir) { global $cache, $config, $db, $user; @@ -264,7 +261,7 @@ class search_backend /** * Removes old entries from the search results table and removes searches with keywords that contain a word in $words. */ - function destroy_cache($words, $authors = false) + public function destroy_cache($words, $authors = false) { global $db, $cache, $config; diff --git a/phpBB/includes/session.php b/phpBB/includes/session.php index 0c61f01b02..573cbdd2c6 100644 --- a/phpBB/includes/session.php +++ b/phpBB/includes/session.php @@ -371,7 +371,7 @@ class session * bot, act accordingly */ $bot = false; - $active_bots = $cache->obtain_bots(); + $active_bots = cache::obtain_bots(); foreach ($active_bots as $row) { @@ -1403,7 +1403,7 @@ class user extends session } // Now parse the cfg file and cache it - $parsed_items = $cache->obtain_cfg_items($this->theme); + $parsed_items = cache::obtain_cfg_items($this->theme); // We are only interested in the theme configuration for now $parsed_items = $parsed_items['theme']; diff --git a/phpBB/includes/template.php b/phpBB/includes/template.php index 2e60beb658..e5f57cfdc2 100644 --- a/phpBB/includes/template.php +++ b/phpBB/includes/template.php @@ -28,23 +28,23 @@ class template * if it's a root-level variable, it'll be like this: * --> $this->_tpldata[.][0][varname] == value */ - var $_tpldata = array('.' => array(0 => array())); - var $_rootref; + private $_tpldata = array('.' => array(0 => array())); + private $_rootref; // Root dir and hash of filenames for each template handle. - var $root = ''; - var $cachepath = ''; - var $files = array(); - var $filename = array(); + private $root = ''; + public $cachepath = ''; + public $files = array(); + public $filename = array(); // this will hash handle names to the compiled/uncompiled code for that handle. - var $compiled_code = array(); + public $compiled_code = array(); /** * Set template location * @access public */ - function set_template() + public function set_template() { global $phpbb_root_path, $user; @@ -67,7 +67,7 @@ class template * Set custom template location (able to use directory outside of phpBB) * @access public */ - function set_custom_template($template_path, $template_name) + public function set_custom_template($template_path, $template_name) { global $phpbb_root_path; @@ -82,13 +82,8 @@ class template * should be a hash of handle => filename pairs. * @access public */ - function set_filenames($filename_array) + public function set_filenames(array $filename_array) { - if (!is_array($filename_array)) - { - return false; - } - foreach ($filename_array as $handle => $filename) { if (empty($filename)) @@ -107,7 +102,7 @@ class template * Destroy template data set * @access public */ - function destroy() + function __destruct() { $this->_tpldata = array('.' => array(0 => array())); } @@ -116,7 +111,7 @@ class template * Reset/empty complete block * @access public */ - function destroy_block_vars($blockname) + public function destroy_block_vars($blockname) { if (strpos($blockname, '.') !== false) { @@ -146,7 +141,7 @@ class template * Display handle * @access public */ - function display($handle, $include_once = true) + public function display($handle, $include_once = true) { global $user, $phpbb_hook; @@ -162,7 +157,7 @@ class template { if ((E_NOTICE & error_reporting()) == E_NOTICE) { - error_reporting(error_reporting() ^ E_NOTICE); + //error_reporting(error_reporting() ^ E_NOTICE); } } @@ -182,7 +177,7 @@ class template * Display the handle and assign the output to a template variable or return the compiled result. * @access public */ - function assign_display($handle, $template_var = '', $return_content = true, $include_once = false) + public function assign_display($handle, $template_var = '', $return_content = true, $include_once = false) { ob_start(); $this->display($handle, $include_once); @@ -202,7 +197,7 @@ class template * Load a compiled template if possible, if not, recompile it * @access private */ - function _tpl_load(&$handle) + private function _tpl_load(&$handle) { global $user, $phpEx, $config; @@ -305,7 +300,7 @@ class template * Assign key variable pairs from an array * @access public */ - function assign_vars($vararray) + public function assign_vars(array $vararray) { foreach ($vararray as $key => $val) { @@ -319,7 +314,7 @@ class template * Assign a single variable to a single key * @access public */ - function assign_var($varname, $varval) + public function assign_var($varname, $varval) { $this->_rootref[$varname] = $varval; @@ -330,7 +325,7 @@ class template * Assign key variable pairs from an array to a specified block * @access public */ - function assign_block_vars($blockname, $vararray) + public function assign_block_vars($blockname, array $vararray) { if (strpos($blockname, '.') !== false) { @@ -421,7 +416,7 @@ class template * @return bool false on error, true on success * @access public */ - function alter_block_array($blockname, $vararray, $key = false, $mode = 'insert') + public function alter_block_array($blockname, array $vararray, $key = false, $mode = 'insert') { if (strpos($blockname, '.') !== false) { @@ -507,7 +502,7 @@ class template * Include a separate template * @access private */ - function _tpl_include($filename, $include = true) + public function _tpl_include($filename, $include = true) { $handle = $filename; $this->filename[$handle] = $filename; diff --git a/phpBB/includes/ucp/ucp_confirm.php b/phpBB/includes/ucp/ucp_confirm.php index 0f37c456fa..e416ff4b88 100644 --- a/phpBB/includes/ucp/ucp_confirm.php +++ b/phpBB/includes/ucp/ucp_confirm.php @@ -71,8 +71,7 @@ class ucp_confirm include($phpbb_root_path . 'includes/captcha/captcha_non_gd.' . $phpEx); } - $captcha = new captcha(); - $captcha->execute($row['code'], $row['seed']); + captcha::execute($row['code'], $row['seed']); exit; } } diff --git a/phpBB/includes/ucp/ucp_main.php b/phpBB/includes/ucp/ucp_main.php index c2fa50c79e..59d7431113 100644 --- a/phpBB/includes/ucp/ucp_main.php +++ b/phpBB/includes/ucp/ucp_main.php @@ -26,7 +26,7 @@ class ucp_main var $p_master; var $u_action; - function ucp_main(&$p_master) + function __construct(&$p_master) { $this->p_master = &$p_master; } diff --git a/phpBB/includes/ucp/ucp_pm_viewfolder.php b/phpBB/includes/ucp/ucp_pm_viewfolder.php index e9c337519a..6ba08c36de 100644 --- a/phpBB/includes/ucp/ucp_pm_viewfolder.php +++ b/phpBB/includes/ucp/ucp_pm_viewfolder.php @@ -34,7 +34,7 @@ function view_folder($id, $mode, $folder_id, $folder) $user->add_lang('viewforum'); // Grab icons - $icons = $cache->obtain_icons(); + $icons = cache::obtain_icons(); $color_rows = array('marked', 'replied'); diff --git a/phpBB/includes/ucp/ucp_pm_viewmessage.php b/phpBB/includes/ucp/ucp_pm_viewmessage.php index 3f109b0771..31208d9b01 100644 --- a/phpBB/includes/ucp/ucp_pm_viewmessage.php +++ b/phpBB/includes/ucp/ucp_pm_viewmessage.php @@ -47,7 +47,7 @@ function view_message($id, $mode, $folder_id, $msg_id, $folder, $message_row) } // Grab icons - $icons = $cache->obtain_icons(); + $icons = cache::obtain_icons(); $bbcode = false; diff --git a/phpBB/includes/ucp/ucp_register.php b/phpBB/includes/ucp/ucp_register.php index 09649ebe68..b56015efc0 100644 --- a/phpBB/includes/ucp/ucp_register.php +++ b/phpBB/includes/ucp/ucp_register.php @@ -477,7 +477,7 @@ class ucp_register if (!$change_lang || !$confirm_id) { $user->confirm_gc(CONFIRM_REG); - + $sql = 'SELECT COUNT(session_id) AS attempts FROM ' . CONFIRM_TABLE . " WHERE session_id = '" . $db->sql_escape($user->session_id) . "' diff --git a/phpBB/includes/utf/utf_normalizer.php b/phpBB/includes/utf/utf_normalizer.php index a77952499a..5ed14d4ebb 100644 --- a/phpBB/includes/utf/utf_normalizer.php +++ b/phpBB/includes/utf/utf_normalizer.php @@ -15,52 +15,9 @@ if (!defined('IN_PHPBB')) exit; } -/** -* Some Unicode characters encoded in UTF-8 -* -* Preserved for compatibility -*/ -define('UTF8_REPLACEMENT', "\xEF\xBF\xBD"); -define('UTF8_MAX', "\xF4\x8F\xBF\xBF"); -define('UTF8_FFFE', "\xEF\xBF\xBE"); -define('UTF8_FFFF', "\xEF\xBF\xBF"); -define('UTF8_SURROGATE_FIRST', "\xED\xA0\x80"); -define('UTF8_SURROGATE_LAST', "\xED\xBF\xBF"); -define('UTF8_HANGUL_FIRST', "\xEA\xB0\x80"); -define('UTF8_HANGUL_LAST', "\xED\x9E\xA3"); - -define('UTF8_CJK_FIRST', "\xE4\xB8\x80"); -define('UTF8_CJK_LAST', "\xE9\xBE\xBB"); -define('UTF8_CJK_B_FIRST', "\xF0\xA0\x80\x80"); -define('UTF8_CJK_B_LAST', "\xF0\xAA\x9B\x96"); - // Unset global variables unset($GLOBALS['utf_jamo_index'], $GLOBALS['utf_jamo_type'], $GLOBALS['utf_nfc_qc'], $GLOBALS['utf_combining_class'], $GLOBALS['utf_canonical_comp'], $GLOBALS['utf_canonical_decomp'], $GLOBALS['utf_nfkc_qc'], $GLOBALS['utf_compatibility_decomp']); -// NFC_QC and NFKC_QC values -define('UNICODE_QC_MAYBE', 0); -define('UNICODE_QC_NO', 1); - -// Contains all the ASCII characters appearing in UTF-8, sorted by frequency -define('UTF8_ASCII_RANGE', "\x20\x65\x69\x61\x73\x6E\x74\x72\x6F\x6C\x75\x64\x5D\x5B\x63\x6D\x70\x27\x0A\x67\x7C\x68\x76\x2E\x66\x62\x2C\x3A\x3D\x2D\x71\x31\x30\x43\x32\x2A\x79\x78\x29\x28\x4C\x39\x41\x53\x2F\x50\x22\x45\x6A\x4D\x49\x6B\x33\x3E\x35\x54\x3C\x44\x34\x7D\x42\x7B\x38\x46\x77\x52\x36\x37\x55\x47\x4E\x3B\x4A\x7A\x56\x23\x48\x4F\x57\x5F\x26\x21\x4B\x3F\x58\x51\x25\x59\x5C\x09\x5A\x2B\x7E\x5E\x24\x40\x60\x7F\x00\x01\x02\x03\x04\x05\x06\x07\x08\x0B\x0C\x0D\x0E\x0F\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1A\x1B\x1C\x1D\x1E\x1F"); - -// Contains all the tail bytes that can appear in the composition of a UTF-8 char -define('UTF8_TRAILING_BYTES', "\xA9\xA0\xA8\x80\xAA\x99\xA7\xBB\xAB\x89\x94\x82\xB4\xA2\xAE\x83\xB0\xB9\xB8\x93\xAF\xBC\xB3\x81\xA4\xB2\x9C\xA1\xB5\xBE\xBD\xBA\x98\xAD\xB1\x84\x95\xA6\xB6\x88\x8D\x90\xB7\xBF\x92\x85\xA5\x97\x8C\x86\xA3\x8E\x9F\x8F\x87\x91\x9D\xAC\x9E\x8B\x96\x9B\x8A\x9A"); - -// Constants used by the Hangul [de]composition algorithms -define('UNICODE_HANGUL_SBASE', 0xAC00); -define('UNICODE_HANGUL_LBASE', 0x1100); -define('UNICODE_HANGUL_VBASE', 0x1161); -define('UNICODE_HANGUL_TBASE', 0x11A7); -define('UNICODE_HANGUL_SCOUNT', 11172); -define('UNICODE_HANGUL_LCOUNT', 19); -define('UNICODE_HANGUL_VCOUNT', 21); -define('UNICODE_HANGUL_TCOUNT', 28); -define('UNICODE_HANGUL_NCOUNT', 588); -define('UNICODE_JAMO_L', 0); -define('UNICODE_JAMO_V', 1); -define('UNICODE_JAMO_T', 2); - /** * Unicode normalization routines * @@ -69,6 +26,50 @@ define('UNICODE_JAMO_T', 2); class utf_normalizer { /** + * Some Unicode characters encoded in UTF-8 + * + * Preserved for compatibility + */ + + const UTF8_REPLACEMENT = "\xEF\xBF\xBD"; + const UTF8_MAX = "\xF4\x8F\xBF\xBF"; + const UTF8_FFFE = "\xEF\xBF\xBE"; + const UTF8_FFFF = "\xEF\xBF\xBF"; + const UTF8_SURROGATE_FIRST = "\xED\xA0\x80"; + const UTF8_SURROGATE_LAST = "\xED\xBF\xBF"; + const UTF8_HANGUL_FIRST = "\xEA\xB0\x80"; + const UTF8_HANGUL_LAST = "\xED\x9E\xA3"; + + const UTF8_CJK_FIRST = "\xE4\xB8\x80"; + const UTF8_CJK_LAST = "\xE9\xBE\xBB"; + const UTF8_CJK_B_FIRST = "\xF0\xA0\x80\x80"; + const UTF8_CJK_B_LAST = "\xF0\xAA\x9B\x96"; + + // NFC_QC and NFKC_QC values + const UNICODE_QC_MAYBE = 0; + const UNICODE_QC_NO = 1; + + // Contains all the ASCII characters appearing in UTF-8, sorted by frequency + const UTF8_ASCII_RANGE = "\x20\x65\x69\x61\x73\x6E\x74\x72\x6F\x6C\x75\x64\x5D\x5B\x63\x6D\x70\x27\x0A\x67\x7C\x68\x76\x2E\x66\x62\x2C\x3A\x3D\x2D\x71\x31\x30\x43\x32\x2A\x79\x78\x29\x28\x4C\x39\x41\x53\x2F\x50\x22\x45\x6A\x4D\x49\x6B\x33\x3E\x35\x54\x3C\x44\x34\x7D\x42\x7B\x38\x46\x77\x52\x36\x37\x55\x47\x4E\x3B\x4A\x7A\x56\x23\x48\x4F\x57\x5F\x26\x21\x4B\x3F\x58\x51\x25\x59\x5C\x09\x5A\x2B\x7E\x5E\x24\x40\x60\x7F\x00\x01\x02\x03\x04\x05\x06\x07\x08\x0B\x0C\x0D\x0E\x0F\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1A\x1B\x1C\x1D\x1E\x1F"; + + // Contains all the tail bytes that can appear in the composition of a UTF-8 char + const UTF8_TRAILING_BYTES = "\xA9\xA0\xA8\x80\xAA\x99\xA7\xBB\xAB\x89\x94\x82\xB4\xA2\xAE\x83\xB0\xB9\xB8\x93\xAF\xBC\xB3\x81\xA4\xB2\x9C\xA1\xB5\xBE\xBD\xBA\x98\xAD\xB1\x84\x95\xA6\xB6\x88\x8D\x90\xB7\xBF\x92\x85\xA5\x97\x8C\x86\xA3\x8E\x9F\x8F\x87\x91\x9D\xAC\x9E\x8B\x96\x9B\x8A\x9A"; + + // Constants used by the Hangul [de]composition algorithms + const UNICODE_HANGUL_SBASE = 0xAC00; + const UNICODE_HANGUL_LBASE = 0x1100; + const UNICODE_HANGUL_VBASE = 0x1161; + const UNICODE_HANGUL_TBASE = 0x11A7; + const UNICODE_HANGUL_SCOUNT = 11172; + const UNICODE_HANGUL_LCOUNT = 19; + const UNICODE_HANGUL_VCOUNT = 21; + const UNICODE_HANGUL_TCOUNT = 28; + const UNICODE_HANGUL_NCOUNT = 588; + const UNICODE_JAMO_L = 0; + const UNICODE_JAMO_V = 1; + const UNICODE_JAMO_T = 2; + + /** * Validate, cleanup and normalize a string * * The ultimate convenience function! Clean up invalid UTF-8 sequences, @@ -77,9 +78,9 @@ class utf_normalizer * @param string &$str The dirty string * @return string The same string, all shiny and cleaned-up */ - function cleanup(&$str) + public static function cleanup(&$str) { - // The string below is the list of all autorized characters, sorted by frequency in latin text + // The string below is the list of all authorized characters, sorted by frequency in latin text $pos = strspn($str, "\x20\x65\x69\x61\x73\x6E\x74\x72\x6F\x6C\x75\x64\x5D\x5B\x63\x6D\x70\x27\x0A\x67\x7C\x68\x76\x2E\x66\x62\x2C\x3A\x3D\x2D\x71\x31\x30\x43\x32\x2A\x79\x78\x29\x28\x4C\x39\x41\x53\x2F\x50\x22\x45\x6A\x4D\x49\x6B\x33\x3E\x35\x54\x3C\x44\x34\x7D\x42\x7B\x38\x46\x77\x52\x36\x37\x55\x47\x4E\x3B\x4A\x7A\x56\x23\x48\x4F\x57\x5F\x26\x21\x4B\x3F\x58\x51\x25\x59\x5C\x09\x5A\x2B\x7E\x5E\x24\x40\x60\x7F\x0D"); $len = strlen($str); @@ -110,7 +111,7 @@ class utf_normalizer "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF" ); - $str = utf_normalizer::recompose($str, $pos, $len, $GLOBALS['utf_nfc_qc'], $GLOBALS['utf_canonical_decomp']); + $str = self::recompose($str, $pos, $len, $GLOBALS['utf_nfc_qc'], $GLOBALS['utf_canonical_decomp']); } /** @@ -119,9 +120,9 @@ class utf_normalizer * @param string &$str Unchecked UTF string * @return string The string, validated and in normal form */ - function nfc(&$str) + public static function nfc(&$str) { - $pos = strspn($str, UTF8_ASCII_RANGE); + $pos = strspn($str, self::UTF8_ASCII_RANGE); $len = strlen($str); if ($pos == $len) @@ -142,7 +143,7 @@ class utf_normalizer include($phpbb_root_path . 'includes/utf/data/utf_canonical_decomp.' . $phpEx); } - $str = utf_normalizer::recompose($str, $pos, $len, $GLOBALS['utf_nfc_qc'], $GLOBALS['utf_canonical_decomp']); + $str = self::recompose($str, $pos, $len, $GLOBALS['utf_nfc_qc'], $GLOBALS['utf_canonical_decomp']); } /** @@ -151,9 +152,9 @@ class utf_normalizer * @param string &$str Unchecked UTF string * @return string The string, validated and in normal form */ - function nfkc(&$str) + public static function nfkc(&$str) { - $pos = strspn($str, UTF8_ASCII_RANGE); + $pos = strspn($str, self::UTF8_ASCII_RANGE); $len = strlen($str); if ($pos == $len) @@ -174,7 +175,7 @@ class utf_normalizer include($phpbb_root_path . 'includes/utf/data/utf_compatibility_decomp.' . $phpEx); } - $str = utf_normalizer::recompose($str, $pos, $len, $GLOBALS['utf_nfkc_qc'], $GLOBALS['utf_compatibility_decomp']); + $str = self::recompose($str, $pos, $len, $GLOBALS['utf_nfkc_qc'], $GLOBALS['utf_compatibility_decomp']); } /** @@ -183,9 +184,9 @@ class utf_normalizer * @param string &$str Unchecked UTF string * @return string The string, validated and in normal form */ - function nfd(&$str) + public static function nfd(&$str) { - $pos = strspn($str, UTF8_ASCII_RANGE); + $pos = strspn($str, self::UTF8_ASCII_RANGE); $len = strlen($str); if ($pos == $len) @@ -200,7 +201,7 @@ class utf_normalizer include($phpbb_root_path . 'includes/utf/data/utf_canonical_decomp.' . $phpEx); } - $str = utf_normalizer::decompose($str, $pos, $len, $GLOBALS['utf_canonical_decomp']); + $str = self::decompose($str, $pos, $len, $GLOBALS['utf_canonical_decomp']); } /** @@ -209,9 +210,9 @@ class utf_normalizer * @param string &$str Unchecked UTF string * @return string The string, validated and in normal form */ - function nfkd(&$str) + public static function nfkd(&$str) { - $pos = strspn($str, UTF8_ASCII_RANGE); + $pos = strspn($str, self::UTF8_ASCII_RANGE); $len = strlen($str); if ($pos == $len) @@ -226,7 +227,7 @@ class utf_normalizer include($phpbb_root_path . 'includes/utf/data/utf_compatibility_decomp.' . $phpEx); } - $str = utf_normalizer::decompose($str, $pos, $len, $GLOBALS['utf_compatibility_decomp']); + $str = self::decompose($str, $pos, $len, $GLOBALS['utf_compatibility_decomp']); } @@ -242,7 +243,7 @@ class utf_normalizer * * @access private */ - function recompose($str, $pos, $len, &$qc, &$decomp_map) + private static function recompose($str, $pos, $len, &$qc, &$decomp_map) { global $utf_combining_class, $utf_canonical_comp, $utf_jamo_type, $utf_jamo_index; @@ -363,8 +364,8 @@ class utf_normalizer $trailing_bytes = $utf_len - 1; } - $tmp .= substr($str, $tmp_pos, $pos - $tmp_pos) . UTF8_REPLACEMENT; - $pos += strspn($str, UTF8_TRAILING_BYTES, ++$pos, $trailing_bytes); + $tmp .= substr($str, $tmp_pos, $pos - $tmp_pos) . self::UTF8_REPLACEMENT; + $pos += strspn($str, self::UTF8_TRAILING_BYTES, ++$pos, $trailing_bytes); $tmp_pos = $pos; continue; @@ -379,7 +380,7 @@ class utf_normalizer if ($utf_char >= "\xED\xA0\x80") { // Surrogates (U+D800..U+DFFF) are not allowed in UTF-8 (UTF sequence 0xEDA080..0xEDBFBF) - $tmp .= substr($str, $tmp_pos, $pos - $tmp_pos) . UTF8_REPLACEMENT; + $tmp .= substr($str, $tmp_pos, $pos - $tmp_pos) . self::UTF8_REPLACEMENT; $pos += $utf_len; $tmp_pos = $pos; continue 2; @@ -391,7 +392,7 @@ class utf_normalizer if ($utf_char == "\xEF\xBF\xBE" || $utf_char == "\xEF\xBF\xBF") { // U+FFFE and U+FFFF are explicitly disallowed (UTF sequence 0xEFBFBE..0xEFBFBF) - $tmp .= substr($str, $tmp_pos, $pos - $tmp_pos) . UTF8_REPLACEMENT; + $tmp .= substr($str, $tmp_pos, $pos - $tmp_pos) . self::UTF8_REPLACEMENT; $pos += $utf_len; $tmp_pos = $pos; continue 2; @@ -403,7 +404,7 @@ class utf_normalizer if ($utf_char <= "\xC1\xBF") { // Overlong sequence: Unicode char U+0000..U+007F encoded as a double-byte UTF char - $tmp .= substr($str, $tmp_pos, $pos - $tmp_pos) . UTF8_REPLACEMENT; + $tmp .= substr($str, $tmp_pos, $pos - $tmp_pos) . self::UTF8_REPLACEMENT; $pos += $utf_len; $tmp_pos = $pos; continue 2; @@ -414,7 +415,7 @@ class utf_normalizer if ($utf_char <= "\xE0\x9F\xBF") { // Unicode char U+0000..U+07FF encoded in 3 bytes - $tmp .= substr($str, $tmp_pos, $pos - $tmp_pos) . UTF8_REPLACEMENT; + $tmp .= substr($str, $tmp_pos, $pos - $tmp_pos) . self::UTF8_REPLACEMENT; $pos += $utf_len; $tmp_pos = $pos; continue 2; @@ -425,7 +426,7 @@ class utf_normalizer if ($utf_char <= "\xF0\x8F\xBF\xBF") { // Unicode char U+0000..U+FFFF encoded in 4 bytes - $tmp .= substr($str, $tmp_pos, $pos - $tmp_pos) . UTF8_REPLACEMENT; + $tmp .= substr($str, $tmp_pos, $pos - $tmp_pos) . self::UTF8_REPLACEMENT; $pos += $utf_len; $tmp_pos = $pos; continue 2; @@ -454,8 +455,8 @@ class utf_normalizer $trailing_bytes = 5; } - $tmp .= substr($str, $tmp_pos, $pos - $tmp_pos) . UTF8_REPLACEMENT; - $pos += strspn($str, UTF8_TRAILING_BYTES, ++$pos, $trailing_bytes); + $tmp .= substr($str, $tmp_pos, $pos - $tmp_pos) . self::UTF8_REPLACEMENT; + $pos += strspn($str, self::UTF8_TRAILING_BYTES, ++$pos, $trailing_bytes); $tmp_pos = $pos; continue 2; } @@ -472,8 +473,8 @@ class utf_normalizer { // A trailing byte came out of nowhere, we will advance the cursor and treat the this byte and all following trailing bytes as if // each of them was a Unicode replacement char - $spn = strspn($str, UTF8_TRAILING_BYTES, $pos); - $tmp .= substr($str, $tmp_pos, $pos - $tmp_pos) . str_repeat(UTF8_REPLACEMENT, $spn); + $spn = strspn($str, self::UTF8_TRAILING_BYTES, $pos); + $tmp .= substr($str, $tmp_pos, $pos - $tmp_pos) . str_repeat(self::UTF8_REPLACEMENT, $spn); $pos += $spn; $tmp_pos = $pos; @@ -533,7 +534,7 @@ class utf_normalizer // Check out the combining class of the first character of the UTF sequence $k = 0; - if (isset($utf_combining_class[$utf_seq[0]]) || $qc[$utf_char] == UNICODE_QC_MAYBE) + if (isset($utf_combining_class[$utf_seq[0]]) || $qc[$utf_char] == self::UNICODE_QC_MAYBE) { // Not a starter, inspect previous characters // The last 8 characters are kept in a buffer so that we don't have to capture them everytime. @@ -762,12 +763,11 @@ class utf_normalizer if (!$k && $k_max == 1) { // There is only one char in the UTF sequence, add it then jump to the next iteration of main loop - // Note: the two commented lines below can be enabled under PHP5 for a very small performance gain in most cases -// if (substr_compare($str, $utf_seq[0], $lpos, $pos - $lpos)) -// { + if (substr_compare($str, $utf_seq[0], $lpos, $pos - $lpos)) + { $tmp .= substr($str, $tmp_pos, $lpos - $tmp_pos) . $utf_seq[0]; $tmp_pos = $pos; -// } + } continue; } @@ -809,10 +809,10 @@ class utf_normalizer else if (isset($utf_jamo_type[$utf_char])) { // Current char is a composable jamo - if (isset($utf_jamo_type[$starter]) && $utf_jamo_type[$starter] == UNICODE_JAMO_L && $utf_jamo_type[$utf_char] == UNICODE_JAMO_V) + if (isset($utf_jamo_type[$starter]) && $utf_jamo_type[$starter] == self::UNICODE_JAMO_L && $utf_jamo_type[$utf_char] == self::UNICODE_JAMO_V) { // We have a L jamo followed by a V jamo, we are going to prefetch the next char to see if it's a T jamo - if (isset($utf_jamo_type[$utf_seq[$k]]) && $utf_jamo_type[$utf_seq[$k]] == UNICODE_JAMO_T) + if (isset($utf_jamo_type[$utf_seq[$k]]) && $utf_jamo_type[$utf_seq[$k]] == self::UNICODE_JAMO_T) { // L+V+T jamos, combine to a LVT Hangul syllable ($k is incremented) $cp = $utf_jamo_index[$starter] + $utf_jamo_index[$utf_char] + $utf_jamo_index[$utf_seq[$k]]; @@ -901,7 +901,7 @@ class utf_normalizer { if ($str[$pos] < "\x80") { - $pos += strspn($str, UTF8_ASCII_RANGE, ++$pos); + $pos += strspn($str, self::UTF8_ASCII_RANGE, ++$pos); $buffer[++$i & 7] = $str[$pos - 1]; } else @@ -944,7 +944,7 @@ class utf_normalizer * * @access private */ - function decompose($str, $pos, $len, &$decomp_map) + private static function decompose($str, $pos, $len, &$decomp_map) { global $utf_combining_class; @@ -1011,7 +1011,7 @@ class utf_normalizer { // A trailing byte came out of nowhere, we will treat it and all following trailing bytes as if each of them was a Unicode // replacement char and we will advance the cursor - $spn = strspn($str, UTF8_TRAILING_BYTES, $pos); + $spn = strspn($str, self::UTF8_TRAILING_BYTES, $pos); if ($dump) { @@ -1031,12 +1031,12 @@ class utf_normalizer } } - $tmp .= str_repeat(UTF8_REPLACEMENT, $spn); + $tmp .= str_repeat(self::UTF8_REPLACEMENT, $spn); $dump = $sort = 0; } else { - $tmp .= substr($str, $tmp_pos, $pos - $tmp_pos) . str_repeat(UTF8_REPLACEMENT, $spn); + $tmp .= substr($str, $tmp_pos, $pos - $tmp_pos) . str_repeat(self::UTF8_REPLACEMENT, $spn); } $pos += $spn; @@ -1177,7 +1177,7 @@ class utf_normalizer else { // Non-decomposable starter, check out if it's a Hangul syllable - if ($utf_char < UTF8_HANGUL_FIRST || $utf_char > UTF8_HANGUL_LAST) + if ($utf_char < self::UTF8_HANGUL_FIRST || $utf_char > self::UTF8_HANGUL_LAST) { // Nope, regular UTF char, check that we have the correct number of trailing bytes if (($utf_char & $utf_validation_mask[$utf_len]) != $utf_validation_check[$utf_len]) @@ -1202,8 +1202,8 @@ class utf_normalizer // Add a replacement char then another replacement char for every trailing byte. // // @todo I'm not entirely sure that's how we're supposed to mark invalidated byte sequences, check this - $spn = strspn($str, UTF8_TRAILING_BYTES, ++$pos); - $tmp .= str_repeat(UTF8_REPLACEMENT, $spn + 1); + $spn = strspn($str, self::UTF8_TRAILING_BYTES, ++$pos); + $tmp .= str_repeat(self::UTF8_REPLACEMENT, $spn + 1); $dump = $sort = 0; @@ -1234,7 +1234,7 @@ class utf_normalizer $utf_sort = array(); } - $tmp .= UTF8_REPLACEMENT; + $tmp .= self::UTF8_REPLACEMENT; $dump = $sort = 0; $tmp_pos = $starter_pos = $pos; @@ -1260,7 +1260,7 @@ class utf_normalizer $utf_sort = array(); } - $tmp .= UTF8_REPLACEMENT; + $tmp .= self::UTF8_REPLACEMENT; $dump = $sort = 0; $tmp_pos = $starter_pos = $pos; @@ -1286,7 +1286,7 @@ class utf_normalizer $utf_sort = array(); } - $tmp .= UTF8_REPLACEMENT; + $tmp .= self::UTF8_REPLACEMENT; $dump = $sort = 0; $tmp_pos = $starter_pos = $pos; @@ -1311,7 +1311,7 @@ class utf_normalizer $utf_sort = array(); } - $tmp .= UTF8_REPLACEMENT; + $tmp .= self::UTF8_REPLACEMENT; $dump = $sort = 0; $tmp_pos = $starter_pos = $pos; @@ -1336,7 +1336,7 @@ class utf_normalizer $utf_sort = array(); } - $tmp .= UTF8_REPLACEMENT; + $tmp .= self::UTF8_REPLACEMENT; $dump = $sort = 0; $tmp_pos = $starter_pos = $pos; @@ -1361,7 +1361,7 @@ class utf_normalizer $utf_sort = array(); } - $tmp .= UTF8_REPLACEMENT; + $tmp .= self::UTF8_REPLACEMENT; $dump = $sort = 0; $tmp_pos = $starter_pos = $pos; @@ -1374,12 +1374,12 @@ class utf_normalizer else { // Hangul syllable - $idx = (((ord($utf_char[0]) & 0x0F) << 12) | ((ord($utf_char[1]) & 0x3F) << 6) | (ord($utf_char[2]) & 0x3F)) - UNICODE_HANGUL_SBASE; + $idx = (((ord($utf_char[0]) & 0x0F) << 12) | ((ord($utf_char[1]) & 0x3F) << 6) | (ord($utf_char[2]) & 0x3F)) - self::UNICODE_HANGUL_SBASE; // LIndex can only range from 0 to 18, therefore it cannot influence the first two bytes of the L Jamo, which allows us to hardcode them (based on LBase). // // The same goes for VIndex, but for TIndex there's a catch: the value of the third byte could exceed 0xBF and we would have to increment the second byte - if ($t_index = $idx % UNICODE_HANGUL_TCOUNT) + if ($t_index = $idx % self::UNICODE_HANGUL_TCOUNT) { if ($t_index < 25) { @@ -1397,8 +1397,8 @@ class utf_normalizer $utf_char = "\xE1\x84\x00\xE1\x85\x00"; } - $utf_char[2] = chr(0x80 + (int) ($idx / UNICODE_HANGUL_NCOUNT)); - $utf_char[5] = chr(0xA1 + (int) (($idx % UNICODE_HANGUL_NCOUNT) / UNICODE_HANGUL_TCOUNT)); + $utf_char[2] = chr(0x80 + (int) ($idx / self::UNICODE_HANGUL_NCOUNT)); + $utf_char[5] = chr(0xA1 + (int) (($idx % self::UNICODE_HANGUL_NCOUNT) / self::UNICODE_HANGUL_TCOUNT)); // Just like other decompositions, the resulting Jamos must be dumped to the tmp string $dump = 1; @@ -1458,11 +1458,11 @@ class utf_normalizer $dump = $sort = 0; $tmp_pos = ++$pos; - $pos += strspn($str, UTF8_ASCII_RANGE, $pos); + $pos += strspn($str, self::UTF8_ASCII_RANGE, $pos); } else { - $pos += strspn($str, UTF8_ASCII_RANGE, ++$pos); + $pos += strspn($str, self::UTF8_ASCII_RANGE, ++$pos); } $last_cc = 0; diff --git a/phpBB/includes/utf/utf_tools.php b/phpBB/includes/utf/utf_tools.php index b30f28aac9..e2ef3edd0e 100644 --- a/phpBB/includes/utf/utf_tools.php +++ b/phpBB/includes/utf/utf_tools.php @@ -688,231 +688,6 @@ function utf8_ucfirst($str) } /** -* Recode a string to UTF-8 -* -* If the encoding is not supported, the string is returned as-is -* -* @param string $string Original string -* @param string $encoding Original encoding (lowered) -* @return string The string, encoded in UTF-8 -*/ -function utf8_recode($string, $encoding) -{ - $encoding = strtolower($encoding); - - if ($encoding == 'utf-8' || !is_string($string) || empty($string)) - { - return $string; - } - - // we force iso-8859-1 to be cp1252 - if ($encoding == 'iso-8859-1') - { - $encoding = 'cp1252'; - } - // convert iso-8859-8-i to iso-8859-8 - else if ($encoding == 'iso-8859-8-i') - { - $encoding = 'iso-8859-8'; - $string = hebrev($string); - } - - // First, try iconv() - if (function_exists('iconv')) - { - $ret = @iconv($encoding, 'utf-8', $string); - - if (!empty($ret)) - { - return $ret; - } - } - - // Try the mb_string extension - if (function_exists('mb_convert_encoding')) - { - // mbstring is nasty on PHP4, we must make *sure* that we send a good encoding - switch ($encoding) - { - case 'iso-8859-1': - case 'iso-8859-2': - case 'iso-8859-4': - case 'iso-8859-7': - case 'iso-8859-9': - case 'iso-8859-15': - case 'windows-1251': - case 'windows-1252': - case 'cp1252': - case 'shift_jis': - case 'euc-kr': - case 'big5': - case 'gb2312': - $ret = @mb_convert_encoding($string, 'utf-8', $encoding); - - if (!empty($ret)) - { - return $ret; - } - } - } - - // Try the recode extension - if (function_exists('recode_string')) - { - $ret = @recode_string($encoding . '..utf-8', $string); - - if (!empty($ret)) - { - return $ret; - } - } - - // If nothing works, check if we have a custom transcoder available - if (!preg_match('#^[a-z0-9_ \\-]+$#', $encoding)) - { - // Make sure the encoding name is alphanumeric, we don't want it to be abused into loading arbitrary files - trigger_error('Unknown encoding: ' . $encoding, E_USER_ERROR); - } - - global $phpbb_root_path, $phpEx; - - // iso-8859-* character encoding - if (preg_match('/iso[_ -]?8859[_ -]?(\\d+)/', $encoding, $array)) - { - switch ($array[1]) - { - case '1': - case '2': - case '4': - case '7': - case '8': - case '9': - case '15': - if (!function_exists('iso_8859_' . $array[1])) - { - if (!file_exists($phpbb_root_path . 'includes/utf/data/recode_basic.' . $phpEx)) - { - trigger_error('Basic reencoder file is missing', E_USER_ERROR); - } - include($phpbb_root_path . 'includes/utf/data/recode_basic.' . $phpEx); - } - return call_user_func('iso_8859_' . $array[1], $string); - break; - - default: - trigger_error('Unknown encoding: ' . $encoding, E_USER_ERROR); - break; - } - } - - // CP/WIN character encoding - if (preg_match('/(?:cp|windows)[_\- ]?(\\d+)/', $encoding, $array)) - { - switch ($array[1]) - { - case '932': - break; - case '1250': - case '1251': - case '1252': - case '1254': - case '1255': - case '1256': - case '1257': - case '874': - if (!function_exists('cp' . $array[1])) - { - if (!file_exists($phpbb_root_path . 'includes/utf/data/recode_basic.' . $phpEx)) - { - trigger_error('Basic reencoder file is missing', E_USER_ERROR); - } - include($phpbb_root_path . 'includes/utf/data/recode_basic.' . $phpEx); - } - return call_user_func('cp' . $array[1], $string); - break; - - default: - trigger_error('Unknown encoding: ' . $encoding, E_USER_ERROR); - break; - } - } - - // TIS-620 - if (preg_match('/tis[_ -]?620/', $encoding)) - { - if (!function_exists('tis_620')) - { - if (!file_exists($phpbb_root_path . 'includes/utf/data/recode_basic.' . $phpEx)) - { - trigger_error('Basic reencoder file is missing', E_USER_ERROR); - } - include($phpbb_root_path . 'includes/utf/data/recode_basic.' . $phpEx); - } - return tis_620($string); - } - - // SJIS - if (preg_match('/sjis(?:[_ -]?win)?|(?:cp|ibm)[_ -]?932|shift[_ -]?jis/', $encoding)) - { - if (!function_exists('sjis')) - { - if (!file_exists($phpbb_root_path . 'includes/utf/data/recode_cjk.' . $phpEx)) - { - trigger_error('CJK reencoder file is missing', E_USER_ERROR); - } - include($phpbb_root_path . 'includes/utf/data/recode_cjk.' . $phpEx); - } - return sjis($string); - } - - // EUC_KR - if (preg_match('/euc[_ -]?kr/', $encoding)) - { - if (!function_exists('euc_kr')) - { - if (!file_exists($phpbb_root_path . 'includes/utf/data/recode_cjk.' . $phpEx)) - { - trigger_error('CJK reencoder file is missing', E_USER_ERROR); - } - include($phpbb_root_path . 'includes/utf/data/recode_cjk.' . $phpEx); - } - return euc_kr($string); - } - - // BIG-5 - if (preg_match('/big[_ -]?5/', $encoding)) - { - if (!function_exists('big5')) - { - if (!file_exists($phpbb_root_path . 'includes/utf/data/recode_cjk.' . $phpEx)) - { - trigger_error('CJK reencoder file is missing', E_USER_ERROR); - } - include($phpbb_root_path . 'includes/utf/data/recode_cjk.' . $phpEx); - } - return big5($string); - } - - // GB2312 - if (preg_match('/gb[_ -]?2312/', $encoding)) - { - if (!function_exists('gb2312')) - { - if (!file_exists($phpbb_root_path . 'includes/utf/data/recode_cjk.' . $phpEx)) - { - trigger_error('CJK reencoder file is missing', E_USER_ERROR); - } - include($phpbb_root_path . 'includes/utf/data/recode_cjk.' . $phpEx); - } - return gb2312($string); - } - - // Trigger an error?! Fow now just give bad data :-( - trigger_error('Unknown encoding: ' . $encoding, E_USER_ERROR); - //return $string; // use utf_normalizer::cleanup() ? -} - -/** * Replace all UTF-8 chars that are not in ASCII with their NCR * * @param string $text UTF-8 string in NFC @@ -1827,7 +1602,7 @@ function utf8_clean_string($text) $text = utf8_case_fold_nfkc($text); $text = strtr($text, $homographs); // Other control characters - $text = preg_replace('#(?:[\x00-\x1F\x7F]+|(?:\xC2[\x80-\x9F])+)#', '', $text); + $text = preg_replace('#[\x00-\x1F\x7F]+|(?:\xC2[\x80-\x9F])+#', '', $text); // we need to reduce multiple spaces to a single one $text = preg_replace('# {2,}#', ' ', $text); @@ -1861,7 +1636,7 @@ function utf8_convert_message($message) } // else we need to convert some part of the message - return utf8_htmlspecialchars(utf8_recode($message, 'ISO-8859-1')); + return utf8_htmlspecialchars(utf8_encode($message)); } /** |