Rename v_fifo_list_inc.php to fifo_list_inc.php.

This commit is contained in:
Mark Crane
2012-11-24 01:58:33 +00:00
parent 86c288574b
commit ba2251b84f
+121
View File
@@ -0,0 +1,121 @@
<?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";
require_once "includes/require.php";
require_once "includes/checkauth.php";
if (permission_exists('active_queues_view')) {
//access granted
}
else {
echo "access denied";
exit;
}
$switch_cmd = 'fifo list';
$fp = event_socket_create($_SESSION['event_socket_ip_address'], $_SESSION['event_socket_port'], $_SESSION['event_socket_password']);
if ($fp) {
$xml_str = trim(event_socket_request($fp, 'api '.$switch_cmd));
try {
$xml = new SimpleXMLElement($xml_str);
}
catch(Exception $e) {
//echo $e->getMessage();
}
/*
<fifo_report>
<fifo name="5900@voip.fusionpbx.com" consumer_count="0" caller_count="1" waiting_count="1" importance="0">
<callers>
<caller uuid="73a9324f-2a87-df11-bedf-0019dbe93b1f" status="WAITING" timestamp="2010-07-04 05:09:23">
<caller_profile></caller_profile>
</caller>
</callers>
<consumers></consumers>
</fifo>
<fifo name="cool_fifo@voip.fusionpbx.com" consumer_count="0" caller_count="0" waiting_count="0" importance="0">
<callers></callers>
<consumers></consumers>
</fifo>
</fifo_report>
*/
$c = 0;
$row_style["0"] = "row_style0";
$row_style["1"] = "row_style1";
echo "<table width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
echo "<tr>\n";
echo "<th>Name</th>\n";
echo "<th>Consumer Count</th>\n";
echo "<th>Caller Count</th>\n";
echo "<th>Waiting Count</th>\n";
echo "<th>Importance</th>\n";
echo "<th>&nbsp;</th>\n";
echo "</tr>\n";
foreach ($xml->fifo as $row) {
foreach($row->attributes() as $tmp_name => $tmp_value) {
$$tmp_name = $tmp_value;
}
unset($tmp_name, $tmp_value);
//remove the domain from name
$tmp_name = str_replace('_', ' ', $name);
$tmp_name_array = explode('@', $name);
$tmp_name = $tmp_name_array[0];
if (if_group("superadmin")) {
//show all fifo queues
echo "<tr>\n";
echo "<td valign='top' class='".$row_style[$c]."'>".$tmp_name."</td>\n";
echo "<td valign='top' class='".$row_style[$c]."'>".$consumer_count."</td>\n";
echo "<td valign='top' class='".$row_style[$c]."'>".$caller_count."</td>\n";
echo "<td valign='top' class='".$row_style[$c]."'>".$waiting_count."</td>\n";
echo "<td valign='top' class='".$row_style[$c]."'>".$importance."</td>\n";
echo "<td valign='top' class='".$row_style[$c]."'><a href='v_fifo_interactive.php?c=".$name."'>view</a></td>\n";
echo "</tr>\n";
}
else {
//show only the fifo queues that match the domain_name
if (stripos($name, $_SESSION['domain_name']) !== false) {
echo "<tr>\n";
echo "<td valign='top' class='".$row_style[$c]."'>".$tmp_name."</td>\n";
echo "<td valign='top' class='".$row_style[$c]."'>".$consumer_count."</td>\n";
echo "<td valign='top' class='".$row_style[$c]."'>".$caller_count."</td>\n";
echo "<td valign='top' class='".$row_style[$c]."'>".$waiting_count."</td>\n";
echo "<td valign='top' class='".$row_style[$c]."'>".$importance."</td>\n";
echo "<td valign='top' class='".$row_style[$c]."'><a href='v_fifo_interactive.php?c=".$name."'>view</a></td>\n";
echo "</tr>\n";
}
}
if ($c==0) { $c=1; } else { $c=0; }
}
echo "</table>\n";
}
?>