You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

70 lines
2.0 KiB
PHTML

<?php
/**
* Controller for ical output of users own shifts or any user_shifts filter.
*/
8 years ago
function user_ical()
{
global $user;
$request = request();
8 years ago
if (!$request->has('key') || !preg_match('/^[\da-f]{32}$/', $request->input('key'))) {
engelsystem_error('Missing key.');
8 years ago
}
$key = $request->input('key');
8 years ago
8 years ago
$user = User_by_api_key($key);
if ($user == null) {
engelsystem_error('Key invalid.');
8 years ago
}
8 years ago
if (!in_array('ical', privileges_for_user($user['UID']))) {
engelsystem_error('No privilege for ical.');
8 years ago
}
8 years ago
8 years ago
$ical_shifts = load_ical_shifts();
8 years ago
8 years ago
send_ical_from_shifts($ical_shifts);
}
/**
7 years ago
* Renders an ical calendar from given shifts array.
*
* @param array $shifts Shift
*/
8 years ago
function send_ical_from_shifts($shifts)
{
header('Content-Type: text/calendar; charset=utf-8');
header('Content-Disposition: attachment; filename=shifts.ics');
8 years ago
$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));
8 years ago
raw_output($output);
}
/**
* Renders an ical vevent from given shift.
*
* @param array $shift
* @return string
*/
8 years ago
function make_ical_entry_from_shift($shift)
{
$output = "BEGIN:VEVENT\r\n";
$output .= 'UID:' . md5($shift['start'] . $shift['end'] . $shift['name']) . "\r\n";
$output .= 'SUMMARY:' . str_replace("\n", "\\n", $shift['name'])
. ' (' . str_replace("\n", "\\n", $shift['title']) . ")\r\n";
8 years ago
if (isset($shift['Comment'])) {
$output .= 'DESCRIPTION:' . str_replace("\n", "\\n", $shift['Comment']) . "\r\n";
8 years ago
}
$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";
8 years ago
$output .= "END:VEVENT\r\n";
return $output;
}