Example #1
0
 public function test_collection()
 {
     $collector = new phpbb_error_collector();
     $collector->install();
     // Cause a warning
     1 / 0;
     $line = __LINE__;
     $collector->uninstall();
     list($errno, $msg_text, $errfile, $errline) = $collector->errors[0];
     $error_contents = $collector->format_errors();
     $this->assertEquals($errno, 2);
     // Unfortunately $error_contents will contain the full path here,
     // because the tests directory is outside of phpbb root path.
     $this->assertStringStartsWith('Errno 2: Division by zero at ', $error_contents);
     $this->assertStringEndsWith(" line {$line}", $error_contents);
 }
Example #2
0
    public function __construct()
    {
        global $db, $user, $auth, $cache, $settings, $table_prefix;
        global $quickinstall_path, $phpbb_root_path, $phpEx, $config;
        // include installation functions
        include $quickinstall_path . 'includes/functions_install.' . $phpEx;
        // postgres uses remove_comments function which is defined in functions_admin
        include $phpbb_root_path . 'includes/functions_admin.' . $phpEx;
        if (defined('PHPBB_31')) {
            $config->set('rand_seed', md5(mt_rand()));
            $config->set('rand_seed_last_update', time());
        } else {
            $config = array_merge($config, array('rand_seed' => md5(mt_rand()), 'rand_seed_last_update' => time()));
        }
        // load installer lang
        //		qi::add_lang('phpbb');
        // phpbb's install uses $lang instead of $user->lang
        // need to use $GLOBALS here
        $GLOBALS['lang'] =& $user->lang;
        global $lang;
        // Request some variables that are used several times here.
        $dbms = $settings->get_config('dbms');
        $dbhost = $settings->get_config('dbhost');
        $db_prefix = validate_dbname($settings->get_config('db_prefix'), true);
        $dbname = validate_dbname($settings->get_config('dbname'), true);
        $dbpasswd = $settings->get_config('dbpasswd');
        $dbuser = $settings->get_config('dbuser');
        $site_dir = validate_dbname($settings->get_config('dbname'), true, true);
        $site_name = $settings->get_config('site_name', '', true);
        $site_desc = $settings->get_config('site_desc', '', true);
        $admin_name = $settings->get_config('admin_name', '', true);
        $admin_pass = $settings->get_config('admin_pass', '', true);
        $alt_env = $settings->get_config('alt_env', '');
        $automod = !defined('PHPBB_31') && $settings->get_config('automod', false) ? true : false;
        if ($alt_env !== '' && (!file_exists("{$quickinstall_path}sources/phpBB3_alt/{$alt_env}") || is_file("{$quickinstall_path}sources/phpBB3_alt/{$alt_env}"))) {
            create_board_warning($user->lang['MINOR_MISHAP'], $user->lang['NO_ALT_ENV_FOUND'], 'main');
        }
        if ($automod) {
            $empty = true;
            // There can be '.', '..' and/or '.gitkeep' in the AutoMOD directory.
            $dh = opendir("{$quickinstall_path}sources/automod");
            while (($file = readdir($dh)) !== false) {
                if ($file[0] != '.') {
                    $empty = false;
                    break;
                }
            }
            if ($empty) {
                create_board_warning($user->lang['NO_AUTOMOD_TITLE'], $user->lang['NO_AUTOMOD'], 'main');
            }
        }
        // Set up our basic founder.
        $user->data['user_id'] = 2;
        //
        $user->data['username'] = $admin_name;
        $user->data['user_colour'] = 'AA0000';
        // overwrite some of them ;)
        $user->lang = array_merge($user->lang, array('CONFIG_SITE_DESC' => $site_desc, 'CONFIG_SITENAME' => $site_name));
        // check if we have a board db (and directory) name
        if (!$dbname) {
            create_board_warning($user->lang['GENERAL_ERROR'], $user->lang['NO_DB'], 'main');
        }
        // Set the new board as root path.
        $board_dir = $settings->get_boards_dir() . $site_dir . '/';
        $board_url = $settings->get_boards_url() . $site_dir . '/';
        $phpbb_root_path = $board_dir;
        if (!defined('PHPBB_ROOT_PATH')) {
            define('PHPBB_ROOT_PATH', $board_dir);
        }
        if (file_exists($board_dir)) {
            if ($settings->get_config('delete_files', false)) {
                file_functions::delete_dir($board_dir);
            } else {
                create_board_warning($user->lang['MINOR_MISHAP'], sprintf($user->lang['DIR_EXISTS'], $board_dir), 'main');
            }
        }
        // copy all of our files
        file_functions::copy_dir($quickinstall_path . 'sources/' . ($alt_env === '' ? 'phpBB3/' : "phpBB3_alt/{$alt_env}/"), $board_dir);
        if (!defined('PHPBB_31')) {
            // copy qi's lang file for the log
            $qi_lang = $settings->get_config('qi_lang');
            if (file_exists("{$quickinstall_path}language/{$qi_lang}/info_acp_qi.{$phpEx}") && file_exists("{$board_dir}language/{$qi_lang}")) {
                copy("{$quickinstall_path}language/{$qi_lang}/info_acp_qi.{$phpEx}", "{$board_dir}language/{$qi_lang}/mods/info_acp_qi.{$phpEx}");
            } else {
                copy("{$quickinstall_path}language/en/info_acp_qi.{$phpEx}", "{$board_dir}language/en/mods/info_acp_qi.{$phpEx}");
            }
        }
        if ($dbms == 'sqlite') {
            $dbhost = $dbhost . $db_prefix . $dbname;
        } else {
            if ($dbms == 'firebird') {
                $dbhost = $db_prefix . $dbname;
                // temp remove some
                list($db_prefix, $dbname, $temp1, $temp2) = array('', '', $db_prefix, $dbname);
            }
        }
        // Set the new board as language path to get language files from outside phpBB
        //$user->set_custom_lang_path($phpbb_root_path . 'language/');
        $user->lang_path = $phpbb_root_path . 'language/';
        if (substr($user->lang_path, -1) != '/') {
            $user->lang_path .= '/';
        }
        // Write to config.php ;)
        if (defined('PHPBB_32')) {
            $config_version = '3.2';
        } else {
            if (defined('PHPBB_31')) {
                $config_version = '3.1';
            } else {
                $config_version = '3.0';
            }
        }
        $config_data = "<?php\n";
        $config_data .= "// phpBB {$config_version}.x auto-generated configuration file\n// Do not change anything in this file!\n";
        $config_data_array = array('$dbhost' => $dbhost, '$dbport' => $settings->get_config('dbport'), '$dbname' => $db_prefix . $dbname, '$dbuser' => $dbuser, '$dbpasswd' => htmlspecialchars_decode($dbpasswd), '$table_prefix' => $table_prefix);
        if (defined('PHPBB_31')) {
            $config_data_array['$dbms'] = "phpbb\\\\db\\\\driver\\\\{$dbms}";
            $config_data_array['$acm_type'] = 'phpbb\\\\cache\\\\driver\\\\file';
            $config_data_array['$phpbb_adm_relative_path'] = 'adm/';
        } else {
            $config_data_array['$dbms'] = $dbms;
            $config_data_array['$acm_type'] = 'file';
            $config_data_array['$load_extensions'] = '';
        }
        foreach ($config_data_array as $key => $value) {
            $config_data .= "{$key} = '{$value}';\n";
        }
        unset($config_data_array);
        $config_data .= "\n@define('PHPBB_INSTALLED', true);\n";
        $config_data .= "@define('DEBUG', true);\n";
        if (defined('PHPBB_32')) {
            $config_data .= "@define('PHPBB_ENVIRONMENT', 'production');\n";
        }
        if (defined('PHPBB_31')) {
            $config_data .= "//@define('DEBUG_CONTAINER', true);\n";
            $config_data .= "@define('PHPBB_DISPLAY_LOAD_TIME', true);\n";
        } else {
            $config_data .= "@define('DEBUG_EXTRA', true);\n";
            $config_data .= '?' . '>';
            // Done this to prevent highlighting editors getting confused!
        }
        file_put_contents($board_dir . 'config.' . $phpEx, $config_data);
        if ($dbms == 'firebird') {
            // and now restore
            list($db_prefix, $dbname) = array($temp1, $temp2);
        }
        $db = db_connect();
        if ($settings->get_config('drop_db', 0)) {
            $db->sql_query('DROP DATABASE IF EXISTS ' . $db_prefix . $dbname);
        } else {
            // Check if the database exists.
            if ($dbms == 'sqlite') {
                $db_check = $db->sql_select_db($dbhost);
            } else {
                if ($dbms == 'firebird') {
                    $db_check = $db->sql_select_db($settings->get_cache_dir() . $db_prefix . $dbname);
                } else {
                    if ($dbms == 'postgres') {
                        global $sql_db;
                        $error_collector = new phpbb_error_collector();
                        $error_collector->install();
                        $db_check_conn = new $sql_db();
                        $db_check_conn->sql_connect($dbhost, $dbuser, $dbpasswd, $db_prefix . $dbname, $dbport, false, false);
                        $error_collector->uninstall();
                        $db_check = count($error_collector->errors) == 0;
                    } else {
                        $db_check = $db->sql_select_db($db_prefix . $dbname);
                    }
                }
            }
            if ($db_check) {
                create_board_warning($user->lang['MINOR_MISHAP'], sprintf($user->lang['DB_EXISTS'], $db_prefix . $dbname), 'main');
            }
        }
        if ($dbms == 'sqlite') {
            $db->sql_create_db($dbhost);
            $db->sql_select_db($dbhost);
        } else {
            if ($dbms == 'firebird') {
                $db->sql_query('CREATE DATABASE ' . $settings->get_cache_dir() . $db_prefix . $dbname);
                $db->sql_select_db($settings->get_cache_dir() . $db_prefix . $dbname);
            } else {
                if ($dbms == 'postgres') {
                    global $sql_db;
                    $db->sql_query('CREATE DATABASE ' . $db_prefix . $dbname);
                    $db = new $sql_db();
                    $db->sql_connect($dbhost, $dbuser, $dbpasswd, $db_prefix . $dbname, $dbport, false, false);
                    $db->sql_return_on_error(true);
                } else {
                    $db->sql_query('CREATE DATABASE ' . $db_prefix . $dbname);
                    $db->sql_select_db($db_prefix . $dbname);
                }
            }
        }
        // include install lang from phpbb. But only if it exists
        $default_lang = $settings->get_config('default_lang');
        $selected_lang = $phpbb_root_path . "language/{$default_lang}/";
        if (file_exists($selected_lang)) {
            qi::add_lang('install', $selected_lang);
        } else {
            // Assume that English is always available
            $default_lang = 'en';
            qi::add_lang('install', $phpbb_root_path . 'language/en/');
        }
        // perform sql
        load_schema($phpbb_root_path . 'install/schemas/', $dbms);
        $current_time = time();
        $user_ip = !empty($_SERVER['REMOTE_ADDR']) ? $_SERVER['REMOTE_ADDR'] : '0.0.0.0';
        $user_ip = htmlspecialchars($user_ip);
        $script_path = !empty($_SERVER['PHP_SELF']) ? $_SERVER['PHP_SELF'] : getenv('PHP_SELF');
        if (!$script_path) {
            $script_path = !empty($_SERVER['REQUEST_URI']) ? $_SERVER['REQUEST_URI'] : getenv('REQUEST_URI');
        }
        // Replace backslashes and doubled slashes (could happen on some proxy setups)
        $script_path = trim(dirname($script_path));
        $script_path = str_replace(array('\\', '//'), '/', $script_path);
        // Make sure $script_path ends with a slash (/).
        $script_path = substr($script_path, -1) != '/' ? $script_path . '/' : $script_path;
        $script_path .= $settings->get_boards_dir() . $site_dir . '/';
        $config_ary = array('board_startdate' => $current_time, 'default_lang' => $default_lang, 'server_name' => $settings->get_config('server_name'), 'server_port' => $settings->get_config('server_port', 0), 'board_email' => $settings->get_config('board_email'), 'board_contact' => $settings->get_config('board_email'), 'cookie_domain' => $settings->get_config('cookie_domain'), 'default_dateformat' => $user->lang['default_dateformat'], 'email_enable' => $settings->get_config('email_enable', 0), 'smtp_delivery' => $settings->get_config('smtp_delivery', 0), 'smtp_host' => $settings->get_config('smtp_host'), 'smtp_auth_method' => $settings->get_config('smtp_auth'), 'smtp_username' => $settings->get_config('smtp_user'), 'smtp_port' => $settings->get_config('smtp_port', 0), 'smtp_password' => $settings->get_config('smtp_pass'), 'cookie_secure' => $settings->get_config('cookie_secure', 0), 'script_path' => $script_path, 'server_protocol' => $settings->get_server_protocol(), 'newest_username' => $admin_name, 'avatar_salt' => md5(mt_rand()), 'cookie_name' => 'phpbb3_' . strtolower(gen_rand_string(5)));
        if (defined('PHPBB_31')) {
            $config_ary['board_timezone'] = $settings->get_config('qi_tz', '');
            $tz_data = "user_timezone = '{$config_ary['board_timezone']}'";
        } else {
            $tz = new DateTimeZone($settings->get_config('qi_tz', ''));
            $tz_ary = $tz->getTransitions(time());
            $offset = (double) $tz_ary[0]['offset'] / 3600;
            // 3600 seconds = 1 hour.
            $dst = $tz_ary[0]['isdst'] ? 1 : 0;
            $tz_data = "user_timezone = {$offset}, user_dst = {$dst}";
            $config_ary['user_timezone'] = $offset;
            $config_ary['user_dst'] = $dst;
            unset($tz_ary, $tz, $offset, $dst);
        }
        if (@extension_loaded('gd') || can_load_dll('gd')) {
            $config_ary['captcha_gd'] = 1;
        }
        if (defined('PHPBB_31')) {
            $current_config = $config;
            $config = new \phpbb\config\db($db, $cache, "{$table_prefix}config");
            set_config(false, false, false, $config);
            foreach ($current_config as $key => $value) {
                $config->set($key, $value);
            }
        }
        foreach ($config_ary as $config_name => $config_value) {
            set_config($config_name, $config_value);
        }
        // Set default config and post data, this applies to all DB's
        $sql_ary = array("UPDATE {$table_prefix}users\n\t\t\t\tSET username\t\t= '" . $db->sql_escape($admin_name) . "',\n\t\t\t\t\tuser_password\t= '" . $db->sql_escape(md5($admin_pass)) . "',\n\t\t\t\t\tuser_ip\t\t\t= '" . $db->sql_escape($user_ip) . "',\n\t\t\t\t\tuser_lang\t\t= '" . $db->sql_escape($default_lang) . "',\n\t\t\t\t\tuser_email\t\t= '" . $db->sql_escape($settings->get_config('board_email')) . "',\n\t\t\t\t\tuser_dateformat\t= '" . $db->sql_escape($user->lang['default_dateformat']) . "',\n\t\t\t\t\tuser_email_hash\t= " . (crc32($settings->get_config('board_email')) . strlen($settings->get_config('board_email'))) . ",\n\t\t\t\t\tusername_clean\t= '" . $db->sql_escape(utf8_clean_string($admin_name)) . "',\n\t\t\t\t\t{$tz_data}\n\t\t\t\tWHERE username = '******'", "UPDATE {$table_prefix}moderator_cache\n\t\t\t\tSET username = '******'\n\t\t\t\tWHERE username = '******'", "UPDATE {$table_prefix}forums\n\t\t\t\tSET forum_last_poster_name = '" . $db->sql_escape($admin_name) . "'\n\t\t\t\tWHERE forum_last_poster_name = 'Admin'", "UPDATE {$table_prefix}topics\n\t\t\t\tSET topic_first_poster_name = '" . $db->sql_escape($admin_name) . "', topic_last_poster_name = '" . $db->sql_escape($admin_name) . "'\n\t\t\t\tWHERE topic_first_poster_name = 'Admin'\n\t\t\t\t\tOR topic_last_poster_name = 'Admin'", "UPDATE {$table_prefix}users\n\t\t\t\tSET user_regdate = {$current_time}", "UPDATE {$table_prefix}posts\n\t\t\t\tSET post_time = {$current_time}, poster_ip = '" . $db->sql_escape($user_ip) . "'", "UPDATE {$table_prefix}topics\n\t\t\t\tSET topic_time = {$current_time}, topic_last_post_time = {$current_time}", "UPDATE {$table_prefix}forums\n\t\t\t\tSET forum_last_post_time = {$current_time}", "UPDATE {$table_prefix}config\n\t\t\t\tSET config_value = '" . $db->sql_escape($site_name) . "'\n\t\t\t\tWHERE config_name = 'sitename'", "UPDATE {$table_prefix}config\n\t\t\t\tSET config_value = '" . $db->sql_escape($site_desc) . "'\n\t\t\t\tWHERE config_name = 'site_desc'", "UPDATE {$table_prefix}config\n\t\t\t\tSET config_value = '1'\n\t\t\t\tWHERE config_name = 'load_tplcompile'");
        foreach ($sql_ary as $sql) {
            if (!$db->sql_query($sql)) {
                $error = $db->sql_error();
                trigger_error($error['message']);
            }
        }
        // main sql is done, let's get a fresh $config array
        $sql = 'SELECT *
			FROM ' . CONFIG_TABLE;
        $result = $db->sql_query($sql);
        if (defined('PHPBB_31')) {
            $config = new \phpbb\config\config(array());
        } else {
            $config = array();
        }
        while ($row = $db->sql_fetchrow($result)) {
            $config[$row['config_name']] = $row['config_value'];
        }
        $db->sql_freeresult($result);
        // Set other optional config data.
        // Have it here to not having to do a query for each key
        // to see if it is a update or insert.
        if (($other_config = $settings->get_other_config(true)) != '') {
            foreach ($other_config as $config_row) {
                // First check if this is a comment.
                if (strpos($config_row, '#') === 0) {
                    continue;
                }
                $row_ary = explode(';', $config_row);
                if (empty($row_ary[0]) || empty($row_ary[1])) {
                    continue;
                }
                $config_name = trim($row_ary[0]);
                $config_value = trim($row_ary[1]);
                $is_dynamic = !empty($row_ary[2]) ? 1 : 0;
                $sql_ary = array('config_name' => $config_name, 'config_value' => $config_value, 'is_dynamic' => $is_dynamic);
                if (defined('PHPBB_31') && $config->offsetExists($config_name) || !defined('PHPBB_31') && array_key_exists($config_name, $config)) {
                    $sql = "UPDATE {$table_prefix}config\n\t\t\t\t\t\tSET " . $db->sql_build_array('UPDATE', $sql_ary) . "\n\t\t\t\t\t\tWHERE config_name = '{$config_name}'";
                    if (!$db->sql_query($sql)) {
                        $error = $db->sql_error();
                        trigger_error($error['message']);
                    }
                } else {
                    $sql = "INSERT INTO {$table_prefix}config " . $db->sql_build_array('INSERT', $sql_ary);
                    if (!$db->sql_query($sql)) {
                        $error = $db->sql_error();
                        trigger_error($error['message']);
                    }
                }
                // Update the config array.
                $config[$config_name] = $config_value;
            }
            unset($other_config);
        }
        // no templates though :P
        $config['load_tplcompile'] = '1';
        // build search index
        if (defined('PHPBB_31')) {
            $search = new \phpbb\search\fulltext_native($error = false, $phpbb_root_path, $phpEx, $auth, $config, $db, $user, null);
        } else {
            if (!class_exists('fulltext_native')) {
                include_once $phpbb_root_path . 'includes/search/fulltext_native.' . $phpEx;
            }
            $search = new fulltext_native($error = false);
        }
        $sql = 'SELECT post_id, post_subject, post_text, poster_id, forum_id
			FROM ' . POSTS_TABLE;
        $result = $db->sql_query($sql);
        while ($row = $db->sql_fetchrow($result)) {
            $search->index('post', $row['post_id'], $row['post_text'], $row['post_subject'], $row['poster_id'], $row['forum_id']);
        }
        $db->sql_freeresult($result);
        // extended phpbb install script
        if (!defined('PHPBB_32')) {
            include $phpbb_root_path . 'install/install_install.' . $phpEx;
            include $quickinstall_path . 'includes/install_install_qi.' . $phpEx;
        }
        if (defined('PHPBB_32')) {
            $container_builder = new \phpbb\di\container_builder($phpbb_root_path, $phpEx);
            $container = $container_builder->with_environment('installer')->without_extensions()->without_cache()->with_custom_parameters(['core.disable_super_globals' => false, 'installer.create_config_file.options' => ['debug' => true, 'environment' => 'production'], 'cache.driver.class' => 'phpbb\\cache\\driver\\file'])->without_compiled_container()->get_container();
            $container->register('installer.install_finish.notify_user')->setSynthetic(true);
            $container->set('installer.install_finish.notify_user', null);
            $container->compile();
            $language = $container->get('language');
            $language->add_lang(array('common', 'acp/common', 'acp/board', 'install', 'posting'));
            $iohandler_factory = $container->get('installer.helper.iohandler_factory');
            $iohandler_factory->set_environment('cli');
            $iohandler = $iohandler_factory->get();
            $output = new \Symfony\Component\Console\Output\NullOutput();
            $style = new \Symfony\Component\Console\Style\SymfonyStyle(new \Symfony\Component\Console\Input\ArrayInput(array()), $output);
            $iohandler->set_style($style, $output);
            $installer = $container->get('installer.installer.install');
            $installer->set_iohandler($iohandler);
            // Set data
            $iohandler->set_input('admin_name', $admin_name);
            $iohandler->set_input('admin_pass1', $admin_pass);
            $iohandler->set_input('admin_pass2', $admin_pass);
            $iohandler->set_input('board_email', $settings->get_config('board_email'));
            $iohandler->set_input('submit_admin', 'submit');
            $iohandler->set_input('default_lang', $default_lang);
            $iohandler->set_input('board_name', $site_name);
            $iohandler->set_input('board_description', $site_desc);
            $iohandler->set_input('submit_board', 'submit');
            $iohandler->set_input('dbms', $dbms);
            $iohandler->set_input('dbhost', $dbhost);
            $iohandler->set_input('dbport', $settings->get_config('dbport'));
            $iohandler->set_input('dbuser', $dbuser);
            $iohandler->set_input('dbpasswd', $dbpasswd);
            $iohandler->set_input('dbname', $dbname);
            $iohandler->set_input('table_prefix', $table_prefix);
            $iohandler->set_input('submit_database', 'submit');
            $iohandler->set_input('email_enable', $settings->get_config('email_enable', 0));
            $iohandler->set_input('smtp_delivery', $settings->get_config('smtp_delivery', 0));
            $iohandler->set_input('smtp_host', $settings->get_config('smtp_host'));
            $iohandler->set_input('smtp_auth', $settings->get_config('smtp_auth'));
            $iohandler->set_input('smtp_user', $settings->get_config('smtp_user'));
            $iohandler->set_input('smtp_pass', $settings->get_config('smtp_pass'));
            $iohandler->set_input('submit_email', 'submit');
            $iohandler->set_input('cookie_secure', $settings->get_config('cookie_secure', 0));
            $iohandler->set_input('server_protocol', $settings->get_server_protocol());
            $iohandler->set_input('force_server_vars', 'http://');
            $iohandler->set_input('server_name', $settings->get_config('server_name'));
            $iohandler->set_input('server_port', $settings->get_config('server_port'));
            $iohandler->set_input('script_path', $script_path);
            $iohandler->set_input('submit_server', 'submit');
            // Update the lang array with keys loaded for the installer
            $user->lang = array_merge($user->lang, $language->get_lang_array());
            // Storing the db and user objects temporarily because they
            // are altered by the installer processes below...not sure why?
            $current_user = $user;
            $current_db = $db;
            // Suppress errors because constants.php is added again in these objects
            // leading to debug notices about the constants already being defined.
            @$container->get('installer.install_finish.populate_migrations')->run();
            @$container->get('installer.install_data.add_modules')->run();
            @$container->get('installer.install_data.add_languages')->run();
            @$container->get('installer.install_data.add_bots')->run();
            $container->reset();
            // Set some services in the container that may be needed later
            global $phpbb_container, $phpbb_log, $phpbb_dispatcher, $request, $passwords_manager;
            global $symfony_request, $phpbb_filesystem;
            $phpbb_container = $container->get('installer.helper.container_factory');
            $phpbb_dispatcher = $phpbb_container->get('dispatcher');
            $phpbb_log = $phpbb_container->get('log');
            $request = $phpbb_container->get('request');
            $request->enable_super_globals();
            $passwords_manager = $phpbb_container->get('passwords.manager');
            $symfony_request = $phpbb_container->get('symfony_request');
            $phpbb_filesystem = $phpbb_container->get('filesystem');
            // Restore user and db objects to original state
            $user = $current_user;
            $db = $current_db;
            unset($current_user, $current_db);
        } else {
            if (defined('PHPBB_31')) {
                global $phpbb_container, $phpbb_config_php_file, $phpbb_log, $phpbb_dispatcher, $request, $passwords_manager;
                global $symfony_request, $phpbb_filesystem;
                $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_inject_config(false);
                $phpbb_container_builder->set_dump_container(false);
                $phpbb_container_builder->set_use_extensions(false);
                $phpbb_container_builder->set_compile_container(false);
                $phpbb_container_builder->set_custom_parameters(array('core.table_prefix' => $table_prefix, 'core.root_path' => $phpbb_root_path, 'core.php_ext' => $phpEx, 'core.adm_relative_path' => 'adm/'));
                $phpbb_container = $phpbb_container_builder->get_container();
                $phpbb_container->register('dbal.conn')->setSynthetic(true);
                $phpbb_container->register('dbal.conn.driver')->setSynthetic(true);
                $phpbb_container->register('cache.driver')->setSynthetic(true);
                $phpbb_container->register('cache')->setSynthetic(true);
                $phpbb_container->register('auth')->setSynthetic(true);
                $phpbb_container->register('user')->setSynthetic(true);
                $phpbb_container->compile();
                $phpbb_container->set('dbal.conn', $db);
                $phpbb_container->set('cache.driver', $cache);
                $phpbb_container->set('user', $user);
                $phpbb_container->set('auth', $auth);
                $cache = new \phpbb\cache\service($cache, $config, $db, $phpbb_root_path, $phpEx);
                $phpbb_container->set('cache', $cache);
                $phpbb_dispatcher = $phpbb_container->get('dispatcher');
                $phpbb_log = $phpbb_container->get('log');
                $request = $phpbb_container->get('request');
                $request->enable_super_globals();
                $passwords_manager = $phpbb_container->get('passwords.manager');
                $symfony_request = $phpbb_container->get('symfony_request');
                $phpbb_filesystem = $phpbb_container->get('filesystem');
                // Populate migrations table.
                $install = new install_install($p_master = new p_master_dummy());
                $install->populate_migrations($phpbb_container->get('ext.manager'), $phpbb_container->get('migrator'));
                unset($install);
            }
        }
        if (!defined('PHPBB_32')) {
            $install = new install_install_qi($p_master = new p_master_dummy());
            $install->set_data(array('dbms' => $dbms, 'dbhost' => $dbhost, 'dbport' => $settings->get_config('dbport'), 'dbuser' => $dbuser, 'dbpasswd' => $dbpasswd, 'dbname' => $dbname, 'table_prefix' => $table_prefix, 'default_lang' => $default_lang, 'admin_name' => $admin_name, 'admin_pass1' => $admin_pass, 'admin_pass2' => $admin_pass, 'board_email1' => $settings->get_config('board_email'), 'board_email2' => $settings->get_config('board_email'), 'email_enable' => $settings->get_config('email_enable', 0), 'smtp_delivery' => $settings->get_config('smtp_delivery', 0), 'smtp_host' => $settings->get_config('smtp_host'), 'smtp_auth' => $settings->get_config('smtp_auth'), 'smtp_user' => $settings->get_config('smtp_user'), 'smtp_pass' => $settings->get_config('smtp_pass'), 'cookie_secure' => $settings->get_config('cookie_secure', 0), 'server_protocol' => $settings->get_server_protocol(), 'server_name' => $settings->get_config('server_name'), 'server_port' => $settings->get_config('server_port'), 'script_path' => $script_path));
            $install->add_modules(false, false);
            $install->add_language(false, false);
            $install->add_bots(false, false);
        }
        // now automod (easymod)
        if ($automod && !defined('PHPBB_31')) {
            include $quickinstall_path . 'includes/functions_install_automod.' . $phpEx;
            automod_installer::install_automod($board_dir, $settings->get_config('make_writable', false));
        }
        if ($dbms == 'firebird') {
            // copy the temp db over
            file_functions::copy_file($settings->get_cache_dir() . $db_prefix . $dbname, $board_dir . $db_prefix . $dbname);
            $db->sql_select_db($board_dir . $db_prefix . $dbname);
        }
        // clean up
        file_functions::delete_files($board_dir, array('Thumbs.db', 'DS_Store', 'CVS', '.svn', '.git'));
        // remove install dir, develop and umil
        file_functions::delete_dir($board_dir . 'install/');
        file_functions::delete_dir($board_dir . 'develop/');
        file_functions::delete_dir($board_dir . 'umil/');
        // copy extra user added files
        file_functions::copy_dir($quickinstall_path . 'sources/extra/', $board_dir);
        // Install styles
        if (($install_styles = $settings->get_config('install_styles', 0)) != 0) {
            include $phpbb_root_path . 'includes/acp/acp_styles.' . $phpEx;
            if (!class_exists('bitfield')) {
                include $phpbb_root_path . 'includes/functions_content.' . $phpEx;
            }
            if (defined('PHPBB_31')) {
                include $quickinstall_path . 'includes/class_31_styles.' . $phpEx;
                new class_31_styles($install_styles);
            } else {
                include $quickinstall_path . 'includes/class_30_styles.' . $phpEx;
                new class_30_styles($install_styles);
            }
        }
        // Add some random users and posts. Revisit.
        if ($settings->get_config('populate', false)) {
            include $quickinstall_path . 'includes/functions_populate.' . $phpEx;
            new populate();
        }
        // add log entry :D
        $user->ip =& $user_ip;
        if (defined('PHPBB_31')) {
            add_log('admin', sprintf($user->lang['LOG_INSTALL_INSTALLED_QI'], QI_VERSION));
        } else {
            add_log('admin', 'LOG_INSTALL_INSTALLED_QI', QI_VERSION);
        }
        // purge cache
        $cache->purge();
        // Make all files world writable.
        if ($settings->get_config('make_writable', false)) {
            file_functions::make_writable($board_dir);
        }
        // Grant additional permissions
        if (($grant_permissions = octdec($settings->get_config('grant_permissions', 0))) != 0) {
            file_functions::grant_permissions($board_dir, $grant_permissions);
        }
        // if he/she wants to be redirected, we'll do that.
        if ($settings->get_config('redirect', false)) {
            // Log him/her in first.
            $user->session_begin();
            $auth->login($admin_name, $settings->get_config('admin_pass'), false, true, true);
            qi::redirect($board_url);
        }
        // On succces just return to main page.
        qi::redirect('index.' . $phpEx);
    }
/**
* Wrapper for sending out emails with the PHP's mail function
*/
function phpbb_mail($to, $subject, $msg, $headers, $eol, &$err_msg)
{
    global $config, $phpbb_root_path, $phpEx;
    // We use the EOL character for the OS here because the PHP mail function does not correctly transform line endings. On Windows SMTP is used (SMTP is \r\n), on UNIX a command is used...
    // Reference: http://bugs.php.net/bug.php?id=15841
    $headers = implode($eol, $headers);
    if (!class_exists('phpbb_error_collector')) {
        include $phpbb_root_path . 'includes/error_collector.' . $phpEx;
    }
    $collector = new phpbb_error_collector();
    $collector->install();
    // On some PHP Versions mail() *may* fail if there are newlines within the subject.
    // Newlines are used as a delimiter for lines in mail_encode() according to RFC 2045 section 6.8.
    // Because PHP can't decide what is wanted we revert back to the non-RFC-compliant way of separating by one space (Use '' as parameter to mail_encode() results in SPACE used)
    $result = $config['email_function_name']($to, mail_encode($subject, ''), wordwrap(utf8_wordwrap($msg), 997, "\n", true), $headers);
    $collector->uninstall();
    $err_msg = $collector->format_errors();
    return $result;
}
Example #4
0
 /**
  * Connect to server
  */
 function sql_connect($sqlserver, $sqluser, $sqlpassword, $database, $port = false, $persistency = false, $new_link = false)
 {
     $connect_string = '';
     if ($sqluser) {
         $connect_string .= "user={$sqluser} ";
     }
     if ($sqlpassword) {
         $connect_string .= "password={$sqlpassword} ";
     }
     if ($sqlserver) {
         // $sqlserver can carry a port separated by : for compatibility reasons
         // If $sqlserver has more than one : it's probably an IPv6 address.
         // In this case we only allow passing a port via the $port variable.
         if (substr_count($sqlserver, ':') === 1) {
             list($sqlserver, $port) = explode(':', $sqlserver);
         }
         if ($sqlserver !== 'localhost') {
             $connect_string .= "host={$sqlserver} ";
         }
         if ($port) {
             $connect_string .= "port={$port} ";
         }
     }
     $schema = '';
     if ($database) {
         $this->dbname = $database;
         if (strpos($database, '.') !== false) {
             list($database, $schema) = explode('.', $database);
         }
         $connect_string .= "dbname={$database}";
     }
     $this->persistency = $persistency;
     if ($this->persistency) {
         if (!function_exists('pg_pconnect')) {
             $this->connect_error = 'pg_pconnect function does not exist, is pgsql extension installed?';
             return $this->sql_error('');
         }
         $collector = new phpbb_error_collector();
         $collector->install();
         $this->db_connect_id = !$new_link ? @pg_pconnect($connect_string) : @pg_pconnect($connect_string, PGSQL_CONNECT_FORCE_NEW);
     } else {
         if (!function_exists('pg_connect')) {
             $this->connect_error = 'pg_connect function does not exist, is pgsql extension installed?';
             return $this->sql_error('');
         }
         $collector = new phpbb_error_collector();
         $collector->install();
         $this->db_connect_id = !$new_link ? @pg_connect($connect_string) : @pg_connect($connect_string, PGSQL_CONNECT_FORCE_NEW);
     }
     $collector->uninstall();
     if ($this->db_connect_id) {
         if (version_compare($this->sql_server_info(true), '8.2', '>=')) {
             $this->multi_insert = true;
         }
         if ($schema !== '') {
             @pg_query($this->db_connect_id, 'SET search_path TO ' . $schema);
         }
         return $this->db_connect_id;
     }
     $this->connect_error = $collector->format_errors();
     return $this->sql_error('');
 }