pentabarf xcal url jetzt zentral configurierbar

daten aus pentabarf werden jetzt mit fopen geholt


git-svn-id: svn://svn.cccv.de/engel-system@147 29ba0400-6e00-0410-a75a-ca02368028f8
This commit is contained in:
cookie 2006-08-31 04:40:50 +00:00
parent 4892750720
commit 6dd3e7e17e
2 changed files with 35 additions and 24 deletions

View File

@ -1,6 +1,6 @@
<?PHP
// Adresse des Webservers
$url = "https://172.16.16.40/";
$url = "https://engelsystem.url/";
// Startverzeichnis des Engelhome
$ENGEL_ROOT = "/engel/";
@ -25,8 +25,8 @@ $crypt_system="md5";
$DEBUG = 0;
// SSL Cert-KEY
$show_SSLCERT = "MD5:<br>AF:32:B9:BE:3F:AE:53:78:1E:1B:6E:82:48:E0:DB:94<br>\n".
"SHA1:<br>B8:07:E8:A4:F3:1A:EF:03:81:C2:44:0C:50:25:3D:1A:A0:E4:AA:76";
$show_SSLCERT = "MD5:<br>FF:FF:FF:FF:FF:FF:FF:FF:FF:FF:FF:FF:FF:FF:FF:FF<br>\n".
"SHA1:<br>FF:FF:FF:FF:FF:FF:FF:FF:FF:FF:FF:FF:FF:FF:FF:FF:FF:FF:FF:FF";
//globale const. fuer schischtplan
$GlobalZeileProStunde = 4;
@ -34,11 +34,10 @@ $GlobalZeileProStunde = 4;
//ist ein modem angeschlossen
$ModemEnable = false;
//soll das xcal-file von penterbarf
//$DataGetMeth="wget";
$DataGetMeth="lynx";
//Tempdir
$Tempdir="/tmp";
//Pentabarf ConferenzDI für UpdateDB
$PentabarXCALurl="https://pentabarf.cccv.de/xcal/conference/<ConfereneceID>";
?>

View File

@ -43,36 +43,48 @@ CreateRoomArrays();
F I L E
##############################################################################################*/
echo "\n\n<br>\n<h1>XML File:</h1>\n";
if( isset($_POST["PentabarfUser"]) && isset($_POST["PentabarfPasswd"]) && isset($_POST["PentabarfURL"]))
if( isset($_POST["PentabarfUser"]) && isset($_POST["password"]) && isset($_POST["PentabarfURL"]))
{
echo "Update XML-File from Pentabarf..";
echo "Update XCAL-File from Pentabarf..";
if( $DataGetMeth=="wget")
$Command = "wget --http-user=". $_POST["PentabarfUser"]. " --http-passwd=".$_POST["PentabarfPasswd"]. " ".
$_POST["PentabarfURL"].
" --output-file=$Tempdir/engelXMLwgetLog --output-document=$Tempdir/engelXML".
" --no-check-certificate";
elseif( $DataGetMeth=="lynx")
$Command = "lynx -auth=". $_POST["PentabarfUser"]. ":".$_POST["PentabarfPasswd"]. " -dump ".
$_POST["PentabarfURL"]. " > $Tempdir/engelXML";
echo system( $Command, $Status);
//user uns password in url einbauen
$StartURL = strpos( $_POST["PentabarfURL"], "://") + 3;
$FileNameIn = substr( $_POST["PentabarfURL"], 0, $StartURL).
$_POST["PentabarfUser"]. ":".
$_POST["password"]. "@".
substr( $_POST["PentabarfURL"], $StartURL);
if( $Status==0)
echo "OK.<br>";
if( ($fileIn = fopen( $FileNameIn, "r")) != FALSE)
{
if( ($fileOut = fopen( "$Tempdir/engelXML", "w")) != FALSE)
{
$Zeilen = 0;
while (!feof($fileIn))
{
$Zeilen++;
fputs( $fileOut, fgets( $fileIn));
}
fclose( $fileOut);
echo "<br>Es wurden $Zeilen Zeilen eingelesen<br>";
}
else
echo "fail ($Status)($Command).<br>";
echo "<h2>fail: File '$Tempdir/engelXML' not writeable!</h2>";
fclose( $fileIn);
}
else
echo "<h2>fail: File '". $_POST["PentabarfURL"]. "' not readable!</h2>";
}
else
{
echo "<form action=\"dbUpdateFromXLS.php\" method=\"post\">\n";
echo "<table border=\"0\">\n";
echo "\t<tr><td>XML-File:</td>".
echo "\t<tr><td>XCAL-File:</td>".
"<td><input name=\"PentabarfURL\" type=\"text\" size=\"100\" maxlength=\"1000\" ".
"value=\"https://pentabarf.cccv.de/~sven/xcal/conference/7\"></td></tr>\n";
"value=\"$PentabarXCALurl\"></td></tr>\n";
echo "\t<tr><td>Username:</td>".
"<td><input name=\"PentabarfUser\" type=\"text\" size=\"30\" maxlength=\"30\"></td></tr>\n";
echo "\t<tr><td>Password:</td>".
"<td><input name=\"PentabarfPasswd\" type=\"password\" size=\"30\" maxlength=\"30\"></td></tr>\n";
"<td><input name=\"password\" type=\"password\" size=\"30\" maxlength=\"30\"></td></tr>\n";
echo "\t<tr><td></td><td><input type=\"submit\" name=\"FileUpload\" value=\"upload\"></td></tr>\n";
echo "</table>\n";
echo "</form>\n";