mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 20:29:29 +00:00
131 lines
3.3 KiB
PHP
131 lines
3.3 KiB
PHP
<?php
|
|
/* Copyright (C) 2012 FH Technikum-Wien
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as
|
|
* published by the Free Software Foundation; either version 2 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
|
*
|
|
* Authors: Andreas Oesterreicher <andreas.oesterreicher@technikum-wien.at>
|
|
*/
|
|
/**
|
|
* Dieses Script liefert die FreeBusy Informationen
|
|
*
|
|
* Aufruf: http://www.example.com/cis/public/freebusy.php/[uid]
|
|
* zB
|
|
* http://www.example.com/cis/public/freebusy.php/oesi
|
|
*/
|
|
require_once('../../config/cis.config.inc.php');
|
|
require_once('../../include/freebusy.class.php');
|
|
require_once('../../include/benutzer.class.php');
|
|
require_once('../../include/ical.class.php');
|
|
|
|
if(!isset($_SERVER['PATH_INFO']))
|
|
die('Username fehlt. Aufruf ueber '.APP_ROOT.'cis/public/freebusy.php/username/');
|
|
|
|
$uid = mb_substr($_SERVER['PATH_INFO'],1);
|
|
|
|
$bn = new benutzer();
|
|
if(!$bn->load($uid))
|
|
{
|
|
// Optional kann auch der Alias als Parameter uebergeben werden
|
|
// Dies ist fuer die verwendung von Outlook nuetzlich
|
|
if($bn->loadAlias($uid))
|
|
{
|
|
$uid = $bn->uid;
|
|
}
|
|
else
|
|
die('User invalid');
|
|
}
|
|
|
|
$freebusy = new freebusy();
|
|
$freebusy->getFreeBusy($uid);
|
|
header("Content-Type: text/calendar; charset=UTF-8");
|
|
|
|
echo "BEGIN:VCALENDAR\n";
|
|
echo "VERSION:2.0\n";
|
|
echo "PRODID:-//FHCOMPLETE//EN\n";
|
|
echo "METHOD:PUBLISH\n";
|
|
echo 'ORGANIZER;CN=',$bn->vorname,' ',$bn->nachname,':mailto:',$uid,'@',DOMAIN,"\n";
|
|
echo 'DTSTAMP;TZID=Europe/Vienna:',date('Ymd', mktime(date('H'),date('i'),date('s'),date('m'),date('d')-5,date('Y'))),'T',date('Hms'),"\n";
|
|
echo 'DTSTART;TZID=Europe/Vienna:',date('Ymd', mktime(0,0,0,date('m'),date('d')-5,date('Y'))),"T000000\n";
|
|
echo 'DTEND;TZID=Europe/Vienna:',date('Ymd', mktime(0,0,0,date('m'),date('d')+30,date('Y'))),"T000000\n";
|
|
echo 'URL:',APP_ROOT,'cis/public/freebusy.php/',$uid,"\n";
|
|
|
|
$ical = new ical();
|
|
|
|
foreach($freebusy->result as $row)
|
|
{
|
|
if($row->aktiv)
|
|
{
|
|
$fp = fopen($row->url,'r');
|
|
if (!$fp)
|
|
{
|
|
echo "URL kann nicht geoeffent werden<br />\n";
|
|
}
|
|
else
|
|
{
|
|
$doc = '';
|
|
while (!feof($fp))
|
|
{
|
|
$line = fgets($fp);
|
|
$doc.=$line;
|
|
}
|
|
fclose($fp);
|
|
|
|
$ical->importFreeBusy($doc, $row->freebusytyp_kurzbz);
|
|
}
|
|
}
|
|
}
|
|
|
|
//Pers. LVplan
|
|
$fp = fopen(APP_ROOT.'cis/public/freebusy_lvplan.php/'.$uid,'r');
|
|
if (!$fp)
|
|
{
|
|
echo "URL kann nicht geoeffnet werden<br />\n";
|
|
}
|
|
else
|
|
{
|
|
$doc = '';
|
|
while (!feof($fp))
|
|
{
|
|
$line = fgets($fp);
|
|
$doc.=$line;
|
|
}
|
|
fclose($fp);
|
|
|
|
$ical->importFreeBusy($doc, 'LVPLAN');
|
|
}
|
|
|
|
//Zeitsperren
|
|
$fp = fopen(APP_ROOT.'cis/public/freebusy_zeitsperren.php/'.$uid,'r');
|
|
if (!$fp)
|
|
{
|
|
echo "URL kann nicht geoeffnet werden<br />\n";
|
|
}
|
|
else
|
|
{
|
|
$doc = '';
|
|
while (!feof($fp))
|
|
{
|
|
$line = fgets($fp);
|
|
$doc.=$line;
|
|
}
|
|
fclose($fp);
|
|
|
|
$ical->importFreeBusy($doc, 'Zeitsperren');
|
|
}
|
|
|
|
echo $ical->getFreeBusy();
|
|
echo "\nEND:VCALENDAR";
|
|
?>
|