Files
fusionpbx/app/fifo_list/fifo_exec.php
T

92 lines
2.7 KiB
PHP
Raw Normal View History

<?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>
2019-06-16 10:24:47 -06:00
Copyright (C) 2010 - 2019
All Rights Reserved.
Contributor(s):
Mark J Crane <markjcrane@fusionpbx.com>
*/
2022-10-10 16:35:14 -06:00
//includes files
2023-06-15 14:28:23 -03:00
require_once dirname(__DIR__, 2) . "/resources/require.php";
2019-06-16 10:24:47 -06:00
require_once "resources/check_auth.php";
2019-06-16 10:24:47 -06:00
//check permissions
if (permission_exists('active_queue_edit')) {
//access granted
}
else {
echo "access denied";
exit;
}
2019-06-16 10:24:47 -06:00
//get variables
if (is_array($_GET)>0) {
$switch_cmd = trim($_GET["cmd"]);
$action = trim($_GET["action"]);
$direction = trim($_GET["direction"]);
}
2019-06-16 10:24:47 -06:00
//GET to PHP variables
if (is_array($_GET)) {
//fs cmd
2023-05-05 13:46:37 -03:00
if (!empty($switch_cmd)) {
2019-06-16 10:24:47 -06:00
/*
if ($action == "energy") {
//conference 3001-example.dyndns.org energy 103
2023-12-02 20:16:18 -04:00
$switch_result = event_socket::api($switch_cmd);
2019-06-16 10:24:47 -06:00
$result_array = explode("=",$switch_result);
$tmp_value = $result_array[1];
if ($direction == "up") { $tmp_value = $tmp_value + 100; }
if ($direction == "down") { $tmp_value = $tmp_value - 100; }
//echo "energy $tmp_value<br />\n";
2023-12-02 20:16:18 -04:00
$switch_result = event_socket::api($switch_cmd.' '.$tmp_value);
2019-06-16 10:24:47 -06:00
}
if ($action == "volume_in") {
2023-12-02 20:16:18 -04:00
$switch_result = event_socket::api($switch_cmd);
2019-06-16 10:24:47 -06:00
$result_array = explode("=",$switch_result);
$tmp_value = $result_array[1];
if ($direction == "up") { $tmp_value = $tmp_value + 1; }
if ($direction == "down") { $tmp_value = $tmp_value - 1; }
//echo "volume $tmp_value<br />\n";
2023-12-02 20:16:18 -04:00
$switch_result = event_socket::api($switch_cmd.' '.$tmp_value);
2019-06-16 10:24:47 -06:00
}
if ($action == "volume_out") {
2023-12-02 20:16:18 -04:00
$switch_result = event_socket::api($switch_cmd);
2019-06-16 10:24:47 -06:00
$result_array = explode("=",$switch_result);
$tmp_value = $result_array[1];
if ($direction == "up") { $tmp_value = $tmp_value + 1; }
if ($direction == "down") { $tmp_value = $tmp_value - 1; }
//echo "volume $tmp_value<br />\n";
2023-12-02 20:16:18 -04:00
$switch_result = event_socket::api($switch_cmd.' '.$tmp_value);
2019-06-16 10:24:47 -06:00
}
*/
//connect to the event socket
2023-12-02 20:16:18 -04:00
//$esl = event_socket::create();
2019-06-16 10:24:47 -06:00
//send the command over event socket
2023-12-02 20:16:18 -04:00
//if ($esl->is_connected()) {
// $switch_result = event_socket::api($switch_cmd);
2019-06-16 10:24:47 -06:00
//}
}
2019-06-16 10:24:47 -06:00
}
?>