Portions created by the Initial Developer are Copyright (C) 2008-2023 the Initial Developer. All Rights Reserved. Contributor(s): Mark J Crane */ //add the document root to the include path $config_glob = glob("{/usr/local/etc,/etc}/fusionpbx/config.conf", GLOB_BRACE); if (is_array($config_glob) && count($config_glob) > 0) { $config_glob = glob("{/usr/local/etc,/etc}/fusionpbx/config.conf", GLOB_BRACE); $conf = parse_ini_file($config_glob[0]); set_include_path($conf['document.root']); } else { //include the config.php $config_php_glob = glob("{/usr/local/etc,/etc}/fusionpbx/config.php", GLOB_BRACE); include($config_php_glob[0]); //set the default config file location if (stristr(PHP_OS, 'BSD')) { $config_path = '/usr/local/etc/fusionpbx'; $config_file = $config_path.'/config.conf'; $document_root = '/usr/local/www/fusionpbx'; $conf_dir = '/usr/local/etc/freeswitch'; $sounds_dir = '/usr/share/freeswitch/sounds'; $database_dir = '/var/lib/freeswitch/db'; $recordings_dir = '/var/lib/freeswitch/recordings'; $storage_dir = '/var/lib/freeswitch/storage'; $voicemail_dir = '/var/lib/freeswitch/storage/voicemail'; $scripts_dir = '/usr/share/freeswitch/scripts'; } if (stristr(PHP_OS, 'Linux')) { $config_path = '/etc/fusionpbx/'; $config_file = $config_path.'/config.conf'; $document_root = '/var/www/fusionpbx'; $conf_dir = '/etc/freeswitch'; $sounds_dir = '/usr/share/freeswitch/sounds'; $database_dir = '/var/lib/freeswitch/db'; $recordings_dir = '/var/lib/freeswitch/recordings'; $storage_dir = '/var/lib/freeswitch/storage'; $voicemail_dir = '/var/lib/freeswitch/storage/voicemail'; $scripts_dir = '/usr/share/freeswitch/scripts'; } //make the config directory if (isset($config_path)) { system('mkdir -p '.$config_path); } else { echo "config directory not found\n"; exit; } //build the config file $conf = "\n"; $conf .= "#database system settings\n"; $conf .= "database.0.type = ".$db_type."\n"; $conf .= "database.0.host = ".$db_host."\n"; $conf .= "database.0.port = ".$db_port."\n"; $conf .= "database.0.sslmode = prefer\n"; $conf .= "database.0.name = ".$db_name."\n"; $conf .= "database.0.username = ".$db_username."\n"; $conf .= "database.0.password = ".$db_password."\n"; $conf .= "\n"; $conf .= "#database switch settings\n"; $conf .= "database.1.type = sqlite\n"; $conf .= "database.1.path = ".$database_dir."\n"; $conf .= "database.1.name = core.db\n"; $conf .= "\n"; $conf .= "#general settings\n"; $conf .= "document.root = ".$document_root."\n"; $conf .= "project.path =\n"; $conf .= "temp.dir = /tmp\n"; $conf .= "php.dir = ".PHP_BINDIR."\n"; $conf .= "php.bin = php\n"; $conf .= "\n"; $conf .= "#cache settings\n"; $conf .= "cache.method = file\n"; $conf .= "cache.location = /var/cache/fusionpbx\n"; $conf .= "cache.settings = true\n"; $conf .= "\n"; $conf .= "#switch settings\n"; $conf .= "switch.conf.dir = ".$conf_dir."\n"; $conf .= "switch.sounds.dir = ".$sounds_dir."\n"; $conf .= "switch.database.dir = ".$database_dir."\n"; $conf .= "switch.recordings.dir = ".$recordings_dir."\n"; $conf .= "switch.storage.dir = ".$storage_dir."\n"; $conf .= "switch.voicemail.dir = ".$voicemail_dir."\n"; $conf .= "switch.scripts.dir = ".$scripts_dir."\n"; $conf .= "\n"; $conf .= "#switch xml handler\n"; $conf .= "xml_handler.fs_path = false\n"; $conf .= "xml_handler.reg_as_number_alias = false\n"; $conf .= "xml_handler.number_as_presence_id = true\n"; $conf .= "\n"; $conf .= "#error reporting hide show all errors except notices and warnings\n"; $conf .= "error.reporting = 'E_ALL ^ E_NOTICE ^ E_WARNING'\n"; //write the config file $file_handle = fopen($config_file,"w"); if(!$file_handle){ return; } fwrite($file_handle, $conf); fclose($file_handle); //set the include path $config_glob = glob("{/usr/local/etc,/etc}/fusionpbx/config.conf", GLOB_BRACE); $conf = parse_ini_file($config_glob[0]); set_include_path($conf['document.root']); } //include files require_once "resources/require.php"; //check the permission if(defined('STDIN')) { $display_type = 'text'; //html, text } else { require_once "resources/check_auth.php"; if (permission_exists('upgrade_schema') || permission_exists('upgrade_source') || if_group("superadmin")) { //echo "access granted"; } else { echo "access denied"; exit; } $display_type = 'html'; //html, text } //set the default upgrade type $upgrade_type = 'defaults'; //get the command line arguments if(defined('STDIN')) { //$application_name = $argv[0]; if (isset($argv[1])) { $upgrade_type = $argv[1]; } } //show the upgrade type //echo $upgrade_type."\n"; //get the version of the software if ($upgrade_type == 'version') { echo software::version()."\n"; } //run all app_defaults.php files if ($upgrade_type == 'domains') { require_once "resources/classes/config.php"; require_once "resources/classes/domains.php"; $domain = new domains; $domain->display_type = $display_type; $domain->upgrade(); } //upgrade schema and/or data_types if ($upgrade_type == 'schema') { //get the database schema put it into an array then compare and update the database as needed. require_once "resources/classes/schema.php"; $obj = new schema; if (isset($argv[2]) && $argv[2] == 'data_types') { $obj->data_types = true; } echo $obj->schema($format ?? ''); } //restore the default menu if ($upgrade_type == 'menu') { //get the menu uuid and language $sql = "select menu_uuid, menu_language from v_menus "; $sql .= "where menu_name = :menu_name "; $parameters['menu_name'] = 'default'; $database = new database; $row = $database->select($sql, $parameters, 'row'); if (is_array($row) && sizeof($row) != 0) { $menu_uuid = $row["menu_uuid"]; $menu_language = $row["menu_language"]; } unset($sql, $parameters, $row); //show the menu if (isset($argv[2]) && $argv[2] == 'view') { print_r($_SESSION["menu"]); } //set the menu back to default if (!isset($argv[2]) || $argv[2] == 'default') { //restore the menu $included = true; require_once("core/menu/menu_restore_default.php"); unset($sel_menu); //use upgrade language file $language = new text; $text = $language->get(null, 'core/upgrade'); //send message to the console echo $text['message-upgrade_menu']."\n"; } } //restore the default permissions if ($upgrade_type == 'permissions') { //default the groups in case they are missing (new groups())->defaults(); //default the permissions $included = true; require_once("core/groups/permissions_default.php"); //use upgrade language file $language = new text; $text = $language->get(null, 'core/upgrade'); //send message to the console echo $text['message-upgrade_permissions']."\n"; } //default upgrade schema and app defaults if ($upgrade_type == 'defaults') { //add multi-lingual support $language = new text; $text = $language->get(null, 'core/upgrade'); //show the title if ($display_type == 'text') { echo "\n"; echo $text['label-upgrade']."\n"; echo "-----------------------------------------\n"; echo "\n"; echo $text['label-database']."\n"; } //make sure the database schema and installation have performed all necessary tasks $obj = new schema; echo $obj->schema("text"); //run all app_defaults.php files $domain = new domains; $domain->display_type = $display_type; $domain->upgrade(); //show the content if ($display_type == 'html') { echo "
\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "
".$text['header-message']."
".$text['message-upgrade']."
\n"; echo "
\n"; echo "
\n"; echo "
\n"; echo "
\n"; echo "
\n"; echo "
\n"; echo "
\n"; echo "
\n"; } elseif ($display_type == 'text') { echo "\n"; } //include the footer if ($display_type == "html") { require_once "resources/footer.php"; } } ?>