diff options
Diffstat (limited to 'includes/pages/user_ical.php')
-rw-r--r-- | includes/pages/user_ical.php | 33 |
1 files changed, 20 insertions, 13 deletions
diff --git a/includes/pages/user_ical.php b/includes/pages/user_ical.php index 181a7781..e20f1046 100644 --- a/includes/pages/user_ical.php +++ b/includes/pages/user_ical.php @@ -3,6 +3,8 @@ // Öffentlich zugängliche Funktion zum Abrufen von iCal-Exports der eigenen Schichten function user_ical() { + global $ical_shifts; + if (isset ($_REQUEST['key']) && preg_match("/^[0-9a-f]{32}$/", $_REQUEST['key'])) $key = $_REQUEST['key']; else @@ -14,21 +16,26 @@ function user_ical() { $user = $user[0]; - $shifts = sql_select("SELECT * FROM `ShiftEntry` JOIN `Shifts` ON (`ShiftEntry`.`SID` = `Shifts`.`SID`) JOIN `Room` ON (`Shifts`.`RID` = `Room`.`RID`) WHERE `UID`=" . sql_escape($user['UID']) . " ORDER BY `start`"); + if (isset ($_REQUEST['export']) && $_REQUEST['export'] == 'user_shifts') { + require_once ('includes/pages/user_shifts.php'); + view_user_shifts(); + } else { + $ical_shifts = sql_select("SELECT * FROM `ShiftEntry` JOIN `Shifts` ON (`ShiftEntry`.`SID` = `Shifts`.`SID`) JOIN `Room` ON (`Shifts`.`RID` = `Room`.`RID`) WHERE `UID`=" . sql_escape($user['UID']) . " ORDER BY `start`"); + } - header("Content-Type: text/calendar"); - echo "BEGIN:VCALENDAR\nVERSION:2.0\nPRODID:-//-//Engelsystem//DE\nCALSCALE:GREGORIAN\n"; - foreach ($shifts as $shift) { - echo "BEGIN:VEVENT\n"; - echo "UID:" . md5($shift['start'] . $shift['end'] . $shift['name']) . "\n"; - echo "SUMMARY:" . str_replace("\n", "\\n", $shift['name']) . "\n"; - echo "DESCRIPTION:" . str_replace("\n", "\\n", $shift['Comment']) . "\n"; - echo "DTSTART;TZID=Europe/Berlin:" . date("Ymd\THis", $shift['start']) . "\n"; - echo "DTEND;TZID=Europe/Berlin:" . date("Ymd\THis", $shift['end']) . "\n"; - echo "LOCATION:" . $shift['Name'] . "\n"; - echo "END:VEVENT\n"; + header("Content-Type: text/calendar; charset=utf-8"); + echo "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//-//Engelsystem//DE\r\nCALSCALE:GREGORIAN\r\n"; + foreach ($ical_shifts as $shift) { + echo "BEGIN:VEVENT\r\n"; + echo "UID:" . md5($shift['start'] . $shift['end'] . $shift['name']) . "\r\n"; + echo "SUMMARY:" . str_replace("\n", "\\n", preg_replace("/[^a-z]*/i", '', $shift['name'])) . "\r\n"; + echo "DESCRIPTION:" . str_replace("\n", "\\n", $shift['Comment']) . "\r\n"; + echo "DTSTART;TZID=Europe/Berlin:" . date("Ymd\THis", $shift['start']) . "\r\n"; + echo "DTEND;TZID=Europe/Berlin:" . date("Ymd\THis", $shift['end']) . "\r\n"; + echo "LOCATION:" . $shift['Name'] . "\r\n"; + echo "END:VEVENT\r\n"; } - echo "END:VCALENDAR\n"; + echo "END:VCALENDAR\r\n"; die(); } ?> |