mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2026-01-07 20:23:51 +00:00
* Add documentation to methods. Use is_resource for added type detection * Allow connect to specify timeout in microseconds with default 30,000 * Update calling mechanism for event sockets * Update project for new singleton event sockets * remove unused variable * catch errors on closing the socket
94 lines
2.7 KiB
PHP
94 lines
2.7 KiB
PHP
<?php
|
|
|
|
//check the permission
|
|
if (defined('STDIN')) {
|
|
//includes files
|
|
require_once dirname(__DIR__, 4) . "/resources/require.php";
|
|
}
|
|
else {
|
|
exit;
|
|
}
|
|
|
|
//increase limits
|
|
set_time_limit(0);
|
|
//ini_set('max_execution_time',1800); //30 minutes
|
|
//ini_set('memory_limit', '512M');
|
|
|
|
//save the arguments to variables
|
|
$script_name = $argv[0];
|
|
if (!empty($argv[1])) {
|
|
parse_str($argv[1], $_GET);
|
|
}
|
|
|
|
//get the primary key
|
|
if (Is_array($_GET)) {
|
|
$hostname = urldecode($_GET['hostname']);
|
|
$debug = $_GET['debug'];
|
|
$sleep_seconds = $_GET['sleep'];
|
|
}
|
|
else {
|
|
//invalid uuid
|
|
exit;
|
|
}
|
|
|
|
//use global conf created from require.php
|
|
global $conf;
|
|
|
|
//set the event socket connection settings
|
|
$host = $conf['switch.event_socket.host'] ?? $conf['event_socket.ip_address'] ?? '127.0.0.1';
|
|
$port = $conf['switch.event_socket.port'] ?? $conf['event_socket.port'] ?? '8021';
|
|
$pass = $conf['switch.event_socket.password'] ?? $conf['event_socket.password'] ?? 'ClueCon';
|
|
|
|
//connect to event socket using a lower timeout because we are on cli
|
|
$esl = event_socket::create($host, $port, $pass, 10000);
|
|
|
|
//ensure we are connected
|
|
if ($esl->is_connected()) {
|
|
|
|
//get the list
|
|
$sql = "select domain_name, extension, user_context, do_not_disturb, description ";
|
|
$sql .= "from v_extensions as e, v_domains as d ";
|
|
$sql .= "where do_not_disturb = 'true' ";
|
|
$sql .= "and e.domain_uuid = d.domain_uuid ";
|
|
$sql .= "and enabled = 'true' ";
|
|
$database = new database;
|
|
$results = $database->select($sql, $parameters, 'all');
|
|
unset($parameters);
|
|
foreach ($results as $row) {
|
|
|
|
//build the event
|
|
$cmd = "sendevent PRESENCE_IN\n";
|
|
$cmd .= "proto: sip\n";
|
|
$cmd .= "login: " . $row['extension'] . "@" . $row['domain_name'] . "\n";
|
|
$cmd .= "from: " . $row['extension'] . "@" . $row['domain_name'] . "\n";
|
|
$cmd .= "status: Active (1 waiting)\n";
|
|
$cmd .= "rpid: unknown\n";
|
|
$cmd .= "event_type: presence\n";
|
|
$cmd .= "alt_event_type: dialog\n";
|
|
$cmd .= "event_count: 1\n";
|
|
$cmd .= "unique-id: " . uuid() . "\n";
|
|
$cmd .= "Presence-Call-Direction: outbound\n";
|
|
$cmd .= "answer-state: confirmed\n";
|
|
//$cmd .= "answer-state: early\n";
|
|
//$cmd .= "answer-state: terminated\n";
|
|
//send message to the console
|
|
if (isset($debug)) {
|
|
echo "\n";
|
|
echo "[presence] dnd " . $row['extension'] . "@" . $row['domain_name'] . "\n";
|
|
}
|
|
|
|
//send the event
|
|
$result = event_socket::command($cmd);
|
|
if (isset($debug)) {
|
|
print_r($result, false);
|
|
}
|
|
}
|
|
}
|
|
else {
|
|
trigger_error("Unable to connect to FreeSWITCH using $host, $port, $password", E_USER_ERROR);
|
|
}
|
|
|
|
/*
|
|
* * * * * cd /var/www/fusionpbx && php /var/www/fusionpbx/app/call_forward/resources/jobs/dnd.php
|
|
*/
|