engelsystem/includes/pages/user_ical.php

55 lines
2.0 KiB
PHP
Raw Normal View History

2011-10-11 19:47:49 +02:00
<?php
// Öffentlich zugängliche Funktion zum Abrufen von iCal-Exports der eigenen Schichten
function user_ical() {
2012-12-03 21:00:20 +01:00
global $ical_shifts, $user;
2011-12-28 14:45:49 +01:00
2012-12-03 21:00:20 +01:00
if (isset ($_REQUEST['key']) && preg_match("/^[0-9a-f]{32}$/", $_REQUEST['key']))
$key = $_REQUEST['key'];
else
die("Missing key.");
2011-10-11 19:47:49 +02:00
$user = User_by_api_key($key);
if($user === false)
die("Unable to find user.");
if($user == null)
2012-12-03 21:00:20 +01:00
die("Key invalid.");
if(!in_array('ical', privileges_for_user($user['UID'])))
die("No privilege for ical.");
2011-10-11 19:47:49 +02:00
2012-12-03 21:00:20 +01:00
if (isset ($_REQUEST['export']) && $_REQUEST['export'] == 'user_shifts') {
2014-09-08 08:38:08 +02:00
require_once realpath(__DIR__ . '/user_shifts.php');
2012-12-03 21:00:20 +01:00
view_user_shifts();
} else {
2014-12-17 17:22:35 +01:00
$ical_shifts = sql_select("
SELECT `ShiftTypes`.`name`, `Shifts`.*, `Room`.`Name` as `room_name`
FROM `ShiftEntry`
INNER JOIN `Shifts` ON (`ShiftEntry`.`SID` = `Shifts`.`SID`)
JOIN `ShiftTypes` ON (`ShiftTypes`.`id` = `Shifts`.`shifttype_id`)
INNER JOIN `Room` ON (`Shifts`.`RID` = `Room`.`RID`)
2014-12-28 13:44:56 +01:00
WHERE `UID`='" . sql_escape($user['UID']) . "'
2014-12-17 17:22:35 +01:00
ORDER BY `start`");
2012-12-03 21:00:20 +01:00
}
2011-10-11 19:47:49 +02:00
2012-12-03 21:00:20 +01:00
header("Content-Type: text/calendar; charset=utf-8");
$html = "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//-//Engelsystem//DE\r\nCALSCALE:GREGORIAN\r\n";
foreach ($ical_shifts as $shift) {
$html .= "BEGIN:VEVENT\r\n";
$html .= "UID:" . md5($shift['start'] . $shift['end'] . $shift['name']) . "\r\n";
$html .= "SUMMARY:" . str_replace("\n", "\\n", $shift['name']) . "\r\n";
if(isset($shift['Comment']))
$html .= "DESCRIPTION:" . str_replace("\n", "\\n", $shift['Comment']) . "\r\n";
$html .= "DTSTART;TZID=Europe/Berlin:" . date("Ymd\THis", $shift['start']) . "\r\n";
$html .= "DTEND;TZID=Europe/Berlin:" . date("Ymd\THis", $shift['end']) . "\r\n";
$html .= "LOCATION:" . $shift['room_name'] . "\r\n";
$html .= "END:VEVENT\r\n";
}
2013-12-29 15:06:18 +01:00
$html .= "END:VCALENDAR\r\n";
$html = trim($html, "\x0A");
2012-12-03 21:00:20 +01:00
header("Content-Length: " . strlen($html));
echo $html;
die();
2011-10-11 19:47:49 +02:00
}
?>