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>
|
|
|
|
|
Copyright (C) 2010
|
|
|
|
|
All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
Contributor(s):
|
|
|
|
|
Mark J Crane <markjcrane@fusionpbx.com>
|
|
|
|
|
*/
|
|
|
|
|
include "root.php";
|
|
|
|
|
|
|
|
|
|
//define the dnd class
|
|
|
|
|
class do_not_disturb {
|
|
|
|
|
public $domain_uuid;
|
|
|
|
|
public $domain_name;
|
|
|
|
|
public $extension;
|
2012-09-29 23:46:09 +02:00
|
|
|
public $enabled;
|
|
|
|
|
private $dial_string;
|
2012-06-04 16:58:40 +02:00
|
|
|
|
|
|
|
|
//update the user_status
|
2012-09-29 23:46:09 +02:00
|
|
|
public function user_status() {
|
2012-06-04 16:58:40 +02:00
|
|
|
global $db;
|
2012-09-29 23:46:09 +02:00
|
|
|
if ($this->enabled == "true") {
|
2012-06-04 16:58:40 +02:00
|
|
|
//update the call center status
|
|
|
|
|
$user_status = "Logged Out";
|
|
|
|
|
$fp = event_socket_create($_SESSION['event_socket_ip_address'], $_SESSION['event_socket_port'], $_SESSION['event_socket_password']);
|
|
|
|
|
if ($fp) {
|
2012-09-29 23:46:09 +02:00
|
|
|
$switch_cmd .= "callcenter_config agent set status ".$_SESSION['username']."@".$this->domain_name." '".$user_status."'";
|
2012-06-04 16:58:40 +02:00
|
|
|
$switch_result = event_socket_request($fp, 'api '.$switch_cmd);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//update the database user_status
|
|
|
|
|
$user_status = "Do Not Disturb";
|
|
|
|
|
$sql = "update v_users set ";
|
|
|
|
|
$sql .= "user_status = '$user_status' ";
|
2012-09-29 23:46:09 +02:00
|
|
|
$sql .= "where domain_uuid = '".$this->domain_uuid."' ";
|
2012-06-04 16:58:40 +02:00
|
|
|
$sql .= "and username = '".$_SESSION['username']."' ";
|
|
|
|
|
$prep_statement = $db->prepare(check_sql($sql));
|
|
|
|
|
$prep_statement->execute();
|
|
|
|
|
}
|
2012-09-29 23:46:09 +02:00
|
|
|
}
|
2012-06-04 16:58:40 +02:00
|
|
|
|
2012-09-29 23:46:09 +02:00
|
|
|
public function set() {
|
2012-06-04 16:58:40 +02:00
|
|
|
global $db;
|
2012-09-29 23:46:09 +02:00
|
|
|
//update the extension
|
|
|
|
|
if ($this->enabled == "true") {
|
|
|
|
|
$this->dial_string = "loopback/*99".$this->extension;
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
$this->dial_string = "";
|
|
|
|
|
}
|
|
|
|
|
$sql = "update v_extensions set ";
|
|
|
|
|
$sql .= "do_not_disturb = '".$this->enabled."', ";
|
2012-11-21 06:59:07 +01:00
|
|
|
// $sql .= "dial_string = '".$this->dial_string."', ";
|
2012-09-29 23:46:09 +02:00
|
|
|
$sql .= "dial_domain = '".$this->domain_name."' ";
|
|
|
|
|
$sql .= "where domain_uuid = '".$this->domain_uuid."' ";
|
|
|
|
|
$sql .= "and extension = '".$this->extension."' ";
|
|
|
|
|
if ($this->debug) {
|
|
|
|
|
echo $sql."<br />";
|
|
|
|
|
}
|
|
|
|
|
$db->exec(check_sql($sql));
|
|
|
|
|
unset($sql);
|
2012-06-04 16:58:40 +02:00
|
|
|
|
2012-09-29 23:46:09 +02:00
|
|
|
//syncrhonize configuration
|
|
|
|
|
save_extension_xml();
|
2012-06-04 16:58:40 +02:00
|
|
|
} //function
|
|
|
|
|
|
|
|
|
|
} //class
|
|
|
|
|
|
|
|
|
|
?>
|