mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2025-12-30 00:53:50 +00:00
* remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove class_exists wrapper for class definitions * remove include statement of class file * remove include statement of class file * remove include statement of class file * remove include statement of class file * remove include statement of class file * remove include statement of class file * remove include statement of class file * remove include statement of class file * remove include statement of class file * remove include statement of class file * remove include statement of class file * remove include statement of class file * remove include statement of class file * remove include statement of class file * remove include statement of class file * remove include statement of class file * remove include statement of class file * remove include statement of class file * remove include statement of class file * remove include statement of class file * remove include statement of class file * remove include statement of class file * remove include statement of class file * remove include statement of class file * remove include statement of class file * remove include statement of class file * remove include statement of class file * remove include statement of class file * remove include statement of class file * remove include statement of class file * remove include statement of class file * remove include statement of class file * remove include statement of class file * remove include statement of class file * remove include statement of class file * remove include statement of class file * remove include statement of class file * remove include statement of class file * remove include statement of class file * remove include statement of class file * remove include statement of class file * remove include statement of class file * remove include statement of class file * remove include statement of class file * remove include statement of class file * remove include statement of class file * remove include statement of class file * remove include statement of class file * remove include statement of class file * remove include statement of class file * remove closing tag * remove invalid method params * remove closing tag * remove closing tag * Update auto_loader to load each class file in the project Update the auto_loader class to use an include statement on each file in the project to load the class within the file. This will allow mismatched names within the file to be loaded and mapped according to the declaration instead of the filename. The class is then checked against the parsed classes from the PHP engine so that namespaces are available and mapped to the file they were declared in. An update was also made to the search algorithm used to find a file that was not already loaded by collapsing the array to have only valid matches to increase performance on a cache miss. Logging within the auto_loader has been moved to a function. Multiple files were modified to allow the include statement. When the class has the `if(class_exists())` statement, the auto_loader is called to check for the class. This caused an infinite loop scenario so all wrappers have been removed. The auto_loader will now break the loop by directly modifying the internal classes array instead of trying to restart with the 'reload_classes' method. - APCu is used to cache classes so any loading of the classes is done only once. To clear the APCu cache, restart php-fpm or call the auto_loader::clear_cache() function. - Cache file is used when APCu is not available. To clear the cache remove it from the tmp folder or call the auto_loader::clear_cache() function. - All classes must no longer have a class_exists wrapper to benefit from the performance boost. - Classes should not be directly included when the auto_loader is used. * remove include statement of class file * Update destinations.php
491 lines
15 KiB
PHP
491 lines
15 KiB
PHP
<?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 <markjcrane@fusionpbx.com>
|
|
Portions created by the Initial Developer are Copyright (C) 2008-2023
|
|
the Initial Developer. All Rights Reserved.
|
|
|
|
Contributor(s):
|
|
Mark J Crane <markjcrane@fusionpbx.com>
|
|
*/
|
|
|
|
//define the ivr_menu class
|
|
class ivr_menu {
|
|
|
|
/**
|
|
* declare public variables
|
|
*/
|
|
public $domain_uuid;
|
|
public $ivr_menu_uuid;
|
|
|
|
/**
|
|
* declare private variables
|
|
*/
|
|
private $app_name;
|
|
private $app_uuid;
|
|
private $permission_prefix;
|
|
private $list_page;
|
|
private $table;
|
|
private $uuid_prefix;
|
|
private $toggle_field;
|
|
private $toggle_values;
|
|
|
|
/**
|
|
* called when the object is created
|
|
*/
|
|
public function __construct() {
|
|
|
|
//assign private variables
|
|
$this->app_name = 'ivr_menus';
|
|
$this->app_uuid = 'a5788e9b-58bc-bd1b-df59-fff5d51253ab';
|
|
$this->list_page = 'ivr_menus.php';
|
|
|
|
}
|
|
|
|
public function find() {
|
|
$sql = "select * from v_ivr_menus ";
|
|
$sql .= "where domain_uuid = :domain_uuid ";
|
|
if (isset($this->ivr_menu_uuid)) {
|
|
$sql .= "and ivr_menu_uuid = :ivr_menu_uuid ";
|
|
$parameters['ivr_menu_uuid'] = $this->ivr_menu_uuid;
|
|
}
|
|
if (isset($this->order_by)) {
|
|
$sql .= $this->order_by;
|
|
}
|
|
$parameters['domain_uuid'] = $this->domain_uuid;
|
|
$database = new database;
|
|
return $database->select($sql, $parameters, 'all');
|
|
}
|
|
|
|
/**
|
|
* delete records
|
|
*/
|
|
public function delete($records) {
|
|
//assign private variables
|
|
$this->permission_prefix = 'ivr_menu_';
|
|
$this->table = 'ivr_menus';
|
|
$this->uuid_prefix = 'ivr_menu_';
|
|
|
|
//return if permission does not exist
|
|
if (!permission_exists($this->permission_prefix.'delete')) {
|
|
return false;
|
|
}
|
|
|
|
//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->list_page);
|
|
exit;
|
|
}
|
|
|
|
//delete multiple records
|
|
if (!empty($records)) {
|
|
|
|
//filter out unchecked ivr menus, build where clause for below
|
|
foreach ($records as $record) {
|
|
if (!empty($record['checked']) && $record['checked'] == 'true' && is_uuid($record['uuid'])) {
|
|
$uuids[] = "'".$record['uuid']."'";
|
|
}
|
|
}
|
|
|
|
//get necessary ivr menu details
|
|
if (!empty($uuids)) {
|
|
$sql = "select ".$this->uuid_prefix."uuid as uuid, dialplan_uuid, ivr_menu_context from v_".$this->table." ";
|
|
$sql .= "where (domain_uuid = :domain_uuid) ";
|
|
$sql .= "and ".$this->uuid_prefix."uuid in (".implode(', ', $uuids).") ";
|
|
$parameters['domain_uuid'] = $_SESSION['domain_uuid'];
|
|
$database = new database;
|
|
$rows = $database->select($sql, $parameters, 'all');
|
|
if (is_array($rows) && @sizeof($rows) != 0) {
|
|
foreach ($rows as $row) {
|
|
$ivr_menus[$row['uuid']]['dialplan_uuid'] = $row['dialplan_uuid'];
|
|
$ivr_menu_contexts[] = $row['ivr_menu_context'];
|
|
}
|
|
}
|
|
unset($sql, $parameters, $rows, $row);
|
|
}
|
|
|
|
//build the delete array
|
|
$x = 0;
|
|
foreach ($ivr_menus as $ivr_menu_uuid => $ivr_menu) {
|
|
$array[$this->table][$x][$this->uuid_prefix.'uuid'] = $ivr_menu_uuid;
|
|
$array['ivr_menu_options'][$x]['ivr_menu_uuid'] = $ivr_menu_uuid;
|
|
$array['dialplans'][$x]['dialplan_uuid'] = $ivr_menu['dialplan_uuid'];
|
|
$x++;
|
|
}
|
|
|
|
//delete the checked rows
|
|
if (!empty($array)) {
|
|
|
|
//grant temporary permissions
|
|
$p = permissions::new();
|
|
$p->add('ivr_menu_option_delete', 'temp');
|
|
$p->add('dialplan_delete', 'temp');
|
|
|
|
//execute delete
|
|
$database = new database;
|
|
$database->app_name = $this->app_name;
|
|
$database->app_uuid = $this->app_uuid;
|
|
$database->delete($array);
|
|
unset($array);
|
|
|
|
//revoke temporary permissions
|
|
$p->delete('ivr_menu_option_delete', 'temp');
|
|
$p->delete('dialplan_delete', 'temp');
|
|
|
|
//clear the cache
|
|
if (is_array($ivr_menu_contexts) && @sizeof($ivr_menu_contexts) != 0) {
|
|
$ivr_menu_contexts = array_unique($ivr_menu_contexts);
|
|
$cache = new cache;
|
|
foreach ($ivr_menu_contexts as $ivr_menu_context) {
|
|
$cache->delete("dialplan:".$ivr_menu_context);
|
|
}
|
|
}
|
|
|
|
//clear the destinations session array
|
|
if (isset($_SESSION['destinations']['array'])) {
|
|
unset($_SESSION['destinations']['array']);
|
|
}
|
|
|
|
//set message
|
|
message::add($text['message-delete']);
|
|
}
|
|
unset($records, $ivr_menus);
|
|
}
|
|
|
|
}
|
|
|
|
public function delete_options($records) {
|
|
//assign private variables
|
|
$this->permission_prefix = 'ivr_menu_option_';
|
|
$this->table = 'ivr_menu_options';
|
|
$this->uuid_prefix = 'ivr_menu_option_';
|
|
|
|
//return if permission does not exist
|
|
if (!permission_exists($this->permission_prefix.'delete')) {
|
|
return false;
|
|
}
|
|
|
|
//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->list_page);
|
|
exit;
|
|
}
|
|
|
|
//delete multiple records
|
|
if (!empty($records)) {
|
|
|
|
//filter out unchecked ivr menu options, build delete array
|
|
$x = 0;
|
|
foreach ($records as $record) {
|
|
if (!empty($record['checked']) && $record['checked'] == 'true' && !empty($record['uuid']) && is_uuid($record['uuid'])) {
|
|
$array[$this->table][$x][$this->uuid_prefix.'uuid'] = $record['uuid'];
|
|
$array[$this->table][$x]['ivr_menu_uuid'] = $this->ivr_menu_uuid;
|
|
$x++;
|
|
}
|
|
}
|
|
|
|
//get ivr menu context
|
|
if (!empty($array) && !empty($this->ivr_menu_uuid) && is_uuid($this->ivr_menu_uuid)) {
|
|
$sql = "select ivr_menu_context from v_ivr_menus ";
|
|
$sql .= "where (domain_uuid = :domain_uuid) ";
|
|
$sql .= "and ivr_menu_uuid = :ivr_menu_uuid ";
|
|
$parameters['domain_uuid'] = $_SESSION['domain_uuid'];
|
|
$parameters['ivr_menu_uuid'] = $this->ivr_menu_uuid;
|
|
$database = new database;
|
|
$ivr_menu_context = $database->select($sql, $parameters, 'column');
|
|
unset($sql, $parameters);
|
|
}
|
|
|
|
//delete the checked rows
|
|
if (!empty($array)) {
|
|
|
|
//execute delete
|
|
$database = new database;
|
|
$database->app_name = $this->app_name;
|
|
$database->app_uuid = $this->app_uuid;
|
|
$database->delete($array);
|
|
unset($array);
|
|
|
|
//clear the cache
|
|
if (!empty($ivr_menu_context)) {
|
|
$cache = new cache;
|
|
$cache->delete("dialplan:".$ivr_menu_context);
|
|
}
|
|
|
|
}
|
|
unset($records);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* toggle records
|
|
*/
|
|
public function toggle($records) {
|
|
//assign private variables
|
|
$this->permission_prefix = 'ivr_menu_';
|
|
$this->table = 'ivr_menus';
|
|
$this->uuid_prefix = 'ivr_menu_';
|
|
$this->toggle_field = 'ivr_menu_enabled';
|
|
$this->toggle_values = ['true','false'];
|
|
|
|
//return if permission does not exist
|
|
if (!permission_exists($this->permission_prefix.'edit')) {
|
|
return false;
|
|
}
|
|
|
|
//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->list_page);
|
|
exit;
|
|
}
|
|
|
|
//toggle the checked records
|
|
if (!empty($records)) {
|
|
|
|
//get current toggle state
|
|
foreach($records as $x => $record) {
|
|
if (!empty($record['checked']) && $record['checked'] == 'true' && !empty($record['uuid']) && is_uuid($record['uuid'])) {
|
|
$uuids[] = "'".$record['uuid']."'";
|
|
}
|
|
}
|
|
if (!empty($uuids)) {
|
|
$sql = "select ".$this->uuid_prefix."uuid as uuid, ".$this->toggle_field." as toggle, dialplan_uuid from v_".$this->table." ";
|
|
$sql .= "where domain_uuid = :domain_uuid ";
|
|
$sql .= "and ".$this->uuid_prefix."uuid in (".implode(', ', $uuids).") ";
|
|
$parameters['domain_uuid'] = $_SESSION['domain_uuid'];
|
|
$database = new database;
|
|
$rows = $database->select($sql, $parameters, 'all');
|
|
if (is_array($rows) && @sizeof($rows) != 0) {
|
|
foreach ($rows as $row) {
|
|
$ivr_menus[$row['uuid']]['state'] = $row['toggle'];
|
|
$ivr_menus[$row['uuid']]['dialplan_uuid'] = $row['dialplan_uuid'];
|
|
}
|
|
}
|
|
unset($sql, $parameters, $rows, $row);
|
|
}
|
|
|
|
//build update array
|
|
$x = 0;
|
|
foreach ($ivr_menus as $uuid => $ivr_menu) {
|
|
$array[$this->table][$x][$this->uuid_prefix.'uuid'] = $uuid;
|
|
$array[$this->table][$x][$this->toggle_field] = $ivr_menu['state'] == $this->toggle_values[0] ? $this->toggle_values[1] : $this->toggle_values[0];
|
|
$array['dialplans'][$x]['dialplan_uuid'] = $ivr_menu['dialplan_uuid'];
|
|
$array['dialplans'][$x]['dialplan_enabled'] = $ivr_menu['state'] == $this->toggle_values[0] ? $this->toggle_values[1] : $this->toggle_values[0];
|
|
$x++;
|
|
}
|
|
|
|
//save the changes
|
|
if (!empty($array)) {
|
|
|
|
//grant temporary permissions
|
|
$p = permissions::new();
|
|
$p->add('dialplan_edit', 'temp');
|
|
|
|
//save the array
|
|
$database = new database;
|
|
$database->app_name = $this->app_name;
|
|
$database->app_uuid = $this->app_uuid;
|
|
$database->save($array);
|
|
unset($array);
|
|
|
|
//revoke temporary permissions
|
|
$p->delete('dialplan_edit', 'temp');
|
|
|
|
//clear the cache
|
|
$cache = new cache;
|
|
$cache->delete("dialplan:".$_SESSION['domain_name']);
|
|
foreach ($ivr_menus as $ivr_menu_uuid => $ivr_menu) {
|
|
$cache->delete("configuration:ivr.conf:".$ivr_menu_uuid);
|
|
}
|
|
|
|
//clear the destinations session array
|
|
if (isset($_SESSION['destinations']['array'])) {
|
|
unset($_SESSION['destinations']['array']);
|
|
}
|
|
|
|
//set message
|
|
message::add($text['message-toggle']);
|
|
}
|
|
unset($records, $states);
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
* copy records
|
|
*/
|
|
public function copy($records) {
|
|
//assign private variables
|
|
$this->permission_prefix = 'ivr_menu_';
|
|
$this->table = 'ivr_menus';
|
|
$this->uuid_prefix = 'ivr_menu_';
|
|
|
|
//return if permission does not exist
|
|
if (!permission_exists($this->permission_prefix.'add')) {
|
|
return false;
|
|
}
|
|
|
|
//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->list_page);
|
|
exit;
|
|
}
|
|
|
|
//copy the checked records
|
|
if (!empty($records)) {
|
|
|
|
//get checked records
|
|
foreach($records as $x => $record) {
|
|
if (!empty($record['checked']) && $record['checked'] == 'true' && !empty($record['uuid']) && is_uuid($record['uuid'])) {
|
|
$uuids[] = "'".$record['uuid']."'";
|
|
}
|
|
}
|
|
|
|
//create insert array from existing data
|
|
if (!empty($uuids)) {
|
|
|
|
//primary table
|
|
$sql = "select * from v_".$this->table." ";
|
|
$sql .= "where domain_uuid = :domain_uuid ";
|
|
$sql .= "and ".$this->uuid_prefix."uuid in (".implode(', ', $uuids).") ";
|
|
$parameters['domain_uuid'] = $_SESSION['domain_uuid'];
|
|
$database = new database;
|
|
$rows = $database->select($sql, $parameters, 'all');
|
|
if (!empty($rows)) {
|
|
$y = $z = 0;
|
|
foreach ($rows as $x => $row) {
|
|
$new_ivr_menu_uuid = uuid();
|
|
$new_dialplan_uuid = uuid();
|
|
|
|
//copy data
|
|
$array[$this->table][$x] = $row;
|
|
|
|
//overwrite
|
|
$array[$this->table][$x][$this->uuid_prefix.'uuid'] = $new_ivr_menu_uuid;
|
|
$array[$this->table][$x]['dialplan_uuid'] = $new_dialplan_uuid;
|
|
$array[$this->table][$x]['ivr_menu_description'] = trim($row['ivr_menu_description'].' ('.$text['label-copy'].')');
|
|
|
|
//ivr menu options sub table
|
|
$sql_2 = "select * from v_ivr_menu_options where ivr_menu_uuid = :ivr_menu_uuid";
|
|
$parameters_2['ivr_menu_uuid'] = $row['ivr_menu_uuid'];
|
|
$database = new database;
|
|
$rows_2 = $database->select($sql_2, $parameters_2, 'all');
|
|
if (!empty($rows_2)) {
|
|
foreach ($rows_2 as $row_2) {
|
|
|
|
//copy data
|
|
$array['ivr_menu_options'][$y] = $row_2;
|
|
|
|
//overwrite
|
|
$array['ivr_menu_options'][$y]['ivr_menu_option_uuid'] = uuid();
|
|
$array['ivr_menu_options'][$y]['ivr_menu_uuid'] = $new_ivr_menu_uuid;
|
|
|
|
//increment
|
|
$y++;
|
|
|
|
}
|
|
}
|
|
unset($sql_2, $parameters_2, $rows_2, $row_2);
|
|
|
|
//ivr menu dialplan record
|
|
$sql_3 = "select * from v_dialplans where dialplan_uuid = :dialplan_uuid";
|
|
$parameters_3['dialplan_uuid'] = $row['dialplan_uuid'];
|
|
$database = new database;
|
|
$dialplan = $database->select($sql_3, $parameters_3, 'row');
|
|
if (!empty($dialplan)) {
|
|
|
|
//copy data
|
|
$array['dialplans'][$z] = $dialplan;
|
|
|
|
//overwrite
|
|
$array['dialplans'][$z]['dialplan_uuid'] = $new_dialplan_uuid;
|
|
$dialplan_xml = $dialplan['dialplan_xml'];
|
|
$dialplan_xml = str_replace($row['ivr_menu_uuid'], $new_ivr_menu_uuid, $dialplan_xml); //replace source ivr_menu_uuid with new
|
|
$dialplan_xml = str_replace($dialplan['dialplan_uuid'], $new_dialplan_uuid, $dialplan_xml); //replace source dialplan_uuid with new
|
|
$array['dialplans'][$z]['dialplan_xml'] = $dialplan_xml;
|
|
$array['dialplans'][$z]['dialplan_description'] = trim($dialplan['dialplan_description'].' ('.$text['label-copy'].')');
|
|
|
|
//increment
|
|
$z++;
|
|
}
|
|
unset($sql_3, $parameters_3, $dialplan);
|
|
|
|
}
|
|
}
|
|
unset($sql, $parameters, $rows, $row);
|
|
}
|
|
|
|
//save the changes and set the message
|
|
if (!empty($array)) {
|
|
|
|
//grant temporary permissions
|
|
$p = permissions::new();
|
|
$p->add('ivr_menu_option_add', 'temp');
|
|
$p->add('dialplan_add', 'temp');
|
|
|
|
//save the array
|
|
$database = new database;
|
|
$database->app_name = $this->app_name;
|
|
$database->app_uuid = $this->app_uuid;
|
|
$database->save($array);
|
|
unset($array);
|
|
|
|
//revoke temporary permissions
|
|
$p = permissions::new();
|
|
$p->delete('ivr_menu_option_add', 'temp');
|
|
$p->delete('dialplan_add', 'temp');
|
|
|
|
//clear the cache
|
|
$cache = new cache;
|
|
$cache->delete("dialplan:".$_SESSION['domain_name']);
|
|
|
|
//set message
|
|
message::add($text['message-copy']);
|
|
|
|
}
|
|
unset($records);
|
|
}
|
|
|
|
}
|
|
|
|
}
|