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>
|
|
|
|
|
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>
|
2012-11-24 03:45:39 +01:00
|
|
|
James Rose <james.o.rose@gmail.com>
|
2012-06-04 16:58:40 +02:00
|
|
|
*/
|
|
|
|
|
include "root.php";
|
2013-07-06 08:03:27 +02:00
|
|
|
require_once "resources/require.php";
|
2013-07-06 07:50:55 +02:00
|
|
|
require_once "resources/check_auth.php";
|
2012-06-04 16:58:40 +02:00
|
|
|
|
|
|
|
|
if (permission_exists('system_status_sofia_status')
|
|
|
|
|
|| permission_exists('system_status_sofia_status_profile')
|
|
|
|
|
|| if_group("superadmin")) {
|
|
|
|
|
//access granted
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
echo "access denied";
|
|
|
|
|
exit;
|
|
|
|
|
}
|
2012-11-24 03:45:39 +01:00
|
|
|
//add multi-lingual support
|
|
|
|
|
require_once "app_languages.php";
|
|
|
|
|
foreach($text as $key => $value) {
|
|
|
|
|
$text[$key] = $value[$_SESSION['domain']['language']['code']];
|
|
|
|
|
}
|
2013-11-09 08:09:33 +01:00
|
|
|
|
2012-06-04 16:58:40 +02:00
|
|
|
//define variables
|
|
|
|
|
$c = 0;
|
|
|
|
|
$row_style["0"] = "row_style0";
|
|
|
|
|
$row_style["1"] = "row_style1";
|
|
|
|
|
|
|
|
|
|
if ($_GET['a'] == "download") {
|
|
|
|
|
if ($_GET['t'] == "cdrcsv") {
|
|
|
|
|
$tmp = $_SESSION['switch']['log']['dir'].'/cdr-csv/';
|
|
|
|
|
$filename = 'Master.csv';
|
|
|
|
|
}
|
|
|
|
|
if ($_GET['t'] == "backup") {
|
|
|
|
|
$tmp = $backup_dir.'/';
|
|
|
|
|
$filename = 'backup.tgz';
|
|
|
|
|
if (!is_dir($backup_dir.'/')) {
|
|
|
|
|
exec("mkdir ".$backup_dir."/");
|
|
|
|
|
}
|
|
|
|
|
$parent_dir = realpath($_SESSION['switch']['base']['dir']."/..");
|
|
|
|
|
chdir($parent_dir);
|
|
|
|
|
shell_exec('tar cvzf freeswitch '.$backup_dir.'/backup.tgz');
|
|
|
|
|
}
|
|
|
|
|
session_cache_limiter('public');
|
|
|
|
|
$fd = fopen($tmp.$filename, "rb");
|
|
|
|
|
header("Content-Type: binary/octet-stream");
|
|
|
|
|
header("Content-Length: " . filesize($tmp.$filename));
|
|
|
|
|
header('Content-Disposition: attachment; filename="'.$filename.'"');
|
|
|
|
|
fpassthru($fd);
|
|
|
|
|
exit;
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-16 20:37:06 +01:00
|
|
|
//show the content
|
|
|
|
|
require_once "resources/header.php";
|
2012-06-04 16:58:40 +02:00
|
|
|
|
2013-12-16 20:37:06 +01:00
|
|
|
$msg = $_GET["savemsg"];
|
|
|
|
|
$fp = event_socket_create($_SESSION['event_socket_ip_address'], $_SESSION['event_socket_port'], $_SESSION['event_socket_password']);
|
|
|
|
|
if (!$fp) {
|
2014-02-21 02:19:36 +01:00
|
|
|
$msg = "<div align='center'>".$text['error-event-socket']."<br /></div>";
|
2013-12-16 20:37:06 +01:00
|
|
|
}
|
|
|
|
|
if (strlen($msg) > 0) {
|
|
|
|
|
echo "<div align='center'>\n";
|
|
|
|
|
echo "<table width='40%'>\n";
|
|
|
|
|
echo "<tr>\n";
|
|
|
|
|
echo "<th align='left'>".$text['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";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//get the gateways
|
|
|
|
|
$sql = "select g.domain_uuid, g.gateway, g.gateway_uuid, d.domain_name from v_gateways as g, v_domains as d ";
|
|
|
|
|
$sql .= "where d.domain_uuid = g.domain_uuid ";
|
|
|
|
|
$prep_statement = $db->prepare(check_sql($sql));
|
|
|
|
|
$prep_statement->execute();
|
|
|
|
|
$gateways = $prep_statement->fetchAll(PDO::FETCH_NAMED);
|
|
|
|
|
unset ($prep_statement, $sql);
|
2012-06-04 16:58:40 +02:00
|
|
|
|
|
|
|
|
//sofia status
|
|
|
|
|
if ($fp && permission_exists('system_status_sofia_status')) {
|
|
|
|
|
$cmd = "api sofia xmlstatus";
|
|
|
|
|
$xml_response = trim(event_socket_request($fp, $cmd));
|
|
|
|
|
try {
|
|
|
|
|
$xml = new SimpleXMLElement($xml_response);
|
|
|
|
|
}
|
|
|
|
|
catch(Exception $e) {
|
|
|
|
|
echo $e->getMessage();
|
|
|
|
|
}
|
2013-01-02 02:54:09 +01:00
|
|
|
echo "<br />\n";
|
2014-02-21 02:19:36 +01:00
|
|
|
echo "<table width='100%' cellpadding='0' cellspacing='0' border='0' style='margin-bottom: 10px;'>\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "<tr>\n";
|
|
|
|
|
echo "<td width='50%'>\n";
|
2014-02-21 02:19:36 +01:00
|
|
|
echo " <b><a href='javascript:void(0);' onclick=\"$('#sofia_status').slideToggle();\">".$text['title-sofia-status']."</a></b> \n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "<td width='50%' align='right'>\n";
|
2013-11-09 08:24:55 +01:00
|
|
|
echo " <input type='button' class='btn' value='memcache flush' onclick=\"document.location.href='cmd.php?cmd=api+memcache+flush';\" />\n";
|
|
|
|
|
echo " <input type='button' class='btn' value='reloadacl' onclick=\"document.location.href='cmd.php?cmd=api+reloadacl';\" />\n";
|
|
|
|
|
echo " <input type='button' class='btn' value='reloadxml' onclick=\"document.location.href='cmd.php?cmd=api+reloadxml';\" />\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "</tr>\n";
|
|
|
|
|
echo "</table>\n";
|
|
|
|
|
|
2014-02-21 02:19:36 +01:00
|
|
|
echo "<div id='sofia_status' style='margin-top: 20px; margin-bottom: 30px;'>";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "<table width='100%' cellspacing='0' border='0'>\n";
|
|
|
|
|
echo "<tr>\n";
|
|
|
|
|
echo "<th>Name</th>\n";
|
|
|
|
|
echo "<th>Type</th>\n";
|
|
|
|
|
echo "<th>Data</th>\n";
|
|
|
|
|
echo "<th>State</th>\n";
|
|
|
|
|
echo "</tr>\n";
|
|
|
|
|
foreach ($xml->profile as $row) {
|
|
|
|
|
echo "<tr>\n";
|
|
|
|
|
echo " <td class='".$row_style[$c]."'>".$row->name."</td>\n";
|
|
|
|
|
echo " <td class='".$row_style[$c]."'>".$row->type."</td>\n";
|
|
|
|
|
echo " <td class='".$row_style[$c]."'>".$row->data."</td>\n";
|
|
|
|
|
echo " <td class='".$row_style[$c]."'>".$row->state."</td>\n";
|
|
|
|
|
echo "</tr>\n";
|
|
|
|
|
if ($c==0) { $c=1; } else { $c=0; }
|
|
|
|
|
}
|
|
|
|
|
foreach ($xml->gateway as $row) {
|
2013-12-16 20:37:06 +01:00
|
|
|
$gateway_name = '';
|
|
|
|
|
$gateway_domain_name = '';
|
|
|
|
|
foreach($gateways as $field) {
|
|
|
|
|
if ($field["gateway_uuid"] == $row->name) {
|
|
|
|
|
$gateway_name = $field["gateway"];
|
|
|
|
|
$gateway_domain_name = $field["domain_name"];
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "<tr>\n";
|
2013-12-16 20:37:06 +01:00
|
|
|
echo " <td class='".$row_style[$c]."'><a href='".PROJECT_PATH."/app/gateways/gateway_edit.php?id=".$row->name."'>".$gateway_name."@".$gateway_domain_name."</a></td>\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo " <td class='".$row_style[$c]."'>".$row->type."</td>\n";
|
|
|
|
|
echo " <td class='".$row_style[$c]."'>".$row->data."</td>\n";
|
|
|
|
|
echo " <td class='".$row_style[$c]."'>".$row->state."</td>\n";
|
|
|
|
|
echo "</tr>\n";
|
|
|
|
|
if ($c==0) { $c=1; } else { $c=0; }
|
|
|
|
|
}
|
|
|
|
|
foreach ($xml->alias as $row) {
|
|
|
|
|
//print_r($row);
|
|
|
|
|
echo "<tr>\n";
|
|
|
|
|
echo " <td class='".$row_style[$c]."'>".$row->name."</td>\n";
|
|
|
|
|
echo " <td class='".$row_style[$c]."'>".$row->type."</td>\n";
|
|
|
|
|
echo " <td class='".$row_style[$c]."'>".$row->data."</td>\n";
|
|
|
|
|
echo " <td class='".$row_style[$c]."'>".$row->state."</td>\n";
|
|
|
|
|
echo "</tr>\n";
|
|
|
|
|
if ($c==0) { $c=1; } else { $c=0; }
|
|
|
|
|
}
|
|
|
|
|
echo "</table>\n";
|
2014-02-21 02:19:36 +01:00
|
|
|
echo "</div>\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
unset($xml);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//sofia status profile
|
|
|
|
|
if (permission_exists('system_status_sofia_status_profile')) {
|
|
|
|
|
foreach (ListFiles($_SESSION['switch']['conf']['dir'].'/sip_profiles') as $key=>$sip_profile_file){
|
|
|
|
|
if (substr($sip_profile_file, -4) == ".xml") {
|
|
|
|
|
$sip_profile_name = str_replace(".xml", "", $sip_profile_file);
|
|
|
|
|
if ($fp) {
|
|
|
|
|
$cmd = "api sofia xmlstatus profile ".$sip_profile_name."";
|
|
|
|
|
$xml_response = trim(event_socket_request($fp, $cmd));
|
|
|
|
|
if ($xml_response == "Invalid Profile!") { $xml_response = "<error_msg>Invalid Profile!</error_msg>"; }
|
|
|
|
|
$xml_response = str_replace("<profile-info>", "<profile_info>", $xml_response);
|
|
|
|
|
$xml_response = str_replace("</profile-info>", "</profile_info>", $xml_response);
|
|
|
|
|
try {
|
|
|
|
|
$xml = new SimpleXMLElement($xml_response);
|
|
|
|
|
}
|
|
|
|
|
catch(Exception $e) {
|
|
|
|
|
echo $e->getMessage();
|
|
|
|
|
exit;
|
|
|
|
|
}
|
2014-02-21 02:19:36 +01:00
|
|
|
echo "<table width='100%' cellpadding='0' cellspacing='0' border='0' style='margin-bottom: 10px;'>\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "<tr>\n";
|
|
|
|
|
echo "<td width='50%'>\n";
|
2014-02-21 02:19:36 +01:00
|
|
|
echo " <b><a href='javascript:void(0);' onclick=\"$('#".$sip_profile_name."').slideToggle();\">".$text['title-sofia-status-profile']." ".$sip_profile_name."</a></b> \n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "<td width='50%' align='right'>\n";
|
2014-03-14 05:44:46 +01:00
|
|
|
if ($sip_profile_name != "external") {
|
|
|
|
|
echo " <input type='button' class='btn' value='flush_inbound_reg' onclick=\"document.location.href='cmd.php?cmd=api+sofia+profile+".$sip_profile_name."+flush_inbound_reg';\" />\n";
|
|
|
|
|
}
|
2013-03-16 21:11:29 +01:00
|
|
|
echo " <input type='button' class='btn' value='registrations' onclick=\"document.location.href='".PROJECT_PATH."/app/registrations/status_registrations.php?show_reg=1&profile=".$sip_profile_name."';\" />\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo " <input type='button' class='btn' value='start' onclick=\"document.location.href='cmd.php?cmd=api+sofia+profile+".$sip_profile_name."+start';\" />\n";
|
|
|
|
|
echo " <input type='button' class='btn' value='stop' onclick=\"document.location.href='cmd.php?cmd=api+sofia+profile+".$sip_profile_name."+stop';\" />\n";
|
|
|
|
|
echo " <input type='button' class='btn' value='restart' onclick=\"document.location.href='cmd.php?cmd=api+sofia+profile+".$sip_profile_name."+restart';\" />\n";
|
|
|
|
|
echo " <input type='button' class='btn' value='rescan' onclick=\"document.location.href='cmd.php?cmd=api+sofia+profile+".$sip_profile_name."+rescan';\" />\n";
|
|
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "</tr>\n";
|
|
|
|
|
echo "</table>\n";
|
|
|
|
|
|
2014-02-21 02:19:36 +01:00
|
|
|
echo "<div id='".$sip_profile_name."' style='display: none; margin-bottom: 30px;'>";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "<table width='100%' cellspacing='0' cellpadding='5'>\n";
|
|
|
|
|
echo "<tr>\n";
|
|
|
|
|
echo "<th width='20%'> </th>\n";
|
|
|
|
|
echo "<th> </th>\n";
|
|
|
|
|
echo "</tr>\n";
|
|
|
|
|
|
|
|
|
|
foreach ($xml->profile_info as $row) {
|
|
|
|
|
echo " <tr><td class='vncell'>name</td><td class='vtable'> ".$row->name." </td></tr>\n";
|
|
|
|
|
echo " <tr><td class='vncell'>domain-name</td><td class='vtable'> ".$row->{'domain-name'}." </td></tr>\n";
|
|
|
|
|
echo " <tr><td class='vncell'>auto-nat</td><td class='vtable'> ".$row->{'auto-nat'}." </td></tr>\n";
|
|
|
|
|
echo " <tr><td class='vncell'>db-name</td><td class='vtable'> ".$row->{'db-name'}." </td></tr>\n";
|
|
|
|
|
echo " <tr><td class='vncell'>pres-hosts</td><td class='vtable'> ".$row->{'pres-hosts'}." </td></tr>\n";
|
|
|
|
|
echo " <tr><td class='vncell'>dialplan</td><td class='vtable'> ".$row->dialplan." </td></tr>\n";
|
|
|
|
|
echo " <tr><td class='vncell'>context</td><td class='vtable'> ".$row->context." </td></tr>\n";
|
|
|
|
|
echo " <tr><td class='vncell'>challenge-realm</td><td class='vtable'> ".$row->{'challenge-realm'}." </td></tr>\n";
|
|
|
|
|
echo " <tr><td class='vncell'>rtp-ip</td><td class='vtable'> ".$row->{'rtp-ip'}." </td></tr>\n";
|
|
|
|
|
echo " <tr><td class='vncell'>ext-rtp-ip</td><td class='vtable'> ".$row->{'ext-rtp-ip'}." </td></tr>\n";
|
|
|
|
|
echo " <tr><td class='vncell'>sip-ip</td><td class='vtable'> ".$row->{'sip-ip'}." </td></tr>\n";
|
|
|
|
|
echo " <tr><td class='vncell'>ext-sip-ip</td><td class='vtable'> ".$row->{'ext-sip-ip'}." </td></tr>\n";
|
|
|
|
|
echo " <tr><td class='vncell'>url</td><td class='vtable'> ".$row->url." </td></tr>\n";
|
|
|
|
|
echo " <tr><td class='vncell'>bind-url</td><td class='vtable'> ".$row->{'bind-url'}." </td></tr>\n";
|
|
|
|
|
echo " <tr><td class='vncell'>tls-url</td><td class='vtable'> ".$row->{'tls-url'}." </td></tr>\n";
|
|
|
|
|
echo " <tr><td class='vncell'>tls-bind-url</td><td class='vtable'> ".$row->{'tls-bind-url'}." </td></tr>\n";
|
|
|
|
|
echo " <tr><td class='vncell'>hold-music</td><td class='vtable'> ".$row->{'hold-music'}." </td></tr>\n";
|
|
|
|
|
echo " <tr><td class='vncell'>outbound-proxy</td><td class='vtable'> ".$row->{'outbound-proxy'}." </td></tr>\n";
|
|
|
|
|
echo " <tr><td class='vncell'>inbound-codecs</td><td class='vtable'> ".$row->{'inbound-codecs'}." </td></tr>\n";
|
|
|
|
|
echo " <tr><td class='vncell'>outbound-codecs</td><td class='vtable'> ".$row->{'outbound-codecs'}." </td></tr>\n";
|
|
|
|
|
echo " <tr><td class='vncell'>tel-event</td><td class='vtable'> ".$row->{'tel-event'}." </td></tr>\n";
|
|
|
|
|
echo " <tr><td class='vncell'>dtmf-mode</td><td class='vtable'> ".$row->{'dtmf-mode'}." </td></tr>\n";
|
|
|
|
|
echo " <tr><td class='vncell'>cng</td><td class='vtable'> ".$row->cng." </td></tr>\n";
|
|
|
|
|
echo " <tr><td class='vncell'>session-to</td><td class='vtable'> ".$row->{'session-to'}." </td></tr>\n";
|
|
|
|
|
echo " <tr><td class='vncell'>max-dialog</td><td class='vtable'> ".$row->{'max-dialog'}." </td></tr>\n";
|
|
|
|
|
echo " <tr><td class='vncell'>nomedia</td><td class='vtable'> ".$row->nomedia." </td></tr>\n";
|
|
|
|
|
echo " <tr><td class='vncell'>late-neg</td><td class='vtable'> ".$row->{'late-neg'}." </td></tr>\n";
|
|
|
|
|
echo " <tr><td class='vncell'>proxy-media</td><td class='vtable'> ".$row->{'proxy-media'}." </td></tr>\n";
|
|
|
|
|
echo " <tr><td class='vncell'>aggressive-nat</td><td class='vtable'> ".$row->{'aggressive-nat'}." </td></tr>\n";
|
|
|
|
|
echo " <tr><td class='vncell'>stun-enabled</td><td class='vtable'> ".$row->{'stun-enabled'}." </td></tr>\n";
|
|
|
|
|
echo " <tr><td class='vncell'>stun-auto-disable</td><td class='vtable'> ".$row->{'stun-auto-disable'}." </td></tr>\n";
|
|
|
|
|
echo " <tr><td class='vncell'>user-agent-filter</td><td class='vtable'> ".$row->{'user-agent-filter'}." </td></tr>\n";
|
|
|
|
|
echo " <tr><td class='vncell'>max-registrations-per-extension</td><td class='vtable'> ".$row->{'max-registrations-per-extension'}." </td></tr>\n";
|
|
|
|
|
echo " <tr><td class='vncell'>calls-in</td><td class='vtable'> ".$row->{'calls-in'}." </td></tr>\n";
|
|
|
|
|
echo " <tr><td class='vncell'>calls-out</td><td class='vtable'> ".$row->{'calls-out'}." </td></tr>\n";
|
|
|
|
|
echo " <tr><td class='vncell'>failed-calls-in</td><td class='vtable'> ".$row->{'failed-calls-in'}." </td></tr>\n";
|
|
|
|
|
echo " <tr><td class='vncell'>failed-calls-out</td><td class='vtable'> ".$row->{'failed-calls-out'}." </td></tr>\n";
|
|
|
|
|
}
|
|
|
|
|
echo "</table>\n";
|
2014-02-21 02:19:36 +01:00
|
|
|
echo "</div>";
|
2012-06-04 16:58:40 +02:00
|
|
|
unset($xml);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//status
|
|
|
|
|
if ($fp && permission_exists('sip_status_switch_status')) {
|
|
|
|
|
$cmd = "api status";
|
|
|
|
|
$response = event_socket_request($fp, $cmd);
|
2014-02-21 02:19:36 +01:00
|
|
|
echo "<b><a href='javascript:void(0);' onclick=\"$('#status').slideToggle();\">".$text['title-status']."</a></b>\n";
|
|
|
|
|
echo "<div id='status' style='margin-top: 20px; font-size: 9pt;'>";
|
|
|
|
|
echo "<pre>";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo trim($response);
|
|
|
|
|
echo "</pre>\n";
|
2014-02-21 02:19:36 +01:00
|
|
|
echo "</div>";
|
2012-06-04 16:58:40 +02:00
|
|
|
fclose($fp);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//include the footer
|
2013-07-06 08:29:50 +02:00
|
|
|
require_once "resources/footer.php";
|
2012-06-04 16:58:40 +02:00
|
|
|
|
|
|
|
|
?>
|