summaryrefslogtreecommitdiff
path: root/www-ssl
diff options
context:
space:
mode:
authorcookie <cookie@29ba0400-6e00-0410-a75a-ca02368028f8>2006-11-08 21:00:04 +0000
committercookie <cookie@29ba0400-6e00-0410-a75a-ca02368028f8>2006-11-08 21:00:04 +0000
commit07776d01ef06dcd25df25303c92a9fa8c650ca45 (patch)
tree4d0bebaa1b4803a9641e3cd50a1efef2be61349f /www-ssl
parent54eddebc929ca92009234cbc030522125a9a2019 (diff)
grundgeruest fur srevice (jabberbot)
git-svn-id: svn://svn.cccv.de/engel-system@150 29ba0400-6e00-0410-a75a-ca02368028f8
Diffstat (limited to 'www-ssl')
-rwxr-xr-xwww-ssl/admin/dect_clear.php25
-rwxr-xr-xwww-ssl/admin/dect_cron.php69
-rwxr-xr-xwww-ssl/admin/dect_cron_asterisk.php120
-rw-r--r--www-ssl/inc/config_MessegeServer.php8
-rw-r--r--www-ssl/inc/funktion_SendMessenges.php18
5 files changed, 26 insertions, 214 deletions
diff --git a/www-ssl/admin/dect_clear.php b/www-ssl/admin/dect_clear.php
deleted file mode 100755
index 2b20d6c5..00000000
--- a/www-ssl/admin/dect_clear.php
+++ /dev/null
@@ -1,25 +0,0 @@
-<?PHP
-
-
-include ("./inc/db.php");
-include ("./inc/config.php");
-include ("./inc/funktion_modem.php");
-
-
-$SQL = "SELECT DECT FROM `User`;";
-
-$Erg = mysql_query($SQL, $con);
-
-echo mysql_error($con);
-
-for( $i=0; $i<mysql_num_rows($Erg); $i++)
-{
- $Number = "#10". mysql_result($Erg, $i, "DECT");
- if( strlen($Number)==7)
- DialNumber( $Number);
-}
-
-return 0;
-
-?>
-
diff --git a/www-ssl/admin/dect_cron.php b/www-ssl/admin/dect_cron.php
deleted file mode 100755
index 00119567..00000000
--- a/www-ssl/admin/dect_cron.php
+++ /dev/null
@@ -1,69 +0,0 @@
-<?PHP
-
-
-include ("./inc/db.php");
-include ("./inc/config.php");
-include ("./inc/funktion_modem.php");
-
-//ausfuerungs Ruetmuss (in s)
-$StartTimeBeforEvent = (60/4)*60;
-
-
-
-
-function UID2DECT($UID)
-{
- include ("./inc/db.php");
-
- $SQL = "SELECT DECT FROM `User` WHERE UID='$UID'";
- $Erg = mysql_query($SQL, $con);
-
- return mysql_result($Erg, 0);
-}
-
-
-$SQL = "SELECT Shifts.DateS, ShiftEntry.UID ".
- "FROM `Shifts` INNER JOIN `ShiftEntry` ON `Shifts`.`SID` = `ShiftEntry`.`SID` ".
- "WHERE ((`Shifts`.`DateS`>'". gmdate("Y-m-d H:i:s", time()+3600+120). "') AND ".
- "(`Shifts`.`DateS`<='". gmdate("Y-m-d H:i:s", time()+3600+120+$StartTimeBeforEvent). "') );";
-// "WHERE (Shifts.DateS>'2004-12-27 10:45:00' AND ".
-// "Shifts.DateS<='2004-12-27 11:00:00');";
-
-$Erg = mysql_query($SQL, $con);
-
-echo mysql_error($con);
-
-for( $i=0; $i<mysql_num_rows($Erg); $i++)
-{
-// echo mysql_result($Erg, $i, "UID");
- if( mysql_result($Erg, $i, "UID")>0)
- {
- $SQL2 = "SELECT DECT FROM `User` WHERE ( `UID`='". mysql_result($Erg, $i, "UID"). "');";
- $Erg2 = mysql_query($SQL2, $con);
-
- $Number = mysql_result($Erg2, 0, "DECT");
- if( $Number!="")
- {
- $TimeH = substr( mysql_result($Erg, $i, "DateS"), 11, 2);
- $TimeM = substr( mysql_result($Erg, $i, "DateS"), 14, 2);
- $TimeM = substr( mysql_result($Erg, $i, "DateS"), 14, 2) - 5;
- if( $TimeM < 0 )
- {
- $TimeM += 60;
- $TimeH -= 1;
- }
- if( $TimeH < 0 )
- $TimeH += 24;
-
- if( strlen( $TimeH) == 1)
- $TimeH = "0".$TimeH;
-
- SetWackeup( $Number, $TimeH, $TimeM);
- }
- }
-}
-
-return 0;
-
-?>
-
diff --git a/www-ssl/admin/dect_cron_asterisk.php b/www-ssl/admin/dect_cron_asterisk.php
deleted file mode 100755
index 06ff2d50..00000000
--- a/www-ssl/admin/dect_cron_asterisk.php
+++ /dev/null
@@ -1,120 +0,0 @@
-<?PHP
-
-include ("./inc/db.php");
-include ("./inc/config.php");
-
-//ausfuerungs Ruetmuss (in s)
-$StartTimeBeforEvent = (60/4)*60;
-$DebugDECT=FALSE;
-
-//Setting Asterisk
-$Content="Engelsystem";
-$IAXserver="Engelsystem:engelengel@10.1.1.1";
-
-function DialNumber( $DECTnumber, $TimeH, $TimeM, $Room, $Engeltype)
-{
- global $Content, $IAXserver, $ModemEnable;
-
- $CallFile = "/tmp/call_". date("Ymd_His"). "_$DECTnumber";
- if( $ModemEnable)
- {
- $file = fopen( $CallFile, 'w' );
- if( $file != FALSE)
- {
- fputs( $file, "Channel: IAX2/$IAXserver/Engelserver@$Content\n");
- fputs( $file, "Callerid: $Content\n");
- fputs( $file, "Context: $Content\n");
- fputs( $file, "Extension: s\n");
- fputs( $file, "MaxRetries: 3\n");
- fputs( $file, "RetryTime: 10\n");
- fputs( $file, "SetVar: TimeH=$TimeH\n");
- fputs( $file, "SetVar: TimeM=$TimeM\n");
- fputs( $file, "SetVar: DECTnumber=$DECTnumber\n");
- fputs( $file, "SetVar: Room=$Room\n");
- fputs( $file, "SetVar: Engeltype=$Engeltype\n");
- fclose($file);
-
- system( "cat $CallFile");
- system( "chmod 777 $CallFile");
- system( "mv $CallFile /var/spool/asterisk/outgoing");
- }
- }
- else
- echo "Modem is Disable, number:'$DECTnumber' with the Parameter, Time:'$TimeH:$TimeM', Room:'$Room', Type:'$Engeltype' was called<br>\n";
-}
-
-function UID2DECT($UID)
-{
- global $con;
- $SQL = "SELECT DECT FROM `User` WHERE UID='$UID'";
- $Erg = mysql_query($SQL, $con);
- return mysql_result($Erg, 0);
-}
-function RID2Room($RID)
-{
- global $con;
- $SQL = "SELECT Name FROM `Room` WHERE RID='$RID'";
- $Erg = mysql_query($SQL, $con);
- return mysql_result($Erg, 0);
-}
-
-function TID2Engeltype($TID)
-{
- global $con;
- $SQL = "SELECT Name FROM `EngelType` WHERE TID='$TID'";
- $Erg = mysql_query($SQL, $con);
- return mysql_result($Erg, 0);
-}
-
-
-
-$SQL = "SELECT Shifts.DateS, Shifts.RID, ShiftEntry.UID, ShiftEntry.TID ".
- "FROM `Shifts` INNER JOIN `ShiftEntry` ON `Shifts`.`SID` = `ShiftEntry`.`SID` ";
-if( $DebugDECT)
- $SQL .= "WHERE (Shifts.DateS>'2004-12-27 10:45:00' AND ".
- "Shifts.DateS<='2004-12-27 11:00:00');";
-else
- $SQL .= "WHERE ((`Shifts`.`DateS`>'". gmdate("Y-m-d H:i:s", time()+3600+120). "') AND ".
- "(`Shifts`.`DateS`<='". gmdate("Y-m-d H:i:s", time()+3600+120+$StartTimeBeforEvent). "') );";
-
-$Erg = mysql_query($SQL, $con);
-
-echo mysql_error($con);
-
-for( $i=0; $i<mysql_num_rows($Erg); $i++)
-{
-// echo mysql_result($Erg, $i, "UID");
- if( mysql_result($Erg, $i, "UID")>0)
- {
- $SQL2 = "SELECT DECT FROM `User` WHERE ( `UID`='". mysql_result($Erg, $i, "UID"). "');";
- $Erg2 = mysql_query($SQL2, $con);
-
- $Number = mysql_result($Erg2, 0, "DECT");
- if( $Number!="")
- {
- $TimeH = substr( mysql_result($Erg, $i, "DateS"), 11, 2);
- $TimeM = substr( mysql_result($Erg, $i, "DateS"), 14, 2);
- $TimeM = substr( mysql_result($Erg, $i, "DateS"), 14, 2) - 5;
- if( $TimeM < 0 )
- {
- $TimeM += 60;
- $TimeH -= 1;
- }
- if( $TimeH < 0 )
- $TimeH += 24;
-
- if( strlen( $TimeH) == 1)
- $TimeH = "0".$TimeH;
-
- $Room = RID2Room( mysql_result($Erg, $i, "RID"));
- $EngelType = TID2Engeltype( mysql_result($Erg, $i, "TID"));
- DialNumber( $Number, $TimeH, $TimeM, $Room, $EngelType);
- }
- }
-}
-
-return 0;
-
-
-?>
-
diff --git a/www-ssl/inc/config_MessegeServer.php b/www-ssl/inc/config_MessegeServer.php
new file mode 100644
index 00000000..3454ae0c
--- /dev/null
+++ b/www-ssl/inc/config_MessegeServer.php
@@ -0,0 +1,8 @@
+<?
+// Set the ip and port we will listen on
+define( SERVER_ADDRESS, "127.0.0.1" );
+define( SERVER_PORT, 9000 );
+
+define( DEBUG, TRUE);
+
+?>
diff --git a/www-ssl/inc/funktion_SendMessenges.php b/www-ssl/inc/funktion_SendMessenges.php
new file mode 100644
index 00000000..c6676c6c
--- /dev/null
+++ b/www-ssl/inc/funktion_SendMessenges.php
@@ -0,0 +1,18 @@
+<?php
+
+
+function SendData($Data)
+{
+ include("./inc/config_MessegeServer.php");
+ // Create a UDP socket
+ $sock = socket_create(AF_INET, SOCK_DGRAM, SOL_UDP);
+ //send packed
+ socket_sendto($sock, $Data, 9999, 0x4, SERVER_ADDRESS, SERVER_PORT);
+}
+
+function SendMessageJabber($Adresse, $Nachricht)
+{
+ SendData( "#message $Adresse $Nachricht");
+}
+
+?>