all old Update ways are selectable now

git-svn-id: svn://svn.cccv.de/engel-system@244 29ba0400-6e00-0410-a75a-ca02368028f8
main
cookie 17 years ago
parent a9cb2be6ca
commit 89cc434d7b

@ -35,8 +35,9 @@ $GlobalZeileProStunde = 4;
$Tempdir="/tmp"; $Tempdir="/tmp";
//Pentabarf ConferenzDI für UpdateDB //Pentabarf ConferenzDI für UpdateDB
$PentabarfXMLhost = "pentabarf.cccv.de"; $PentabarfXMLhost = "cccv.pentabarf.org";
$PentabarfXMLpath = "Xcal/conference/"; $PentabarfXMLpath = "Xcal/conference/";
$PentabarfXMLEventID = "31"; $PentabarfXMLEventID = "31";
$PentabarfGetWith = "fsockopen"; // "fsockopen"/"fopen"/"wget"/"lynx"
?> ?>

@ -45,66 +45,117 @@ echo "\n\n<br>\n<h1>XML File:</h1>\n";
if( isset($_POST["PentabarfUser"]) && isset($_POST["password"]) && isset($_POST["PentabarfURL"])) if( isset($_POST["PentabarfUser"]) && isset($_POST["password"]) && isset($_POST["PentabarfURL"]))
{ {
echo "Update XCAL-File from Pentabarf.."; echo "Update XCAL-File from Pentabarf..";
if($PentabarfGetWith=="fsockopen")
//backup error messeges and delate
$Backuperror_messages = $error_messages;
$fp = fsockopen( "ssl://$PentabarfXMLhost", 443, $errno, $errstr, 30);
// $error_messages = $Backuperror_messages;
if( !$fp)
{
echo "<h2>fail: File 'https://$PentabarfXMLhost/$PentabarfXMLpath$PentabarfXMLEventID' not readable!".
"[$errstr ($errno)]</h2>";
}
else
{ {
if( ($fileOut = fopen( "$Tempdir/engelXML", "w")) != FALSE) //backup error messeges and delate
$Backuperror_messages = $error_messages;
$fp = fsockopen( "ssl://$PentabarfXMLhost", 443, $errno, $errstr, 30);
// $error_messages = $Backuperror_messages;
if( !$fp)
{ {
$head = 'GET /'. $PentabarfXMLpath. $PentabarfXMLEventID. ' HTTP/1.1'."\r\n". echo "<h2>fail: File 'https://$PentabarfXMLhost/$PentabarfXMLpath$PentabarfXMLEventID' not readable!".
'Host: '. $PentabarfXMLhost. "\r\n". "[$errstr ($errno)]</h2>";
'User-Agent: Engelsystem'. "\r\n". }
'Authorization: Basic '. else
base64_encode($_POST["PentabarfUser"]. ':'. $_POST["password"])."\r\n". {
"\r\n"; if( ($fileOut = fopen( "$Tempdir/engelXML", "w")) != FALSE)
fputs( $fp, $head); {
$Zeilen = -1; $head = 'GET /'. $PentabarfXMLpath. $PentabarfXMLEventID. ' HTTP/1.1'."\r\n".
while (!feof($fp)) 'Host: '. $PentabarfXMLhost. "\r\n".
{ 'User-Agent: Engelsystem'. "\r\n".
$Temp= fgets($fp,1024); 'Authorization: Basic '.
base64_encode($_POST["PentabarfUser"]. ':'. $_POST["password"])."\r\n".
// ende des headers "\r\n";
if( $Temp== "f20\r\n" ) fputs( $fp, $head);
{ $Zeilen = -1;
$Zeilen = 0; while (!feof($fp))
$Temp=""; {
$Temp= fgets($fp,1024);
// ende des headers
if( $Temp== "f20\r\n" )
{
$Zeilen = 0;
$Temp="";
}
//file ende?
if( $Temp=="0\r\n")
break;
if( ($Zeilen>-1) && ($Temp!="ffb\r\n") )
{
//steuerzeichen ausfiltern
if( strpos( "#$Temp", "\r\n") > 0)
$Temp = substr($Temp, 0, strlen($Temp)-2);
if( strpos( "#$Temp", "1005") > 0)
$Temp = "";
if( strpos( "#$Temp", "783") > 0)
$Temp = "";
//schreiben in file
fputs( $fileOut, $Temp);
$Zeilen++;
}
} }
fclose( $fileOut);
//file ende? echo "<br>Es wurden $Zeilen Zeilen eingelesen<br>";
if( $Temp=="0\r\n") }
break; else
echo "<h2>fail: File '$Tempdir/engelXML' not writeable!</h2>";
if( ($Zeilen>-1) && ($Temp!="ffb\r\n") ) fclose($fp);
}
}
elseif($PentabarfGetWith=="fopen")
{
//user uns password in url einbauen
$FileNameIn = "https://". $_POST["PentabarfUser"]. ':'. $_POST["password"]. "@".
$PentabarfXMLhost. "/". $PentabarfXMLpath. $PentabarfXMLEventID;
if( ($fileIn = fopen( $FileNameIn, "r")) != FALSE)
{
if( ($fileOut = fopen( "$Tempdir/engelXML", "w")) != FALSE)
{ {
//steuerzeichen ausfiltern $Zeilen = 0;
if( strpos( "#$Temp", "\r\n") > 0) while (!feof($fileIn))
$Temp = substr($Temp, 0, strlen($Temp)-2); {
if( strpos( "#$Temp", "1005") > 0) $Zeilen++;
$Temp = ""; fputs( $fileOut, fgets( $fileIn));
if( strpos( "#$Temp", "783") > 0) }
$Temp = ""; fclose( $fileOut);
//schreiben in file echo "<br>Es wurden $Zeilen Zeilen eingelesen<br>";
fputs( $fileOut, $Temp);
$Zeilen++;
} }
else
echo "<h2>fail: File '$Tempdir/engelXML' not writeable!</h2>";
fclose( $fileIn);
} }
fclose( $fileOut); else
echo "<h2>fail: File 'https://$PentabarfXMLhost/$PentabarfXMLpath$PentabarfXMLEventID' not readable!</h2>";
echo "<br>Es wurden $Zeilen Zeilen eingelesen<br>"; }
elseif( $PentabarfGetWith=="wget")
{
$Command = "wget --http-user=". $_POST["PentabarfUser"]. " --http-passwd=".$_POST["password"]. " ".
"https://$PentabarfXMLhost/$PentabarfXMLpath$PentabarfXMLEventID".
" --output-file=$Tempdir/engelXMLwgetLog --output-document=$Tempdir/engelXML".
" --no-check-certificate";
echo system( $Command, $Status);
if( $Status==0)
echo "OK.<br>";
else
echo "fail ($Status)($Command).<br>";
}
elseif( $PentabarfGetWith=="lynx")
{
$Command = "lynx -auth=". $_POST["PentabarfUser"]. ":".$_POST["password"]. " -dump ".
"https://$PentabarfXMLhost/$PentabarfXMLpath$PentabarfXMLEventID > $Tempdir/engelXML";
echo system( $Command, $Status);
if( $Status==0)
echo "OK.<br>";
else
echo "fail ($Status)($Command).<br>";
} }
else else
echo "<h2>fail: File '$Tempdir/engelXML' not writeable!</h2>"; echo "<h1>The PentabarfGetWith='$PentabarfGetWith' not supported</h1>";
fclose($fp);
}
} }
else else
{ {

Loading…
Cancel
Save