engelsystem/includes/pages/user_ical.php

67 lines
1.9 KiB
PHP
Raw Normal View History

2011-10-11 19:47:49 +02:00
<?php
/**
* Controller for ical output of users own shifts or any user_shifts filter.
*/
2017-01-02 03:57:23 +01:00
function user_ical()
{
global $user;
2017-01-02 15:43:36 +01:00
if (!isset($_REQUEST['key']) || !preg_match("/^[0-9a-f]{32}$/", $_REQUEST['key'])) {
2017-01-02 03:57:23 +01:00
engelsystem_error("Missing key.");
}
$key = $_REQUEST['key'];
2017-01-02 15:43:36 +01:00
2017-01-02 03:57:23 +01:00
$user = User_by_api_key($key);
if ($user == null) {
engelsystem_error("Key invalid.");
}
2017-01-02 15:43:36 +01:00
if (!in_array('ical', privileges_for_user($user['UID']))) {
2017-01-02 03:57:23 +01:00
engelsystem_error("No privilege for ical.");
}
2017-01-02 15:43:36 +01:00
2017-01-02 03:57:23 +01:00
$ical_shifts = load_ical_shifts();
2017-01-02 15:43:36 +01:00
2017-01-02 03:57:23 +01:00
send_ical_from_shifts($ical_shifts);
}
2011-10-11 19:47:49 +02:00
/**
* Renders an ical calender from given shifts array.
*
2017-01-02 15:43:36 +01:00
* @param array <Shift> $shifts
*/
2017-01-02 03:57:23 +01:00
function send_ical_from_shifts($shifts)
{
header("Content-Type: text/calendar; charset=utf-8");
$output = "BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//-//Engelsystem//DE\r\nCALSCALE:GREGORIAN\r\n";
foreach ($shifts as $shift) {
$output .= make_ical_entry_from_shift($shift);
}
$output .= "END:VCALENDAR\r\n";
$output = trim($output, "\x0A");
header("Content-Length: " . strlen($output));
raw_output($output);
}
/**
* Renders an ical vevent from given shift.
*
2017-01-02 03:57:23 +01:00
* @param Shift $shift
*/
2017-01-02 03:57:23 +01:00
function make_ical_entry_from_shift($shift)
{
$output = "BEGIN:VEVENT\r\n";
$output .= "UID:" . md5($shift['start'] . $shift['end'] . $shift['name']) . "\r\n";
2017-01-02 15:43:36 +01:00
$output .= "SUMMARY:" . str_replace("\n", "\\n", $shift['name'])
. " (" . str_replace("\n", "\\n", $shift['title']) . ")\r\n";
2017-01-02 03:57:23 +01:00
if (isset($shift['Comment'])) {
$output .= "DESCRIPTION:" . str_replace("\n", "\\n", $shift['Comment']) . "\r\n";
}
$output .= "DTSTART;TZID=Europe/Berlin:" . date("Ymd\THis", $shift['start']) . "\r\n";
$output .= "DTEND;TZID=Europe/Berlin:" . date("Ymd\THis", $shift['end']) . "\r\n";
$output .= "LOCATION:" . $shift['Name'] . "\r\n";
$output .= "END:VEVENT\r\n";
return $output;
2011-10-11 19:47:49 +02:00
}