From 577a5a3423d4298dd5fcd3e38934e79205ac2428 Mon Sep 17 00:00:00 2001 From: cookie Date: Sat, 12 May 2007 11:02:27 +0000 Subject: aenderungen vom 23c3 git-svn-id: svn://svn.cccv.de/engel-system@229 29ba0400-6e00-0410-a75a-ca02368028f8 --- www-ssl/inc/funktion_cron.php | 35 +++++++++++++++++++++++++++++++---- 1 file changed, 31 insertions(+), 4 deletions(-) (limited to 'www-ssl/inc/funktion_cron.php') diff --git a/www-ssl/inc/funktion_cron.php b/www-ssl/inc/funktion_cron.php index 09b627d2..4ff383dc 100755 --- a/www-ssl/inc/funktion_cron.php +++ b/www-ssl/inc/funktion_cron.php @@ -43,11 +43,38 @@ function DialNumberIAX( $DECTnumber, $Time, $RID, $TID) if( strlen( $TimeH) == 1) $TimeH = "0".$TimeH; - // IAX file Schareiebn - $CallFile = "/tmp/call_". date("Ymd_His"). "_$DECTnumber"; - if( $IAXenable) { + $post_data = array(); + $post_data['code'] = "89o8eu9cg4"; + $post_data['callerid'] = "1023"; + $post_data['nr'] = "$DECTnumber"; + //$post_data['message'] = "Deine schicht beginnt in ein paar minuten . . . your shift beginns in a few minutes "; + $post_data['message'] = "die-nee shisht beh-kinned , in where-neegin me-nooten . . . your shift beginns in a few minutes "; + $url = "https://23c3.eventphone.de/~bef/call.php"; + + $o=""; + foreach ($post_data as $k=>$v) + { + $o.= "$k=".urlencode(utf8_encode($v))."&"; + } + $post_data=substr($o,0,-1); + + $ch = curl_init(); + curl_setopt($ch, CURLOPT_POST, 1); + curl_setopt($ch, CURLOPT_HEADER, 0); + curl_setopt($ch, CURLOPT_URL, $url); + curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data); + curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); + $result = curl_exec($ch); + echo curl_error($ch); + curl_close($ch); + + + /* + // IAX file Schareiebn + $CallFile = "/tmp/call_". date("Ymd_His"). "_$DECTnumber"; + if($DebugDECT) echo "IAX create file for dialing Number $DECTnumber\n"; $file = fopen( $CallFile, 'w' ); if( $file != FALSE) @@ -66,7 +93,7 @@ function DialNumberIAX( $DECTnumber, $Time, $RID, $TID) fclose($file); system( "chmod 777 $CallFile"); system( "mv $CallFile /var/spool/asterisk/outgoing"); - } + }*/ } else if($DebugDECT) echo "IAX is disable\n"; -- cgit v1.2.3-54-g00ecf