summaryrefslogtreecommitdiff
path: root/includes/pages/user_ical.php
diff options
context:
space:
mode:
authorPhilip Häusler <msquare@notrademark.de>2011-10-11 19:47:49 +0200
committerPhilip Häusler <msquare@notrademark.de>2011-10-11 19:47:49 +0200
commit304af8e8f015ac896ad0683c6407a3269e981d97 (patch)
tree32454b2c7eaa432c6cfabf3809e60d2f2d2d0d0b /includes/pages/user_ical.php
parent1854e1455abcb23d3dc2c1ad206525227d08587d (diff)
#27 ical export, beginn
Diffstat (limited to 'includes/pages/user_ical.php')
-rw-r--r--includes/pages/user_ical.php34
1 files changed, 34 insertions, 0 deletions
diff --git a/includes/pages/user_ical.php b/includes/pages/user_ical.php
new file mode 100644
index 00000000..181a7781
--- /dev/null
+++ b/includes/pages/user_ical.php
@@ -0,0 +1,34 @@
+<?php
+
+
+// Öffentlich zugängliche Funktion zum Abrufen von iCal-Exports der eigenen Schichten
+function user_ical() {
+ if (isset ($_REQUEST['key']) && preg_match("/^[0-9a-f]{32}$/", $_REQUEST['key']))
+ $key = $_REQUEST['key'];
+ else
+ die("Missing key.");
+
+ $user = sql_select("SELECT * FROM `User` WHERE `ical_key`='" . sql_escape($key) . "' LIMIT 1");
+ if (count($user) == 0)
+ die("Key invalid.");
+
+ $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`");
+
+ 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";
+ }
+ echo "END:VCALENDAR\n";
+ die();
+}
+?>