LICENSE: AGPLv2 # # This script is designed to open up when a live_inbound call comes in giving the user # options of what to do with the call or options to lookup the callerID on various web sites # 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 # - $uniqueid - ('1234567890.123456',...) # - $user # - $pass # optional variables: # - $format - ('text','debug') # - $vmail_box - ('101','1234',...) # - $exten - ('cc101','testphone','49-1','1234','913125551212',...) # - $ext_context - ('default','demo',...) # - $ext_priority - ('1','2',...) # - $voicemail_dump_exten - ('85026666666666') # - $local_web_callerID_URL_enc - ( rawurlencoded custom callerid lookup URL) # # # changes # 50428-1500 - First build of script display only # 50429-1241 - some formatting, hangup and Vmail redirect, 30s timeout on actions, and CID web lookup links # 50503-1244 - added session_name checking for extra security # 50711-1203 - removed HTTP authentication in favor of user/pass vars # 60421-1043 - check GET/POST vars lines with isset to not trigger PHP NOTICES # 60619-1205 - Added variable filters to close security holes for login form # 90508-0727 - Changed to PHP long tags # 130328-0025 - Converted ereg to preg functions # 130603-2215 - Added login lockout for 15 minutes after 10 failed logins, and other security fixes # 130802-1008 - Changed to PHP mysqli functions # 140811-0843 - Changed to use QXZ function for echoing text # 141216-2120 - Added language settings lookups and user/pass variable standardization # $version = '0.0.12'; $build = '141216-2120'; require_once("dbconnect_mysqli.php"); require_once("functions.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["uniqueid"])) {$uniqueid=$_GET["uniqueid"];} elseif (isset($_POST["uniqueid"])) {$uniqueid=$_POST["uniqueid"];} if (isset($_GET["format"])) {$format=$_GET["format"];} elseif (isset($_POST["format"])) {$format=$_POST["format"];} if (isset($_GET["exten"])) {$exten=$_GET["exten"];} elseif (isset($_POST["exten"])) {$exten=$_POST["exten"];} if (isset($_GET["vmail_box"])) {$vmail_box=$_GET["vmail_box"];} elseif (isset($_POST["vmail_box"])) {$vmail_box=$_POST["vmail_box"];} if (isset($_GET["ext_context"])) {$ext_context=$_GET["ext_context"];} elseif (isset($_POST["ext_context"])) {$ext_context=$_POST["ext_context"];} if (isset($_GET["ext_priority"])) {$ext_priority=$_GET["ext_priority"];} elseif (isset($_POST["ext_priority"])) {$ext_priority=$_POST["ext_priority"];} if (isset($_GET["voicemail_dump_exten"])) {$voicemail_dump_exten=$_GET["voicemail_dump_exten"];} elseif (isset($_POST["voicemail_dump_exten"])) {$voicemail_dump_exten=$_POST["voicemail_dump_exten"];} if (isset($_GET["local_web_callerID_URL_enc"])) {$local_web_callerID_URL_enc=$_GET["local_web_callerID_URL_enc"];} elseif (isset($_POST["local_web_callerID_URL_enc"])) {$local_web_callerID_URL_enc=$_POST["local_web_callerID_URL_enc"];} if (isset($_GET["local_web_callerID_URL_enc"])) {$local_web_callerID_URL = rawurldecode($local_web_callerID_URL_enc);} else {$local_web_callerID_URL = '';} $user=preg_replace("/\'|\"|\\\\|;| /","",$user); $pass=preg_replace("/\'|\"|\\\\|;| /","",$pass); $session_name = preg_replace("/\'|\"|\\\\|;/","",$session_name); $server_ip = preg_replace("/\'|\"|\\\\|;/","",$server_ip); # default optional vars if not set if (!isset($format)) {$format="text";} $StarTtime = date("U"); $NOW_DATE = date("Y-m-d"); $NOW_TIME = date("Y-m-d H:i:s"); if (!isset($query_date)) {$query_date = $NOW_DATE;} $DO = '-1'; if ( (preg_match("/^Zap/i",$channel)) and (!preg_match("/-/i",$channel)) ) {$channel = "$channel$DO";} ############################################# ##### START SYSTEM_SETTINGS AND USER LANGUAGE LOOKUP ##### $VUselected_language = ''; $stmt="SELECT selected_language from vicidial_users where user='$user';"; if ($DB) {echo "|$stmt|\n";} $rslt=mysql_to_mysqli($stmt, $link); if ($mel > 0) {mysql_error_logging($NOW_TIME,$link,$mel,$stmt,'00XXX',$user,$server_ip,$session_name,$one_mysql_log);} $sl_ct = mysqli_num_rows($rslt); if ($sl_ct > 0) { $row=mysqli_fetch_row($rslt); $VUselected_language = $row[0]; } $stmt = "SELECT use_non_latin,enable_languages,language_method FROM system_settings;"; $rslt=mysql_to_mysqli($stmt, $link); if ($mel > 0) {mysql_error_logging($NOW_TIME,$link,$mel,$stmt,'00XXX',$user,$server_ip,$session_name,$one_mysql_log);} if ($DB) {echo "$stmt\n";} $qm_conf_ct = mysqli_num_rows($rslt); if ($qm_conf_ct > 0) { $row=mysqli_fetch_row($rslt); $non_latin = $row[0]; $SSenable_languages = $row[1]; $SSlanguage_method = $row[2]; } ##### END SETTINGS LOOKUP ##### ########################################### if ($non_latin < 1) { $user=preg_replace("/[^-_0-9a-zA-Z]/","",$user); } $auth=0; $auth_message = user_authorization($user,$pass,'',0,1,0,0); if ($auth_message == 'GOOD') {$auth=1;} if( (strlen($user)<2) or (strlen($pass)<2) or ($auth==0)) { echo _QXZ("Invalid Username/Password:")." |$user|$pass|$auth_message|\n"; exit; } else { if( (strlen($server_ip)<6) or (!isset($server_ip)) or ( (strlen($session_name)<12) or (!isset($session_name)) ) ) { echo _QXZ("Invalid server_ip:")." |$server_ip| or Invalid 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_to_mysqli($stmt, $link); $row=mysqli_fetch_row($rslt); $SNauth=$row[0]; if($SNauth==0) { echo _QXZ("Invalid session_name:")." |$session_name|$server_ip|\n"; exit; } else { # do nothing for now } } } if ($format=='debug') { $forever_stop=0; $user_abb = "$user$user$user$user"; while ( (strlen($user_abb) > 4) and ($forever_stop < 200) ) {$user_abb = preg_replace("/^./i","",$user_abb); $forever_stop++;} echo "\n"; echo "
\n"; echo "\n"; ?> "._QXZ("LIVE INBOUND CALL"); echo "\n"; echo "\n"; echo "\n"; echo "| "._QXZ("Channel").": | $row[1] |
| "._QXZ("CallerID").": | $row[3] |
| \n"; $phone = preg_replace("/.*\.*/i","",$phone); $NPA = substr($phone, 0, 3); $NXX = substr($phone, 3, 3); $XXXX = substr($phone, 6, 4); $D='-'; echo "GOOGLE - \n"; echo "ANYWHO - \n"; echo "SWITCHBOARD - \n"; echo "VERIZON - \n"; echo "WHITEPAGES - \n"; echo "411.COM - \n"; echo "411.COM - \n"; $local_web_callerID_QUERY_STRING =''; $local_web_callerID_QUERY_STRING.="?callerID_areacode=$NPA"; $local_web_callerID_QUERY_STRING.="&callerID_prefix=$NXX"; $local_web_callerID_QUERY_STRING.="&callerID_last4=$XXXX"; $local_web_callerID_QUERY_STRING.="&callerID_Time=$row[6]"; $local_web_callerID_QUERY_STRING.="&callerID_Channel=$row[1]"; $local_web_callerID_QUERY_STRING.="&callerID_uniqueID=$row[0]"; $local_web_callerID_QUERY_STRING.="&callerID_phone_ext=$row[5]"; $local_web_callerID_QUERY_STRING.="&callerID_server_ip=$row[2]"; $local_web_callerID_QUERY_STRING.="&callerID_extension=$row[4]"; $local_web_callerID_QUERY_STRING.="&callerID_inbound_number=$row[8]"; $local_web_callerID_QUERY_STRING.="&callerID_comment_a=$row[9]"; $local_web_callerID_QUERY_STRING.="&callerID_comment_b=$row[10]"; $local_web_callerID_QUERY_STRING.="&callerID_comment_c=$row[11]"; $local_web_callerID_QUERY_STRING.="&callerID_comment_d=$row[12]"; $local_web_callerID_QUERY_STRING.="&callerID_comment_e=$row[13]"; echo "CUSTOM - \n"; echo " | |
| "._QXZ("Number Dialed:")." | $row[8] |
| "._QXZ("Notes:")." | $row[9]|$row[10]|$row[11]|$row[12]|$row[13]| |
| \n"; echo ""._QXZ("HANGUP")." - \n"; echo ""._QXZ("SEND TO MY VOICEMAIL")."\n"; echo " | |