diff options
Diffstat (limited to 'phpBB/install/index.php')
| -rw-r--r-- | phpBB/install/index.php | 227 | 
1 files changed, 165 insertions, 62 deletions
diff --git a/phpBB/install/index.php b/phpBB/install/index.php index 35e7c70e1d..5c16421499 100644 --- a/phpBB/install/index.php +++ b/phpBB/install/index.php @@ -1,10 +1,13 @@  <?php  /**  * -* @package install -* @version $Id$ -* @copyright (c) 2005 phpBB Group -* @license http://opensource.org/licenses/gpl-license.php GNU Public License +* This file is part of the phpBB Forum Software package. +* +* @copyright (c) phpBB Limited <https://www.phpbb.com> +* @license GNU General Public License, version 2 (GPL-2.0) +* +* For full copyright and license information, please see +* the docs/CREDITS.txt file.  *  */ @@ -18,15 +21,14 @@ define('IN_INSTALL', true);  $phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './../';  $phpEx = substr(strrchr(__FILE__, '.'), 1); -// @todo Review this test and see if we can find out what it is which prevents PHP 4.2.x from even displaying the page with requirements on it -if (version_compare(PHP_VERSION, '4.3.3') < 0) +if (version_compare(PHP_VERSION, '5.3.3') < 0)  { -	die('You are running an unsupported PHP version. Please upgrade to PHP 4.3.3 or higher before trying to install phpBB 3.0'); +	die('You are running an unsupported PHP version. Please upgrade to PHP 5.3.3 or higher before trying to install phpBB 3.1');  }  function phpbb_require_updated($path, $optional = false)  { -	global $phpbb_root_path; +	global $phpbb_root_path, $table_prefix;  	$new_path = $phpbb_root_path . 'install/update/new/' . $path;  	$old_path = $phpbb_root_path . $path; @@ -41,6 +43,23 @@ function phpbb_require_updated($path, $optional = false)  	}  } +function phpbb_include_updated($path, $optional = false) +{ +	global $phpbb_root_path; + +	$new_path = $phpbb_root_path . 'install/update/new/' . $path; +	$old_path = $phpbb_root_path . $path; + +	if (file_exists($new_path)) +	{ +		include($new_path); +	} +	else if (!$optional || file_exists($old_path)) +	{ +		include($old_path); +	} +} +  phpbb_require_updated('includes/startup.' . $phpEx);  // Try to override some limits - maybe it helps some... @@ -71,26 +90,70 @@ else  }  @ini_set('memory_limit', $mem_limit); +// In case $phpbb_adm_relative_path is not set (in case of an update), use the default. +$phpbb_adm_relative_path = (isset($phpbb_adm_relative_path)) ? $phpbb_adm_relative_path : 'adm/'; +$phpbb_admin_path = (defined('PHPBB_ADMIN_PATH')) ? PHPBB_ADMIN_PATH : $phpbb_root_path . $phpbb_adm_relative_path; +  // Include essential scripts -require($phpbb_root_path . 'includes/functions.' . $phpEx); +phpbb_require_updated('phpbb/class_loader.' . $phpEx); + +phpbb_require_updated('includes/functions.' . $phpEx);  phpbb_require_updated('includes/functions_content.' . $phpEx, true); -include($phpbb_root_path . 'includes/auth.' . $phpEx); -include($phpbb_root_path . 'includes/session.' . $phpEx); -include($phpbb_root_path . 'includes/template.' . $phpEx); -include($phpbb_root_path . 'includes/acm/acm_file.' . $phpEx); -include($phpbb_root_path . 'includes/cache.' . $phpEx); -include($phpbb_root_path . 'includes/functions_admin.' . $phpEx); -include($phpbb_root_path . 'includes/utf/utf_tools.' . $phpEx); -require($phpbb_root_path . 'includes/functions_install.' . $phpEx); +phpbb_include_updated('includes/functions_admin.' . $phpEx); +phpbb_include_updated('includes/utf/utf_normalizer.' . $phpEx); +phpbb_include_updated('includes/utf/utf_tools.' . $phpEx); +phpbb_require_updated('includes/functions_install.' . $phpEx); + +// Setup class loader first +$phpbb_class_loader_new = new \phpbb\class_loader('phpbb\\', "{$phpbb_root_path}install/update/new/phpbb/", $phpEx); +$phpbb_class_loader_new->register(); +$phpbb_class_loader = new \phpbb\class_loader('phpbb\\', "{$phpbb_root_path}phpbb/", $phpEx); +$phpbb_class_loader->register(); +$phpbb_class_loader_ext = new \phpbb\class_loader('\\', "{$phpbb_root_path}ext/", $phpEx); +$phpbb_class_loader_ext->register(); + +// Set up container +$phpbb_config_php_file = new \phpbb\config_php_file($phpbb_root_path, $phpEx); +$phpbb_container_builder = new \phpbb\di\container_builder($phpbb_config_php_file, $phpbb_root_path, $phpEx); +$phpbb_container_builder->set_use_extensions(false); +$phpbb_container_builder->set_dump_container(false); +$phpbb_container_builder->set_use_custom_pass(false); +$phpbb_container_builder->set_inject_config(false); +$phpbb_container_builder->set_compile_container(false); + +$other_config_path = $phpbb_root_path . 'install/update/new/config/'; +$config_path = file_exists($other_config_path . 'services.yml') ? $other_config_path : $phpbb_root_path . 'config/'; +$phpbb_container_builder->set_config_path($config_path); + +$phpbb_container_builder->set_custom_parameters(array( +	'core.root_path'			=> $phpbb_root_path, +	'core.adm_relative_path'	=> $phpbb_adm_relative_path, +	'core.php_ext'				=> $phpEx, +	'core.table_prefix'			=> '', +	'cache.driver.class'		=> 'phpbb\cache\driver\file', +)); + +$phpbb_container = $phpbb_container_builder->get_container(); +$phpbb_container->register('dbal.conn.driver')->setSynthetic(true); +$phpbb_container->compile(); + +$phpbb_class_loader->set_cache($phpbb_container->get('cache.driver')); +$phpbb_class_loader_ext->set_cache($phpbb_container->get('cache.driver')); + +$phpbb_dispatcher = $phpbb_container->get('dispatcher'); +$request	= $phpbb_container->get('request'); + +// make sure request_var uses this request instance +request_var('', 0, false, false, $request); // "dependency injection" for a function  // Try and load an appropriate language if required -$language = basename(request_var('language', '')); +$language = basename($request->variable('language', '')); -if (!empty($_SERVER['HTTP_ACCEPT_LANGUAGE']) && !$language) +if ($request->header('Accept-Language') && !$language)  { -	$accept_lang_ary = explode(',', strtolower($_SERVER['HTTP_ACCEPT_LANGUAGE'])); +	$accept_lang_ary = explode(',', strtolower($request->header('Accept-Language')));  	foreach ($accept_lang_ary as $accept_lang)  	{  		// Set correct format ... guess full xx_yy form @@ -145,11 +208,23 @@ if (!file_exists($phpbb_root_path . 'language/' . $language) || !is_dir($phpbb_r  }  // And finally, load the relevant language files -include($phpbb_root_path . 'language/' . $language . '/common.' . $phpEx); -include($phpbb_root_path . 'language/' . $language . '/acp/common.' . $phpEx); -include($phpbb_root_path . 'language/' . $language . '/acp/board.' . $phpEx); -include($phpbb_root_path . 'language/' . $language . '/install.' . $phpEx); -include($phpbb_root_path . 'language/' . $language . '/posting.' . $phpEx); +$load_lang_files = array('common', 'acp/common', 'acp/board', 'install', 'posting'); +$new_path = $phpbb_root_path . 'install/update/new/language/' . $language . '/'; +$old_path = $phpbb_root_path . 'language/' . $language . '/'; + +// NOTE: we can not use "phpbb_include_updated" as the files uses vars which would be required +// to be global while loading. +foreach ($load_lang_files as $lang_file) +{ +	if (file_exists($new_path . $lang_file . '.' . $phpEx)) +	{ +		include($new_path . $lang_file . '.' . $phpEx); +	} +	else +	{ +		include($old_path . $lang_file . '.' . $phpEx); +	} +}  // usually we would need every single constant here - and it would be consistent. For 3.0.x, use a dirty hack... :( @@ -159,16 +234,14 @@ define('CHMOD_READ', 4);  define('CHMOD_WRITE', 2);  define('CHMOD_EXECUTE', 1); -$mode = request_var('mode', 'overview'); -$sub = request_var('sub', ''); +$mode = $request->variable('mode', 'overview'); +$sub = $request->variable('sub', '');  // Set PHP error handler to ours  set_error_handler(defined('PHPBB_MSG_HANDLER') ? PHPBB_MSG_HANDLER : 'msg_handler'); -$user = new user(); -$auth = new auth(); -$cache = new cache(); -$template = new template(); +$user = new \phpbb\user('\phpbb\datetime'); +$auth = new \phpbb\auth\auth();  // Add own hook handler, if present. :o  if (file_exists($phpbb_root_path . 'includes/hooks/index.' . $phpEx)) @@ -176,7 +249,8 @@ if (file_exists($phpbb_root_path . 'includes/hooks/index.' . $phpEx))  	require($phpbb_root_path . 'includes/hooks/index.' . $phpEx);  	$phpbb_hook = new phpbb_hook(array('exit_handler', 'phpbb_user_session_handler', 'append_sid', array('template', 'display'))); -	foreach ($cache->obtain_hooks() as $hook) +	$phpbb_hook_finder = $phpbb_container->get('hook_finder'); +	foreach ($phpbb_hook_finder->find() as $hook)  	{  		@include($phpbb_root_path . 'includes/hooks/' . $hook . '.' . $phpEx);  	} @@ -187,15 +261,27 @@ else  }  // Set some standard variables we want to force -$config = array( +$config = new \phpbb\config\config(array(  	'load_tplcompile'	=> '1' -); - -$template->set_custom_template('../adm/style', 'admin'); -$template->assign_var('T_TEMPLATE_PATH', '../adm/style'); - -// the acp template is never stored in the database -$user->theme['template_storedb'] = false; +)); + +$symfony_request = $phpbb_container->get('symfony_request'); +$phpbb_filesystem = $phpbb_container->get('filesystem'); +$phpbb_path_helper = $phpbb_container->get('path_helper'); +$template = new \phpbb\template\twig\twig($phpbb_path_helper, $config, $user, new \phpbb\template\context()); +$paths = array($phpbb_root_path . 'install/update/new/adm/style', $phpbb_admin_path . 'style'); +$paths = array_filter($paths, 'is_dir'); +$template->set_custom_style(array( +	array( +		'name' 		=> 'adm', +		'ext_path' 	=> 'adm/style/', +	), +), $paths); + +$path = array_shift($paths); + +$template->assign_var('T_ASSETS_PATH', $path . '/../../assets'); +$template->assign_var('T_TEMPLATE_PATH', $path);  $install = new module(); @@ -212,9 +298,6 @@ $template->set_filenames(array(  $install->page_footer(); -/** -* @package install -*/  class module  {  	var $id = 0; @@ -339,15 +422,17 @@ class module  		}  		define('HEADER_INC', true); -		global $template, $lang, $stage, $phpbb_root_path; +		global $template, $lang, $stage, $phpbb_admin_path, $path;  		$template->assign_vars(array(  			'L_CHANGE'				=> $lang['CHANGE'], +			'L_COLON'				=> $lang['COLON'],  			'L_INSTALL_PANEL'		=> $lang['INSTALL_PANEL'],  			'L_SELECT_LANG'			=> $lang['SELECT_LANG'],  			'L_SKIP'				=> $lang['SKIP'],  			'PAGE_TITLE'			=> $this->get_page_title(), -			'T_IMAGE_PATH'			=> $phpbb_root_path . 'adm/images/', +			'T_IMAGE_PATH'			=> htmlspecialchars($phpbb_admin_path) . 'images/', +			'T_JQUERY_LINK'			=> $path . '/../../assets/javascript/jquery.min.js',  			'S_CONTENT_DIRECTION' 	=> $lang['DIRECTION'],  			'S_CONTENT_FLOW_BEGIN'	=> ($lang['DIRECTION'] == 'ltr') ? 'left' : 'right', @@ -360,8 +445,7 @@ class module  		header('Content-type: text/html; charset=UTF-8');  		header('Cache-Control: private, no-cache="set-cookie"'); -		header('Expires: 0'); -		header('Pragma: no-cache'); +		header('Expires: ' . gmdate('D, d M Y H:i:s', time()) . ' GMT');  		return;  	} @@ -417,15 +501,17 @@ class module  	*/  	function redirect($page)  	{ +		global $request; +  		// HTTP_HOST is having the correct browser url in most cases... -		$server_name = (!empty($_SERVER['HTTP_HOST'])) ? strtolower($_SERVER['HTTP_HOST']) : ((!empty($_SERVER['SERVER_NAME'])) ? $_SERVER['SERVER_NAME'] : getenv('SERVER_NAME')); -		$server_port = (!empty($_SERVER['SERVER_PORT'])) ? (int) $_SERVER['SERVER_PORT'] : (int) getenv('SERVER_PORT'); -		$secure = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') ? 1 : 0; +		$server_name = strtolower(htmlspecialchars_decode($request->header('Host', $request->server('SERVER_NAME')))); +		$server_port = $request->server('SERVER_PORT', 0); +		$secure = $request->is_secure() ? 1 : 0; -		$script_name = (!empty($_SERVER['PHP_SELF'])) ? $_SERVER['PHP_SELF'] : getenv('PHP_SELF'); +		$script_name = htmlspecialchars_decode($request->server('PHP_SELF'));  		if (!$script_name)  		{ -			$script_name = (!empty($_SERVER['REQUEST_URI'])) ? $_SERVER['REQUEST_URI'] : getenv('REQUEST_URI'); +			$script_name = htmlspecialchars_decode($request->server('REQUEST_URI'));  		}  		// Replace backslashes and doubled slashes (could happen on some proxy setups) @@ -526,7 +612,7 @@ class module  	*/  	function error($error, $line, $file, $skip = false)  	{ -		global $lang, $db, $template; +		global $lang, $db, $template, $phpbb_admin_path;  		if ($skip)  		{ @@ -543,12 +629,12 @@ class module  			return;  		} -		echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">'; -		echo '<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr">'; +		echo '<!DOCTYPE html>'; +		echo '<html dir="ltr">';  		echo '<head>'; -		echo '<meta http-equiv="content-type" content="text/html; charset=utf-8" />'; +		echo '<meta charset="utf-8">';  		echo '<title>' . $lang['INST_ERR_FATAL'] . '</title>'; -		echo '<link href="../adm/style/admin.css" rel="stylesheet" type="text/css" media="screen" />'; +		echo '<link href="' . htmlspecialchars($phpbb_admin_path) . 'style/admin.css" rel="stylesheet" type="text/css" media="screen" />';  		echo '</head>';  		echo '<body id="errorpage">';  		echo '<div id="wrap">'; @@ -569,7 +655,7 @@ class module  		echo '		</div>';  		echo '	</div>';  		echo '	<div id="page-footer">'; -		echo '		Powered by <a href="https://www.phpbb.com/">phpBB</a>® Forum Software © phpBB Group'; +		echo '		Powered by <a href="https://www.phpbb.com/">phpBB</a>® Forum Software © phpBB Limited';  		echo '	</div>';  		echo '</div>';  		echo '</body>'; @@ -618,7 +704,7 @@ class module  		));  		// Rollback if in transaction -		if ($db->transaction) +		if ($db->get_transaction())  		{  			$db->sql_transaction('rollback');  		} @@ -629,7 +715,7 @@ class module  	/**  	* Generate the relevant HTML for an input field and the associated label and explanatory text  	*/ -	function input_field($name, $type, $value='', $options='') +	function input_field($name, $type, $value = '', $options = '')  	{  		global $lang;  		$tpl_type = explode(':', $type); @@ -639,6 +725,21 @@ class module  		{  			case 'text':  			case 'password': +			// HTML5 text-like input types +			case 'color': +			case 'date': +			case 'time': +			case 'datetime': +			case 'datetime-local': +			case 'email': +			case 'month': +			case 'number': +			case 'range': +			case 'search': +			case 'tel': +			case 'url': +			case 'week': +  				$size = (int) $tpl_type[1];  				$maxlength = (int) $tpl_type[2];  				$autocomplete = (isset($options['autocomplete']) && $options['autocomplete'] == 'off') ? ' autocomplete="off"' : ''; @@ -667,12 +768,16 @@ class module  			break;  			case 'select': +				// @codingStandardsIgnoreStart  				eval('$s_options = ' . str_replace('{VALUE}', $value, $options) . ';'); +				// @codingStandardsIgnoreEnd  				$tpl = '<select id="' . $name . '" name="' . $name . '">' . $s_options . '</select>';  			break;  			case 'custom': +				// @codingStandardsIgnoreStart  				eval('$tpl = ' . str_replace('{VALUE}', $value, $options) . ';'); +				// @codingStandardsIgnoreEnd  			break;  			default: @@ -726,5 +831,3 @@ class module  		return $user_select;  	}  } - -?>
\ No newline at end of file  | 
