fusionpbx/app/calls_active/v_calls_active_inc.php

178 lines
7.8 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>
Portions created by the Initial Developer are Copyright (C) 2008-2012
the Initial Developer. All Rights Reserved.
Contributor(s):
Mark J Crane <markjcrane@fusionpbx.com>
*/
include "root.php";
require_once "includes/require.php";
require_once "includes/checkauth.php";
include "app_languages.php";
if (permission_exists('calls_active_view')) {
//access granted
}
else {
echo "access denied";
exit;
}
foreach($content_calls_active as $key => $value) {
$content_calls_active[$key] = $value[$_SESSION['domain']['language']['code']];
}
//set the command
$switch_cmd = 'show channels';
//create the event socket connection
$fp = event_socket_create($_SESSION['event_socket_ip_address'], $_SESSION['event_socket_port'], $_SESSION['event_socket_password']);
//if the connnection is available then run it and return the results
if (!$fp) {
$msg = "<div align='center'>".$content_calls_active['confirm-socket']."<br /></div>";
echo "<div align='center'>\n";
echo "<table width='40%'>\n";
echo "<tr>\n";
echo "<th align='left'>".$content_calls_active['label-message']."</th>\n";
echo "</tr>\n";
echo "<tr>\n";
echo "<td class='row_style1'><strong>$msg</strong></td>\n";
echo "</tr>\n";
echo "</table>\n";
echo "</div>\n";
}
else {
//send the event socket command
$csv = trim(event_socket_request($fp, 'api '.$switch_cmd));
//prepare the string
$result_array = explode("\n\n",$csv);
//get the named array
$result_array = csv_to_named_array($result_array[0], ",");
//set the alternating color for each row
$c = 0;
$row_style["0"] = "row_style0";
$row_style["1"] = "row_style1";
//show the results
echo "<div id='cmd_reponse'>\n";
echo "</div>\n";
echo "<table width='100%' border='0' cellpadding='3' cellspacing='0'>\n";
echo "<tr>\n";
//echo "<th>ID</th>\n";
//echo "<th>UUID</th>\n";
//echo "<th>Dir</th>\n";
echo "<th>".$content_calls_active['label-profile']."</th>\n";
echo "<th>".$content_calls_active['label-created']."</th>\n";
//echo "<th>Created Epoch</th>\n";
//echo "<th>Name</th>\n";
echo "<th>".$content_calls_active['label-num']."</th>\n";
//echo "<th>State</th>\n";
2012-10-09 05:45:34 +02:00
echo "<th>".$content_calls_active['label-cid-name']."</th>\n";
echo "<th>".$content_calls_active['label-cid-number']."</th>\n";
//echo "<th>IP Addr</th>\n";
2012-10-09 05:45:34 +02:00
echo "<th>".$content_calls_active['label-destination']."</th>\n";
echo "<th>".$content_calls_active['label-app']."</th>\n";
//echo "<th>Dialplan</th>\n";
//echo "<th>Context</th>\n";
echo "<th>".$content_calls_active['label-codec']."</th>\n";
//echo "<th>Read Rate</th>\n";
//echo "<th>Write Codec</th>\n";
//echo "<th>Write Rate</th>\n";
echo "<th>".$content_calls_active['label-secure']."</th>\n";
echo "<th>".$content_calls_active['label-opt']."</th>\n";
echo "</tr>\n";
foreach ($result_array as $row) {
//set the php variables
foreach ($row as $key => $value) {
$$key = $value;
}
//get the sip profile
$name_array = explode("/", $name);
$sip_profile = $name_array[1];
$sip_uri = $name_array[2];
//get the number
$temp_array = explode("@", $sip_uri);
$tmp_number = $temp_array[0];
$tmp_number = str_replace("sip:", "", $tmp_number);
//remove the '+' because it breaks the call recording
$cid_num = str_replace("+", "", $cid_num);
echo "<tr>\n";
//echo "<td valign='top' class='".$row_style[$c]."'>$id &nbsp;</td>\n";
//echo "<td valign='top' class='".$row_style[$c]."'>$uuid &nbsp;</td>\n";
//echo "<td valign='top' class='".$row_style[$c]."'>$direction &nbsp;</td>\n";
echo "<td valign='top' class='".$row_style[$c]."'>$sip_profile &nbsp;</td>\n";
echo "<td valign='top' class='".$row_style[$c]."'>$created &nbsp;</td>\n";
//echo "<td valign='top' class='".$row_style[$c]."'>$created_epoch &nbsp;</td>\n";
//echo "<td valign='top' class='".$row_style[$c]."'>$name &nbsp;</td>\n";
echo "<td valign='top' class='".$row_style[$c]."'>".$tmp_number."&nbsp;</td>\n";
//echo "<td valign='top' class='".$row_style[$c]."'>$state &nbsp;</td>\n";
echo "<td valign='top' class='".$row_style[$c]."'>$cid_name &nbsp;</td>\n";
echo "<td valign='top' class='".$row_style[$c]."'>$cid_num &nbsp;</td>\n";
//echo "<td valign='top' class='".$row_style[$c]."'>$ip_addr &nbsp;</td>\n";
echo "<td valign='top' class='".$row_style[$c]."'>$dest &nbsp;</td>\n";
if (strlen($application) > 0) {
echo "<td valign='top' class='".$row_style[$c]."'>".$application.":".$application_data." &nbsp;</td>\n";
}
else {
echo "<td valign='top' class='".$row_style[$c]."'>&nbsp;</td>\n";
}
//echo "<td valign='top' class='".$row_style[$c]."'>$dialplan &nbsp;</td>\n";
//echo "<td valign='top' class='".$row_style[$c]."'>$context &nbsp;</td>\n";
echo "<td valign='top' class='".$row_style[$c]."'>$read_codec:$read_rate / $write_codec:$write_rate &nbsp;</td>\n";
//echo "<td valign='top' class='".$row_style[$c]."'>$read_rate &nbsp;</td>\n";
//echo "<td valign='top' class='".$row_style[$c]."'>$write_codec &nbsp;</td>\n";
//echo "<td valign='top' class='".$row_style[$c]."'>$write_rate &nbsp;</td>\n";
echo "<td valign='top' class='".$row_style[$c]."'>$secure &nbsp;</td>\n";
echo "<td valign='top' class='".$row_style[$c]."' style='text-align:center;'>\n";
//transfer
echo " <a href='javascript:void(0);' onMouseover=\"document.getElementById('form_label').innerHTML='<strong>".$content_calls_active['label-transfer']."</strong>';\" onclick=\"send_cmd('v_calls_exec.php?cmd='+get_transfer_cmd(escape('$uuid')));\">".$content_calls_active['label-transf']."</a>&nbsp;\n";
//park
echo " <a href='javascript:void(0);' onclick=\"send_cmd('v_calls_exec.php?cmd='+get_park_cmd(escape('$uuid')));\">".$content_calls_active['label-park']."</a>&nbsp;\n";
//hangup
echo " <a href='javascript:void(0);' onclick=\"confirm_response = confirm('".$content_calls_active['confirm-hangup']."');if (confirm_response){send_cmd('v_calls_exec.php?cmd=uuid_kill%20'+(escape('$uuid')));}\">".$content_calls_active['label-hangup']."</a>&nbsp;\n";
//record start/stop
$tmp_dir = $_SESSION['switch']['recordings']['dir']."/archive/".date("Y")."/".date("M")."/".date("d");
mkdir($tmp_dir, 0777, true);
$tmp_file = $tmp_dir."/".$uuid.".wav";
if (file_exists($tmp_file)) {
//stop
echo " <a href='javascript:void(0);' style='color: #444444;' onclick=\"send_cmd('v_calls_exec.php?cmd='+get_record_cmd(escape('$uuid'), 'active_calls_', escape('$cid_num'))+'&uuid='+escape('$uuid')+'&action=record&action2=stop&prefix=active_calls_&name='+escape('$cid_num'));\">".$content_calls_active['label-stop']."</a>&nbsp;\n";
}
else {
//start
echo " <a href='javascript:void(0);' style='color: #444444;' onclick=\"send_cmd('v_calls_exec.php?cmd='+get_record_cmd(escape('$uuid'), 'active_calls_', escape('$cid_num'))+'&uuid='+escape('$uuid')+'&action=record&action2=start&prefix=active_calls_');\">".$content_calls_active['label-start']."</a>&nbsp;\n";
}
echo " &nbsp;";
echo "</td>\n";
echo "</tr>\n";
if ($c==0) { $c=1; } else { $c=0; }
}
echo "</td>\n";
echo "</tr>\n";
echo "</table>\n";
}
?>