logService = $logService; $this->notificationService = $notificationService; $this->sessionService = $sessionService; $this->pollRepository = RepositoryFactory::pollRepository(); $this->slotRepository = RepositoryFactory::slotRepository(); $this->voteRepository = RepositoryFactory::voteRepository(); $this->commentRepository = RepositoryFactory::commentRepository(); } /** * Creates an ical-File and initiates the download. If possible, the provided time is used, else an all day event is created. */ public function getEvent($poll, string $start_day, string $start_time) { if(!$this->dayIsReadable($start_day)) { return; } $ical_text = ""; $elements = explode("-", $start_time); $end_time = null; if(count($elements) === 2) { $start_time = trim($elements[0]); $end_time = trim($elements[1]); } $start_time = $this->reviseTimeString($start_time); if($end_time !== null) { $end_time = $this->reviseTimeString($end_time); } if($start_time !== null) { if($end_time !== null) { $ical_text = $this->getTimedEvent($poll, $start_day . " " . $start_time, $start_day . " " . $end_time); } else { $ical_text = $this->getTimedEvent1Hour($poll, $start_day . " " . $start_time); } } else { $date = DateTime::createFromFormat('d-m-Y', $start_day); $day = $date->format('Ymd'); $ical_text = $this->getAllDayEvent($poll, $day); } $this->provideFile($poll->title, $ical_text); } /** * Calls getTimedEvent with one hour as a time slot, starting at $start_daytime */ function getTimedEvent1Hour($poll, string $start_daytime) { $end_daytime = date(DATE_ATOM, strtotime('+1 hours', strtotime($start_daytime))); return $this->getTimedEvent($poll, $start_daytime, $end_daytime); } /** * Generates the text for an ical event including the time */ function getTimedEvent($poll, string $start_daytime, string $end_daytime) { $vcalendar = new VObject\Component\VCalendar([ 'VEVENT' => [ 'SUMMARY' => $poll->title, 'DESCRIPTION' => $this->stripMD($poll->description), 'DTSTART' => new \DateTime($start_daytime), 'DTEND' => new \DateTime($end_daytime) ], 'PRODID' => ICAL_PRODID ]); return $vcalendar->serialize(); } /** * Generates the text for an ical event if the time is not known */ function getAllDayEvent($poll, string $day) { $vcalendar = new VObject\Component\VCalendar(); $vevent = $vcalendar->add('VEVENT'); $vevent->add('SUMMARY', $poll->title); $vevent->add('DESCRIPTION', $this->stripMD($poll->description)); $dtstart = $vevent->add('DTSTART', $day); $dtstart['VALUE'] = 'DATE'; unset($vcalendar->PRODID); $vcalendar->add('PRODID', ICAL_PRODID); return $vcalendar->serialize(); } /** * Creates a file and initiates the download * @param string $ical_text */ function provideFile(string $title, string $ical_text) { header('Content-Description: File Transfer'); header('Content-Disposition: attachment; filename=' . $this->stripTitle($title) . ICAL_ENDING); header('Expires: 0'); header('Cache-Control: must-revalidate'); header('Pragma: public'); header("Content-Type: text/calendar"); echo $ical_text; exit; } /** * Reformats a string value into a time readable by DateTime * @param string $time * @return string the corrected value, null if the format is unknown */ function reviseTimeString(string $time) { // 24-hour clock / international format if (preg_match('/^\d\d(:)\d\d$/', $time)) { return $time; } // 12-hour clock / using am and pm else if (preg_match('/^\d[0-2]?:?\d{0,2}\s?[aApP][mM]$/', $time)) { return $this->formatTime($time); } // french format HHhMM or HHh else if (preg_match('/^\d\d?[hH]\d?\d?$/', $time)) { return $this->formatTime(str_pad(str_ireplace("H", ":", $time), 5, "0")); } // Number only else if (preg_match('/^\d{1,4}$/', $time)) { return $this->formatTime(str_pad(str_pad($time, 2, "0", STR_PAD_LEFT), 4, "0")); } return null; } /** * @param string $time * @return 1 if the day string can be parsed, 0 if not and false if an error occured */ function dayIsReadable(string $day) { return preg_match('/^\d{2}-\d{2}-\d{4}$/', $day); } /** * @param string $time * @return string date string in format H:i (e.g. 19:00) */ function formatTime(string $time) { return date("H:i", strtotime($time)); } /** * Converts MD Code to HTML, then strips HTML away */ function stripMD(string $string) { return strip_tags(smarty_modifier_markdown($string)); } /** * Strips a string so it's usable as a file name (only digits, letters and underline allowed) */ function stripTitle(string $string) { return preg_replace('/[^a-z0-9_]+/', '-', strtolower($string)); } }