123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881 |
- <?php
- /*
- FusionPBX
- Version: MPL 1.1
- The contents of this file are subject to the Mozilla Public License Version
- 1.1 (the "License"); you may not use this file except in compliance with
- the License. You may obtain a copy of the License at
- http://www.mozilla.org/MPL/
- Software distributed under the License is distributed on an "AS IS" basis,
- WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
- for the specific language governing rights and limitations under the
- License.
- The Original Code is FusionPBX
- The Initial Developer of the Original Code is
- Mark J Crane <[email protected]>
- Portions created by the Initial Developer are Copyright (C) 2008-2016
- the Initial Developer. All Rights Reserved.
- Contributor(s):
- Mark J Crane <[email protected]>
- sreis
- */
- /**
- * domains class
- *
- * @method null delete
- * @method null toggle
- * @method null copy
- */
- if (!class_exists('domains')) {
- class domains {
- /**
- * declare the variables
- */
- private $app_name;
- private $app_uuid;
- private $name;
- private $table;
- private $toggle_field;
- private $toggle_values;
- private $location;
- /**
- * called when the object is created
- */
- public function __construct() {
- //assign the variables
- $this->app_name = 'domains';
- $this->app_uuid = '8b91605b-f6d2-42e6-a56d-5d1ded01bb44';
- $this->name = 'domain';
- $this->table = 'domains';
- $this->toggle_field = 'domain_enabled';
- $this->toggle_values = ['true','false'];
- $this->location = 'domains.php';
- }
- /**
- * called when there are no references to a particular object
- * unset the variables used in the class
- */
- public function __destruct() {
- foreach ($this as $key => $value) {
- unset($this->$key);
- }
- }
- /**
- * delete rows from the database
- */
- public function delete($records) {
- if (permission_exists($this->name.'_delete')) {
- //add multi-lingual support
- $language = new text;
- $text = $language->get();
- //validate the token
- $token = new token;
- if (!$token->validate($_SERVER['PHP_SELF'])) {
- message::add($text['message-invalid_token'],'negative');
- header('Location: '.$this->location);
- exit;
- }
- //delete multiple records
- if (is_array($records) && @sizeof($records) != 0) {
- //build the delete array
- $d = 0;
- foreach ($records as $record) {
- //add to the array
- if ($record['checked'] == 'true' && is_uuid($record['uuid'])) {
- //set the uuid
- $id = $record['uuid'];
- //get the domain using the id
- $sql = "select domain_name from v_domains ";
- $sql .= "where domain_uuid = :domain_uuid ";
- $parameters['domain_uuid'] = $id;
- $database = new database;
- $domain_name = $database->select($sql, $parameters, 'column');
- unset($sql, $parameters);
- //get the domain settings
- $sql = "select * from v_domain_settings ";
- $sql .= "where domain_uuid = :domain_uuid ";
- $sql .= "and domain_setting_enabled = 'true' ";
- $parameters['domain_uuid'] = $id;
- $database = new database;
- $result = $database->select($sql, $parameters, 'all');
- unset($sql, $parameters);
- if (is_array($result) && sizeof($result) != 0) {
- foreach ($result as $row) {
- $name = $row['domain_setting_name'];
- $category = $row['domain_setting_category'];
- $subcategory = $row['domain_setting_subcategory'];
- if ($subcategory != '') {
- if ($name == "array") {
- $_SESSION[$category][] = $row['default_setting_value'];
- }
- else {
- $_SESSION[$category][$name] = $row['default_setting_value'];
- }
- }
- else {
- if ($name == "array") {
- $_SESSION[$category][$subcategory][] = $row['default_setting_value'];
- }
- else {
- $_SESSION[$category][$subcategory]['uuid'] = $row['default_setting_uuid'];
- $_SESSION[$category][$subcategory][$name] = $row['default_setting_value'];
- }
- }
- }
- }
- unset($result, $row);
- //get the $apps array from the installed apps from the core and mod directories
- $config_list = glob($_SERVER["DOCUMENT_ROOT"].PROJECT_PATH."/*/*/app_config.php");
- $x=0;
- if (isset($config_list)) foreach ($config_list as &$config_path) {
- include($config_path);
- $x++;
- }
- //delete the domain data from all tables in the database
- if (isset($apps)) foreach ($apps as &$app) {
- if (isset($app['db'])) foreach ($app['db'] as $row) {
- if (is_array($row['table']['name'])) {
- $table_name = $row['table']['name']['text'];
- echo "<pre>";
- print_r($table_name);
- echo "<pre>\n";
- }
- else {
- $table_name = $row['table']['name'];
- }
- if ($table_name !== "v" && isset($row['fields'])) {
- foreach ($row['fields'] as $field) {
- if ($field['name'] == 'domain_uuid' && $table_name != 'v_domains') {
- $sql = "delete from ".$table_name." where domain_uuid = :domain_uuid ";
- $parameters['domain_uuid'] = $id;
- $database = new database;
- $database->app_name = 'domain_settings';
- $database->app_uuid = 'b31e723a-bf70-670c-a49b-470d2a232f71';
- $database->execute($sql, $parameters);
- unset($sql, $parameters);
- }
- }
- }
- }
- }
- //delete the directories
- if (strlen($domain_name) > 0) {
- //set the needle
- if (count($_SESSION["domains"]) > 1) {
- $v_needle = 'v_'.$domain_name.'_';
- }
- else {
- $v_needle = 'v_';
- }
- //delete the dialplan
- @unlink($_SESSION['switch']['dialplan']['dir'].'/'.$domain_name.'.xml');
- if (strlen($_SESSION['switch']['dialplan']['dir']) > 0) {
- system('rm -rf '.$_SESSION['switch']['dialplan']['dir'].'/'.$domain_name);
- }
- //delete the dialplan public
- @unlink($_SESSION['switch']['dialplan']['dir'].'/public/'.$domain_name.'.xml');
- if (strlen($_SESSION['switch']['dialplan']['dir']) > 0) {
- system('rm -rf '.$_SESSION['switch']['dialplan']['dir'].'/public/'.$domain_name);
- }
- //delete the extension
- @unlink($_SESSION['switch']['extensions']['dir'].'/'.$domain_name.'.xml');
- if (strlen($_SESSION['switch']['extensions']['dir']) > 0) {
- system('rm -rf '.$_SESSION['switch']['extensions']['dir'].'/'.$domain_name);
- }
- //delete fax
- if (strlen($_SESSION['switch']['storage']['dir']) > 0) {
- system('rm -rf '.$_SESSION['switch']['storage']['dir'].'/fax/'.$domain_name);
- }
- //delete the gateways
- if($dh = opendir($_SESSION['switch']['sip_profiles']['dir'])) {
- $files = Array();
- while($file = readdir($dh)) {
- if($file != "." && $file != ".." && $file[0] != '.') {
- if(is_dir($dir . "/" . $file)) {
- //this is a directory do nothing
- } else {
- //check if file extension is xml
- if (strpos($file, $v_needle) !== false && substr($file,-4) == '.xml') {
- @unlink($_SESSION['switch']['sip_profiles']['dir']."/".$file);
- }
- }
- }
- }
- closedir($dh);
- }
- //delete the ivr menu
- if($dh = opendir($_SESSION['switch']['conf']['dir']."/ivr_menus")) {
- $files = Array();
- while($file = readdir($dh)) {
- if($file != "." && $file != ".." && $file[0] != '.') {
- if(is_dir($dir . "/" . $file)) {
- //this is a directory
- } else {
- if (strpos($file, $v_needle) !== false && substr($file,-4) == '.xml') {
- @unlink($_SESSION['switch']['conf']['dir']."/ivr_menus/".$file);
- }
- }
- }
- }
- closedir($dh);
- }
- //delete the recordings
- if (strlen($_SESSION['switch']['recordings']['dir']) > 0) {
- system('rm -rf '.$_SESSION['switch']['recordings']['dir'].'/'.$_SESSION['domain_name'].'/'.$domain_name);
- }
- //delete voicemail
- if (strlen($_SESSION['switch']['voicemail']['dir']) > 0) {
- system('rm -rf '.$_SESSION['switch']['voicemail']['dir'].'/'.$domain_name);
- }
- }
- //apply settings reminder
- $_SESSION["reload_xml"] = true;
- //clear the domains session array to update it
- unset($_SESSION["domains"]);
- unset($_SESSION["domain_uuid"]);
- unset($_SESSION["domain_name"]);
- unset($_SESSION['domain']);
- unset($_SESSION['switch']);
- //remove the domain and save to transactions
- $domain_array['domains'][$d]['domain_uuid'] = $id;
- //increment the id
- $d++;
- }
- }
- //delete the checked rows
- if (is_array($domain_array) && @sizeof($domain_array) != 0) {
- //execute delete
- $database = new database;
- $database->app_name = $this->app_name;
- $database->app_uuid = $this->app_uuid;
- $database->delete($domain_array);
- unset($array);
- //set message
- message::add($text['message-delete']);
- }
- unset($records);
- }
- }
- }
- /**
- * toggle a field between two values
- */
- public function toggle($records) {
- if (permission_exists($this->name.'_edit')) {
- //add multi-lingual support
- $language = new text;
- $text = $language->get();
- //validate the token
- $token = new token;
- if (!$token->validate($_SERVER['PHP_SELF'])) {
- message::add($text['message-invalid_token'],'negative');
- header('Location: '.$this->location);
- exit;
- }
- //toggle the checked records
- if (is_array($records) && @sizeof($records) != 0) {
- //get current toggle state
- foreach($records as $record) {
- if ($record['checked'] == 'true' && is_uuid($record['uuid'])) {
- $uuids[] = "'".$record['uuid']."'";
- }
- }
- if (is_array($uuids) && @sizeof($uuids) != 0) {
- $sql = "select ".$this->name."_uuid as uuid, ".$this->toggle_field." as toggle from v_".$this->table." ";
- $sql .= "where ".$this->name."_uuid in (".implode(', ', $uuids).") ";
- $database = new database;
- $rows = $database->select($sql, $parameters, 'all');
- if (is_array($rows) && @sizeof($rows) != 0) {
- foreach ($rows as $row) {
- $states[$row['uuid']] = $row['toggle'];
- }
- }
- unset($sql, $parameters, $rows, $row);
- }
- //build update array
- $x = 0;
- foreach($states as $uuid => $state) {
- //create the array
- $array[$this->table][$x][$this->name.'_uuid'] = $uuid;
- $array[$this->table][$x][$this->toggle_field] = $state == $this->toggle_values[0] ? $this->toggle_values[1] : $this->toggle_values[0];
- //increment the id
- $x++;
- }
- //save the changes
- if (is_array($array) && @sizeof($array) != 0) {
- //save the array
- $database = new database;
- $database->app_name = $this->app_name;
- $database->app_uuid = $this->app_uuid;
- $database->save($array);
- unset($array);
- //set message
- message::add($text['message-toggle']);
- }
- unset($records, $states);
- }
- }
- }
- /**
- * copy rows from the database
- */
- public function copy($records) {
- if (permission_exists($this->name.'_add')) {
- //add multi-lingual support
- $language = new text;
- $text = $language->get();
- //validate the token
- $token = new token;
- if (!$token->validate($_SERVER['PHP_SELF'])) {
- message::add($text['message-invalid_token'],'negative');
- header('Location: '.$this->location);
- exit;
- }
- //copy the checked records
- if (is_array($records) && @sizeof($records) != 0) {
- //get checked records
- foreach($records as $record) {
- if ($record['checked'] == 'true' && is_uuid($record['uuid'])) {
- $uuids[] = "'".$record['uuid']."'";
- }
- }
- //create the array from existing data
- if (is_array($uuids) && @sizeof($uuids) != 0) {
- $sql = "select * from v_".$this->table." ";
- $sql .= "where ".$this->name."_uuid in (".implode(', ', $uuids).") ";
- $database = new database;
- $rows = $database->select($sql, $parameters, 'all');
- if (is_array($rows) && @sizeof($rows) != 0) {
- $x = 0;
- foreach ($rows as $row) {
- //copy data
- $array[$this->table][$x] = $row;
- //add copy to the description
- $array[$this->table][$x][$this->name.'_uuid'] = uuid();
- $array[$this->table][$x][$this->name.'_description'] = trim($row[$this->name.'_description']).' ('.$text['label-copy'].')';
- //increment the id
- $x++;
- }
- }
- unset($sql, $parameters, $rows, $row);
- }
- //save the changes and set the message
- if (is_array($array) && @sizeof($array) != 0) {
- //save the array
- $database = new database;
- $database->app_name = $this->app_name;
- $database->app_uuid = $this->app_uuid;
- $database->save($array);
- unset($array);
- //set message
- message::add($text['message-copy']);
- }
- unset($records);
- }
- }
- }
- /**
- * add the default settings to the session array
- */
- public function set() {
- //connect to the database if not connected
- if (!$this->db) {
- require_once "resources/classes/database.php";
- $database = new database;
- $database->connect();
- $this->db = $database->db;
- }
- //set the PDO error mode
- $this->db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
- //get the default settings
- $sql = "select * from v_default_settings ";
- try {
- $prep_statement = $this->db->prepare($sql . " order by default_setting_order asc ");
- $prep_statement->execute();
- }
- catch(PDOException $e) {
- $prep_statement = $this->db->prepare($sql);
- $prep_statement->execute();
- }
- $result = $prep_statement->fetchAll(PDO::FETCH_NAMED);
- //unset all settings
- foreach ($result as $row) {
- if ($row['default_setting_category'] != 'user') { //skip off-limit categories
- unset($_SESSION[$row['default_setting_category']]);
- }
- }
- //set the enabled settings as a session
- foreach ($result as $row) {
- if ($row['default_setting_enabled'] == 'true') {
- $name = $row['default_setting_name'];
- $category = $row['default_setting_category'];
- $subcategory = $row['default_setting_subcategory'];
- if (strlen($subcategory) == 0) {
- if ($name == "array") {
- $_SESSION[$category][] = $row['default_setting_value'];
- }
- else {
- $_SESSION[$category][$name] = $row['default_setting_value'];
- }
- }
- else {
- if ($name == "array") {
- $_SESSION[$category][$subcategory][] = $row['default_setting_value'];
- }
- else {
- $_SESSION[$category][$subcategory]['uuid'] = $row['default_setting_uuid'];
- $_SESSION[$category][$subcategory][$name] = $row['default_setting_value'];
- }
- }
- }
- }
- //get the domains settings
- if (strlen($_SESSION["domain_uuid"]) > 0) {
- $sql = "select * from v_domain_settings ";
- $sql .= "where domain_uuid = '" . $_SESSION["domain_uuid"] . "' ";
- $sql .= "and domain_setting_enabled = 'true' ";
- try {
- $prep_statement = $this->db->prepare($sql . " order by domain_setting_order asc ");
- $prep_statement->execute();
- }
- catch(PDOException $e) {
- $prep_statement = $this->db->prepare($sql);
- $prep_statement->execute();
- }
- $result = $prep_statement->fetchAll(PDO::FETCH_NAMED);
- //unset the arrays that domains are overriding
- foreach ($result as $row) {
- $name = $row['domain_setting_name'];
- $category = $row['domain_setting_category'];
- $subcategory = $row['domain_setting_subcategory'];
- if ($name == "array") {
- unset($_SESSION[$category][$subcategory]);
- }
- }
- //set the enabled settings as a session
- foreach ($result as $row) {
- $name = $row['domain_setting_name'];
- $category = $row['domain_setting_category'];
- $subcategory = $row['domain_setting_subcategory'];
- if (strlen($subcategory) == 0) {
- //$$category[$name] = $row['domain_setting_value'];
- if ($name == "array") {
- $_SESSION[$category][] = $row['domain_setting_value'];
- }
- else {
- $_SESSION[$category][$name] = $row['domain_setting_value'];
- }
- }
- else {
- //$$category[$subcategory][$name] = $row['domain_setting_value'];
- if ($name == "array") {
- $_SESSION[$category][$subcategory][] = $row['domain_setting_value'];
- }
- else {
- $_SESSION[$category][$subcategory][$name] = $row['domain_setting_value'];
- }
- }
- }
- }
- //get the user settings
- if (array_key_exists("domain_uuid",$_SESSION) and array_key_exists("user_uuid",$_SESSION) and strlen($_SESSION["domain_uuid"]) > 0 && strlen($_SESSION["user_uuid"]) > 0) {
- $sql = "select * from v_user_settings ";
- $sql .= "where domain_uuid = '" . $_SESSION["domain_uuid"] . "' ";
- $sql .= "and user_uuid = '" . $_SESSION["user_uuid"] . "' ";
- try {
- $prep_statement = $this->db->prepare($sql . " order by user_setting_order asc ");
- $prep_statement->execute();
- }
- catch(PDOException $e) {
- $prep_statement = $this->db->prepare($sql);
- $prep_statement->execute();
- }
- if ($prep_statement) {
- $result = $prep_statement->fetchAll(PDO::FETCH_NAMED);
- foreach ($result as $row) {
- if ($row['user_setting_enabled'] == 'true') {
- $name = $row['user_setting_name'];
- $category = $row['user_setting_category'];
- $subcategory = $row['user_setting_subcategory'];
- if (strlen($row['user_setting_value']) > 0) {
- if (strlen($subcategory) == 0) {
- //$$category[$name] = $row['domain_setting_value'];
- if ($name == "array") {
- $_SESSION[$category][] = $row['user_setting_value'];
- }
- else {
- $_SESSION[$category][$name] = $row['user_setting_value'];
- }
- }
- else {
- //$$category[$subcategory][$name] = $row['domain_setting_value'];
- if ($name == "array") {
- $_SESSION[$category][$subcategory][] = $row['user_setting_value'];
- }
- else {
- $_SESSION[$category][$subcategory][$name] = $row['user_setting_value'];
- }
- }
- }
- }
- }
- }
- }
- //set the PDO error mode
- $this->db->setAttribute(PDO::ATTR_ERRMODE, '');
- //set the values from the session variables
- if (strlen($_SESSION['domain']['time_zone']['name']) > 0) {
- //server time zone
- $_SESSION['time_zone']['system'] = date_default_timezone_get();
- //domain time zone set in system settings
- $_SESSION['time_zone']['domain'] = $_SESSION['domain']['time_zone']['name'];
- //set the domain time zone as the default time zone
- date_default_timezone_set($_SESSION['domain']['time_zone']['name']);
- }
- //set the context
- $_SESSION["context"] = $_SESSION["domain_name"];
- }
- /**
- * upgrade application defaults
- */
- public function upgrade() {
- //connect to the database if not connected
- if (!$this->db) {
- require_once "resources/classes/database.php";
- $database = new database;
- $database->connect();
- $this->db = $database->db;
- }
- //get the variables
- $config = new config;
- $config_exists = $config->exists();
- $config_path = $config->find();
- $config->get();
- $db_type = $config->db_type;
- $db_name = $config->db_name;
- $db_username = $config->db_username;
- $db_password = $config->db_password;
- $db_secure = $config->db_secure;
- $db_cert_authority = $config->db_cert_authority;
- $db_host = $config->db_host;
- $db_path = $config->db_path;
- $db_port = $config->db_port;
- //get the PROJECT PATH
- include "root.php";
- //check for default settings
- $this->settings();
- //get the list of installed apps from the core and app directories (note: GLOB_BRACE doesn't work on some systems)
- $config_list_1 = glob($_SERVER["DOCUMENT_ROOT"].PROJECT_PATH."/*/*/app_config.php");
- $config_list_2 = glob($_SERVER["DOCUMENT_ROOT"].PROJECT_PATH."/*/*/app_menu.php");
- $config_list = array_merge((array)$config_list_1, (array)$config_list_2);
- unset($config_list_1,$config_list_2);
- $db = $this->db;
- $x=0;
- foreach ($config_list as &$config_path) {
- $app_path = dirname($config_path);
- $app_path = preg_replace('/\A.*(\/.*\/.*)\z/', '$1', $app_path);
- include($config_path);
- $x++;
- }
- //get the domains
- $sql = "select * from v_domains ";
- $prep_statement = $this->db->prepare($sql);
- $prep_statement->execute();
- $domains = $prep_statement->fetchAll(PDO::FETCH_NAMED);
- unset($prep_statement);
- //get the domain_settings
- $sql = "select * from v_domain_settings ";
- $sql .= "where domain_setting_enabled = 'true' ";
- $prep_statement = $this->db->prepare($sql);
- $prep_statement->execute();
- $domain_settings = $prep_statement->fetchAll(PDO::FETCH_NAMED);
- unset($prep_statement);
- //get the default settings
- $sql = "select * from v_default_settings ";
- $sql .= "where default_setting_enabled = 'true' ";
- $prep_statement = $this->db->prepare($sql);
- $prep_statement->execute();
- $database_default_settings = $prep_statement->fetchAll(PDO::FETCH_NAMED);
- unset($prep_statement);
- //get the domain_uuid
- foreach($domains as $row) {
- if (count($domains) == 1) {
- $_SESSION["domain_uuid"] = $row["domain_uuid"];
- $_SESSION["domain_name"] = $row['domain_name'];
- }
- else {
- if (lower_case($row['domain_name']) == lower_case($domain_array[0]) || lower_case($row['domain_name']) == lower_case('www.'.$domain_array[0])) {
- $_SESSION["domain_uuid"] = $row["domain_uuid"];
- $_SESSION["domain_name"] = $row['domain_name'];
- }
- $_SESSION['domains'][$row['domain_uuid']]['domain_uuid'] = $row['domain_uuid'];
- $_SESSION['domains'][$row['domain_uuid']]['domain_name'] = $row['domain_name'];
- }
- }
- //loop through all domains
- $domain_count = count($domains);
- $domains_processed = 1;
- foreach ($domains as &$row) {
- //get the values from database and set them as php variables
- $domain_uuid = $row["domain_uuid"];
- $domain_name = $row["domain_name"];
- //get the context
- $context = $domain_name;
- //get the default settings - this needs to be done to reset the session values back to the defaults for each domain in the loop
- foreach($database_default_settings as $row) {
- $name = $row['default_setting_name'];
- $category = $row['default_setting_category'];
- $subcategory = $row['default_setting_subcategory'];
- if (strlen($subcategory) == 0) {
- if ($name == "array") {
- $_SESSION[$category][] = $row['default_setting_value'];
- }
- else {
- $_SESSION[$category][$name] = $row['default_setting_value'];
- }
- }
- else {
- if ($name == "array") {
- $_SESSION[$category][$subcategory][] = $row['default_setting_value'];
- }
- else {
- $_SESSION[$category][$subcategory]['uuid'] = $row['default_setting_uuid'];
- $_SESSION[$category][$subcategory][$name] = $row['default_setting_value'];
- }
- }
- }
- //get the domains settings for the current domain
- foreach($domain_settings as $row) {
- if ($row['domain_uuid'] == $domain_uuid) {
- $name = $row['domain_setting_name'];
- $category = $row['domain_setting_category'];
- $subcategory = $row['domain_setting_subcategory'];
- if (strlen($subcategory) == 0) {
- //$$category[$name] = $row['domain_setting_value'];
- $_SESSION[$category][$name] = $row['domain_setting_value'];
- }
- else {
- //$$category[$subcategory][$name] = $row['domain_setting_value'];
- $_SESSION[$category][$subcategory][$name] = $row['domain_setting_value'];
- }
- }
- }
- //get the list of installed apps from the core and mod directories and execute the php code in app_defaults.php
- $default_list = glob($_SERVER["DOCUMENT_ROOT"] . PROJECT_PATH . "/*/*/app_defaults.php");
- foreach ($default_list as &$default_path) {
- include($default_path);
- }
- //track of the number of domains processed
- $domains_processed++;
- }
- //synchronize the dialplan
- if (function_exists('save_dialplan_xml')) {
- save_dialplan_xml();
- }
- //update config.lua
- if (file_exists($_SERVER["DOCUMENT_ROOT"].PROJECT_PATH.'/app/scripts/resources/classes/scripts.php')) {
- $obj = new scripts;
- $obj->write_config();
- }
- //clear the session variables
- unset($_SESSION['domain']);
- unset($_SESSION['switch']);
- } //end upgrade method
- /**
- * add missing default settings
- * update the uuid for older default settings that were added before the uuids was predefined.
- */
- public function settings() {
- //connect to the database if not connected
- if (!$this->db) {
- require_once "resources/classes/database.php";
- $database = new database;
- $database->connect();
- $this->db = $database->db;
- }
- //get the list of installed apps from the core and mod directories
- $config_list = glob($_SERVER["DOCUMENT_ROOT"] . PROJECT_PATH . "/*/*/app_config.php");
- $x=0;
- foreach ($config_list as $config_path) {
- include($config_path);
- $x++;
- }
- $x = 0;
- foreach ($apps as $app) {
- if (is_array($app['default_settings'])) {
- foreach ($app['default_settings'] as $setting) {
- $array[$x] = ($setting);
- $array[$x]['app_uuid'] = $app['uuid'];
- $x++;
- }
- }
- }
- //get an array of the default settings
- $sql = "select * from v_default_settings ";
- $sql .= "order by default_setting_category asc, default_setting_subcategory asc";
- $prep_statement = $this->db->prepare($sql);
- $prep_statement->execute();
- $default_settings = $prep_statement->fetchAll(PDO::FETCH_NAMED);
- unset ($prep_statement, $sql);
- //named array
- foreach ($default_settings as $row) {
- $default_settings[$row['default_setting_category']][$row['default_setting_subcategory']][$row['default_setting_name']]['uuid'] = $row['default_setting_uuid'];
- $default_settings[$row['default_setting_category']][$row['default_setting_subcategory']][$row['default_setting_name']]['value'] = $row['default_setting_value'];
- $default_settings[$row['default_setting_category']][$row['default_setting_subcategory']][$row['default_setting_name']]['app_uuid'] = $row['app_uuid'];
- //echo "[".$row['default_setting_category']."][".$row['default_setting_subcategory']."][".$row['default_setting_name']."] = ".$row['default_setting_value']."\n";
- }
- //update matching settings with the correct default_setting_uuid and app_uuid and if they exist remove them from the array
- $x = 0;
- foreach ($array as $row) {
- $category = $row['default_setting_category'];
- $subcategory = $row['default_setting_subcategory'];
- $name = $row['default_setting_name'];
- if (isset($default_settings[$category][$subcategory][$name]['value'])) {
- //set the variables
- $default_setting_uuid = $default_settings[$category][$subcategory][$name]['uuid'];
- $app_uuid = $default_settings[$category][$subcategory][$name]['app_uuid'];
- //update matching settings
- if ($app_uuid == null) {
- $sql = "update v_default_settings set ";
- if ($default_setting_uuid != $row['default_setting_uuid']) {
- $sql .= "default_setting_uuid = '".$row['default_setting_uuid']."', ";
- }
- $sql .= "app_uuid = '".$row['app_uuid']."' ";
- $sql .= "where default_setting_uuid = '".$row['default_setting_uuid']."';";
- //echo $category." ".$subcategory." ".$name." ".$app_uuid."\n";
- //echo $sql."\n";
- $this->db->exec(check_sql($sql));
- //echo "\n";
- }
- //remove settings from the array that were found
- unset($array[$x]);
- }
- $x++;
- }
- unset($default_settings);
- //get the missing count
- $array_count = count($array);
- //add the missing default settings
- if (is_array($array) && count($array) > 0) {
- foreach ($array as $row) {
- $sql = "insert into v_default_settings (";
- $sql .= "default_setting_uuid, ";
- $sql .= "default_setting_category, ";
- $sql .= "default_setting_subcategory, ";
- $sql .= "default_setting_name, ";
- $sql .= "default_setting_value, ";
- $sql .= "default_setting_enabled, ";
- $sql .= "default_setting_description ";
- $sql .= ") values \n";
- $sql .= "(";
- $sql .= "'".check_str($row['default_setting_uuid'])."', ";
- $sql .= "'".check_str($row['default_setting_category'])."', ";
- $sql .= "'".check_str($row['default_setting_subcategory'])."', ";
- $sql .= "'".check_str($row['default_setting_name'])."', ";
- $sql .= "'".check_str($row['default_setting_value'])."', ";
- $sql .= "'".check_str($row['default_setting_enabled'])."', ";
- $sql .= "'".check_str($row['default_setting_description'])."' ";
- $sql .= ");";
- //echo $sql."\n";
- $this->db->exec(check_sql($sql));
- unset($array);
- }
- }
- } //end settings method
- }
- }
- ?>
|