2012-06-04 16:58:40 +02:00
|
|
|
<?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>
|
2016-05-11 21:23:53 +02:00
|
|
|
Copyright (C) 2010 - 2016
|
2012-06-04 16:58:40 +02:00
|
|
|
All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
Contributor(s):
|
|
|
|
|
Mark J Crane <markjcrane@fusionpbx.com>
|
2014-06-22 20:38:46 +02:00
|
|
|
Luis Daniel Lucio Quiroz <dlucio@okay.com.mx>
|
2015-03-21 10:21:29 +01:00
|
|
|
Errol Samuels <voiptology@gmail.com>
|
2016-03-11 12:56:29 +01:00
|
|
|
|
2012-06-04 16:58:40 +02:00
|
|
|
*/
|
|
|
|
|
include "root.php";
|
|
|
|
|
|
|
|
|
|
//define the call_forward class
|
|
|
|
|
class call_forward {
|
2012-12-17 22:30:49 +01:00
|
|
|
public $debug;
|
2012-06-04 16:58:40 +02:00
|
|
|
public $domain_uuid;
|
2012-12-17 22:30:49 +01:00
|
|
|
public $domain_name;
|
2012-12-16 08:39:03 +01:00
|
|
|
public $extension_uuid;
|
2012-12-17 22:30:49 +01:00
|
|
|
private $extension;
|
2015-08-24 08:34:33 +02:00
|
|
|
private $number_alias;
|
2012-12-16 08:39:03 +01:00
|
|
|
public $forward_all_destination;
|
|
|
|
|
public $forward_all_enabled;
|
2012-12-17 22:30:49 +01:00
|
|
|
private $dial_string;
|
2015-08-14 11:27:47 +02:00
|
|
|
private $toll_allow;
|
2013-05-01 20:14:13 +02:00
|
|
|
public $accountcode;
|
2015-02-28 05:07:15 +01:00
|
|
|
public $forward_caller_id_uuid;
|
2015-06-24 18:49:07 +02:00
|
|
|
public $outbound_caller_id_name;
|
|
|
|
|
public $outbound_caller_id_number;
|
2012-06-04 16:58:40 +02:00
|
|
|
|
2012-12-17 22:30:49 +01:00
|
|
|
public function set() {
|
2013-05-01 20:14:13 +02:00
|
|
|
//determine whether to update the dial string
|
|
|
|
|
$sql = "select * from v_extensions ";
|
2019-08-30 02:20:33 +02:00
|
|
|
$sql .= "where domain_uuid = :domain_uuid ";
|
|
|
|
|
$sql .= "and extension_uuid = :extension_uuid ";
|
|
|
|
|
$parameters['domain_uuid'] = $this->domain_uuid;
|
|
|
|
|
$parameters['extension_uuid'] = $this->extension_uuid;
|
|
|
|
|
$database = new database;
|
|
|
|
|
$row = $database->select($sql, $parameters, 'row');
|
|
|
|
|
if (is_array($row) && @sizeof($row) != 0) {
|
2016-05-11 21:23:53 +02:00
|
|
|
$this->extension = $row["extension"];
|
|
|
|
|
$this->number_alias = $row["number_alias"];
|
|
|
|
|
$this->accountcode = $row["accountcode"];
|
|
|
|
|
$this->toll_allow = $row["toll_allow"];
|
|
|
|
|
$this->outbound_caller_id_name = $row["outbound_caller_id_name"];
|
|
|
|
|
$this->outbound_caller_id_number = $row["outbound_caller_id_number"];
|
2013-05-01 20:14:13 +02:00
|
|
|
}
|
2019-08-30 02:20:33 +02:00
|
|
|
unset($sql, $parameters, $row);
|
2013-05-01 20:14:13 +02:00
|
|
|
|
2019-08-30 02:20:33 +02:00
|
|
|
//build extension update array
|
|
|
|
|
$array['extensions'][0]['extension_uuid'] = $this->extension_uuid;
|
|
|
|
|
$array['extensions'][0]['forward_all_destination'] = strlen($this->forward_all_destination) != 0 ? $this->forward_all_destination : null;
|
2014-09-13 12:01:41 +02:00
|
|
|
if (strlen($this->forward_all_destination) == 0 || $this->forward_all_enabled == "false") {
|
2019-08-30 02:20:33 +02:00
|
|
|
$array['extensions'][0]['dial_string'] = null;
|
|
|
|
|
$array['extensions'][0]['forward_all_enabled'] = 'false';
|
2014-09-13 12:01:41 +02:00
|
|
|
}
|
|
|
|
|
else {
|
2019-08-30 02:20:33 +02:00
|
|
|
$array['extensions'][0]['dial_string'] = $this->dial_string;
|
|
|
|
|
$array['extensions'][0]['forward_all_enabled'] = 'true';
|
2014-09-13 12:01:41 +02:00
|
|
|
}
|
2019-08-30 02:20:33 +02:00
|
|
|
|
|
|
|
|
//grant temporary permissions
|
|
|
|
|
$p = new permissions;
|
|
|
|
|
$p->add('extension_add', 'temp');
|
|
|
|
|
|
|
|
|
|
//execute update
|
|
|
|
|
$database = new database;
|
|
|
|
|
$database->app_name = 'calls';
|
|
|
|
|
$database->app_uuid = '19806921-e8ed-dcff-b325-dd3e5da4959d';
|
|
|
|
|
$database->save($array);
|
|
|
|
|
unset($array);
|
|
|
|
|
|
|
|
|
|
//grant temporary permissions
|
|
|
|
|
$p = new permissions;
|
|
|
|
|
$p->delete('extension_add', 'temp');
|
2012-12-17 22:30:49 +01:00
|
|
|
|
2017-10-08 07:34:38 +02:00
|
|
|
//delete extension from the cache
|
2015-08-24 08:34:33 +02:00
|
|
|
$cache = new cache;
|
|
|
|
|
$cache->delete("directory:".$this->extension."@".$this->domain_name);
|
|
|
|
|
if(strlen($this->number_alias) > 0){
|
|
|
|
|
$cache->delete("directory:".$this->number_alias."@".$this->domain_name);
|
2012-12-17 22:30:49 +01:00
|
|
|
}
|
|
|
|
|
|
2019-08-30 02:20:33 +02:00
|
|
|
}
|
|
|
|
|
}
|
2012-06-04 16:58:40 +02:00
|
|
|
|
2019-08-30 02:20:33 +02:00
|
|
|
?>
|