259 lines
8.0 KiB
PHP
259 lines
8.0 KiB
PHP
<?
|
|
# conf_exten_check.php
|
|
#
|
|
# Copyright (C) 2006 Matt Florell <vicidial@gmail.com> LICENSE: GPLv2
|
|
#
|
|
# This script is designed purely to send whether the meetme conference has live channels connected and which they are
|
|
# This script depends on the server_ip being sent and also needs to have a valid user/pass from the vicidial_users table
|
|
#
|
|
# required variables:
|
|
# - $server_ip
|
|
# - $session_name
|
|
# - $user
|
|
# - $pass
|
|
# optional variables:
|
|
# - $format - ('text','debug')
|
|
# - $ACTION - ('refresh','register')
|
|
# - $client - ('agc','vdc')
|
|
# - $conf_exten - ('8600011',...)
|
|
# - $exten - ('123test',...)
|
|
# - $auto_dial_level - ('0','1','1.2',...)
|
|
# - $campagentstdisp - ('YES',...)
|
|
#
|
|
|
|
# changes
|
|
# 50509-1054 - First build of script
|
|
# 50511-1112 - Added ability to register a conference room
|
|
# 50610-1159 - Added NULL check on MySQL results to reduced errors
|
|
# 50706-1429 - script changed to not use HTTP login vars, user/pass instead
|
|
# 50706-1525 - Added date-time display for vicidial client display
|
|
# 50816-1500 - Added random update to vicidial_live_agents table for vdc users
|
|
# 51121-1353 - Altered echo statements for several small PHP speed optimizations
|
|
# 60410-1424 - Added ability to grab calls-being-placed and agent status
|
|
# 60421-1405 - check GET/POST vars lines with isset to not trigger PHP NOTICES
|
|
#
|
|
|
|
require("dbconnect.php");
|
|
|
|
### If you have globals turned off uncomment these lines
|
|
if (isset($_GET["user"])) {$user=$_GET["user"];}
|
|
elseif (isset($_POST["user"])) {$user=$_POST["user"];}
|
|
if (isset($_GET["pass"])) {$pass=$_GET["pass"];}
|
|
elseif (isset($_POST["pass"])) {$pass=$_POST["pass"];}
|
|
if (isset($_GET["server_ip"])) {$server_ip=$_GET["server_ip"];}
|
|
elseif (isset($_POST["server_ip"])) {$server_ip=$_POST["server_ip"];}
|
|
if (isset($_GET["session_name"])) {$session_name=$_GET["session_name"];}
|
|
elseif (isset($_POST["session_name"])) {$session_name=$_POST["session_name"];}
|
|
if (isset($_GET["format"])) {$format=$_GET["format"];}
|
|
elseif (isset($_POST["format"])) {$format=$_POST["format"];}
|
|
if (isset($_GET["ACTION"])) {$ACTION=$_GET["ACTION"];}
|
|
elseif (isset($_POST["ACTION"])) {$ACTION=$_POST["ACTION"];}
|
|
if (isset($_GET["client"])) {$client=$_GET["client"];}
|
|
elseif (isset($_POST["client"])) {$client=$_POST["client"];}
|
|
if (isset($_GET["conf_exten"])) {$conf_exten=$_GET["conf_exten"];}
|
|
elseif (isset($_POST["conf_exten"])) {$conf_exten=$_POST["conf_exten"];}
|
|
if (isset($_GET["exten"])) {$exten=$_GET["exten"];}
|
|
elseif (isset($_POST["exten"])) {$exten=$_POST["exten"];}
|
|
if (isset($_GET["auto_dial_level"])) {$auto_dial_level=$_GET["auto_dial_level"];}
|
|
elseif (isset($_POST["auto_dial_level"])) {$auto_dial_level=$_POST["auto_dial_level"];}
|
|
if (isset($_GET["campagentstdisp"])) {$campagentstdisp=$_GET["campagentstdisp"];}
|
|
elseif (isset($_POST["campagentstdisp"])) {$campagentstdisp=$_POST["campagentstdisp"];}
|
|
|
|
# default optional vars if not set
|
|
if (!isset($format)) {$format="text";}
|
|
if (!isset($ACTION)) {$ACTION="refresh";}
|
|
if (!isset($client)) {$client="agc";}
|
|
|
|
$version = '0.0.8';
|
|
$build = '60421-1405';
|
|
$StarTtime = date("U");
|
|
$NOW_DATE = date("Y-m-d");
|
|
$NOW_TIME = date("Y-m-d H:i:s");
|
|
$FILE_TIME = date("Ymd_His");
|
|
if (!isset($query_date)) {$query_date = $NOW_DATE;}
|
|
$random = (rand(1000000, 9999999) + 10000000);
|
|
|
|
|
|
$stmt="SELECT count(*) from vicidial_users where user='$user' and pass='$pass' and user_level > 0;";
|
|
if ($DB) {echo "|$stmt|\n";}
|
|
$rslt=mysql_query($stmt, $link);
|
|
$row=mysql_fetch_row($rslt);
|
|
$auth=$row[0];
|
|
|
|
if( (strlen($user)<2) or (strlen($pass)<2) or ($auth==0))
|
|
{
|
|
echo "Unzulässig Benutzername/Kennwort: |$user|$pass|\n";
|
|
exit;
|
|
}
|
|
else
|
|
{
|
|
|
|
if( (strlen($server_ip)<6) or (!isset($server_ip)) or ( (strlen($session_name)<12) or (!isset($session_name)) ) )
|
|
{
|
|
echo "Unzulässig server_ip: |$server_ip| or Unzulässig session_name: |$session_name|\n";
|
|
exit;
|
|
}
|
|
else
|
|
{
|
|
$stmt="SELECT count(*) from web_client_sessions where session_name='$session_name' and server_ip='$server_ip';";
|
|
if ($DB) {echo "|$stmt|\n";}
|
|
$rslt=mysql_query($stmt, $link);
|
|
$row=mysql_fetch_row($rslt);
|
|
$SNauth=$row[0];
|
|
if($SNauth==0)
|
|
{
|
|
echo "Unzulässig session_name: |$session_name|$server_ip|\n";
|
|
exit;
|
|
}
|
|
else
|
|
{
|
|
# do nothing for now
|
|
}
|
|
}
|
|
}
|
|
|
|
if ($format=='debug')
|
|
{
|
|
echo "<html>\n";
|
|
echo "<head>\n";
|
|
echo "<!-- VERSION: $version BAU: $build MEETME: $conf_exten server_ip: $server_ip-->\n";
|
|
echo "<title>Conf Verlängerung Überprüfung";
|
|
echo "</title>\n";
|
|
echo "</head>\n";
|
|
echo "<BODY BGCOLOR=white marginheight=0 marginwidth=0 leftmargin=0 topmargin=0>\n";
|
|
}
|
|
|
|
if ($ACTION == 'refresh')
|
|
{
|
|
$MT[0]='';
|
|
$row=''; $rowx='';
|
|
$channel_live=1;
|
|
if (strlen($conf_exten)<1)
|
|
{
|
|
$channel_live=0;
|
|
echo "Conf Exten $conf_exten ist unzulässig\n";
|
|
exit;
|
|
}
|
|
else
|
|
{
|
|
|
|
if ($client == 'vdc')
|
|
{
|
|
if ($auto_dial_level > 0)
|
|
{
|
|
### update the vicidial_live_agents every second with a new random number so it is shown to be alive
|
|
$stmt="UPDATE vicidial_live_agents set random_id='$random' where user='$user' and server_ip='$server_ip';";
|
|
if ($format=='debug') {echo "\n<!-- $stmt -->";}
|
|
$rslt=mysql_query($stmt, $link);
|
|
|
|
|
|
|
|
if ($campagentstdisp == 'YES')
|
|
{
|
|
### grab the status of this agent to display
|
|
$stmt="SELECT status,campaign_id from vicidial_live_agents where user='$user' and server_ip='$server_ip';";
|
|
if ($DB) {echo "|$stmt|\n";}
|
|
$rslt=mysql_query($stmt, $link);
|
|
$row=mysql_fetch_row($rslt);
|
|
$Astatus=$row[0];
|
|
$Acampaign=$row[1];
|
|
|
|
### grab the number of calls being placed from this server and campaign
|
|
$stmt="SELECT count(*) from vicidial_auto_calls where server_ip='$server_ip' and status NOT IN('XFER') and campaign_id='$Acampaign';";
|
|
if ($DB) {echo "|$stmt|\n";}
|
|
$rslt=mysql_query($stmt, $link);
|
|
$row=mysql_fetch_row($rslt);
|
|
$RingCalls=$row[0];
|
|
}
|
|
else
|
|
{
|
|
$Astatus='N';
|
|
$RingCalls='N';
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$Astatus='N';
|
|
$RingCalls='N';
|
|
}
|
|
|
|
echo 'DateTime: ' . $NOW_TIME . '|UnixTime: ' . $StarTtime . '|Status: ' . $Astatus . '|CampCalls: ' . $RingCalls . "|\n";
|
|
|
|
}
|
|
$total_conf=0;
|
|
$stmt="SELECT channel FROM live_sip_channels where server_ip = '$server_ip' and extension = '$conf_exten';";
|
|
if ($format=='debug') {echo "\n<!-- $stmt -->";}
|
|
$rslt=mysql_query($stmt, $link);
|
|
if ($rslt) {$sip_list = mysql_num_rows($rslt);}
|
|
# echo "$sip_list|";
|
|
$loop_count=0;
|
|
while ($sip_list>$loop_count)
|
|
{
|
|
$loop_count++; $total_conf++;
|
|
$row=mysql_fetch_row($rslt);
|
|
$FührungA[$total_conf] = "$row[0]";
|
|
if ($format=='debug') {echo "\n<!-- $row[0] -->";}
|
|
}
|
|
$stmt="SELECT channel FROM live_channels where server_ip = '$server_ip' and extension = '$conf_exten';";
|
|
if ($format=='debug') {echo "\n<!-- $stmt -->";}
|
|
$rslt=mysql_query($stmt, $link);
|
|
if ($rslt) {$channels_list = mysql_num_rows($rslt);}
|
|
# echo "$channels_list|";
|
|
$loop_count=0;
|
|
while ($channels_list>$loop_count)
|
|
{
|
|
$loop_count++; $total_conf++;
|
|
$row=mysql_fetch_row($rslt);
|
|
$FührungA[$total_conf] = "$row[0]";
|
|
if ($format=='debug') {echo "\n<!-- $row[0] -->";}
|
|
}
|
|
}
|
|
$channels_list = ($channels_list + $sip_list);
|
|
echo "$channels_list|";
|
|
|
|
$counter=0;
|
|
$countecho='';
|
|
while($total_conf > $counter)
|
|
{
|
|
$counter++;
|
|
$countecho = "$countecho$FührungA[$counter] ~";
|
|
# echo "$FührungA[$counter] ~";
|
|
}
|
|
|
|
echo "$countecho\n";
|
|
}
|
|
|
|
if ($ACTION == 'register')
|
|
{
|
|
$MT[0]='';
|
|
$row=''; $rowx='';
|
|
$channel_live=1;
|
|
if ( (strlen($conf_exten)<1) || (strlen($exten)<1) )
|
|
{
|
|
$channel_live=0;
|
|
echo "Conf Exten $conf_exten ist unzulässig or Exten $exten ist unzulässig\n";
|
|
exit;
|
|
}
|
|
else
|
|
{
|
|
$stmt="UPDATE conferences set extension='$exten' where server_ip = '$server_ip' and conf_exten = '$conf_exten';";
|
|
if ($format=='debug') {echo "\n<!-- $stmt -->";}
|
|
$rslt=mysql_query($stmt, $link);
|
|
}
|
|
echo "Konferenz $conf_exten ist zu registriert worden $exten\n";
|
|
}
|
|
|
|
|
|
|
|
if ($format=='debug')
|
|
{
|
|
$ENDtime = date("U");
|
|
$RUNtime = ($ENDtime - $StarTtime);
|
|
echo "\n<!-- Indexlaufzeit: $RUNtime Sekunden -->";
|
|
echo "\n</body>\n</html>\n";
|
|
}
|
|
|
|
exit;
|
|
|
|
?>
|