3 * @copyright Copyright (C) 2010-2022, the Friendica project
5 * @license GNU AGPL version 3 or any later version
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as
9 * published by the Free Software Foundation, either version 3 of the
10 * License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
22 namespace Friendica\Model;
24 use Friendica\Content\Text\BBCode;
25 use Friendica\Core\Hook;
26 use Friendica\Core\Logger;
27 use Friendica\Core\Protocol;
28 use Friendica\Core\Renderer;
29 use Friendica\Core\System;
30 use Friendica\Database\DBA;
32 use Friendica\Protocol\Activity;
33 use Friendica\Util\DateTimeFormat;
34 use Friendica\Util\Map;
35 use Friendica\Util\Strings;
36 use Friendica\Util\XML;
39 * functions for interacting with the event database table
44 public static function getHTML(array $event, bool $simple = false, int $uriid = 0): string
50 $uriid = $event['uri-id'] ?? $uriid;
52 $bd_format = DI::l10n()->t('l F d, Y \@ g:i A \G\M\TP (e)'); // Friday October 29, 2021 @ 9:15 AM GMT-04:00 (America/New_York)
54 $event_start = DI::l10n()->getDay(DateTimeFormat::local($event['start'], $bd_format));
56 if (!empty($event['finish'])) {
57 $event_end = DI::l10n()->getDay(DateTimeFormat::local($event['finish'], $bd_format));
65 if (!empty($event['summary'])) {
66 $o .= "<h3>" . BBCode::convertForUriId($uriid, Strings::escapeHtml($event['summary']), $simple) . "</h3>";
69 if (!empty($event['desc'])) {
70 $o .= "<div>" . BBCode::convertForUriId($uriid, Strings::escapeHtml($event['desc']), $simple) . "</div>";
73 $o .= "<h4>" . DI::l10n()->t('Starts:') . "</h4><p>" . $event_start . "</p>";
75 if (!$event['nofinish']) {
76 $o .= "<h4>" . DI::l10n()->t('Finishes:') . "</h4><p>" . $event_end . "</p>";
79 if (!empty($event['location'])) {
80 $o .= "<h4>" . DI::l10n()->t('Location:') . "</h4><p>" . BBCode::convertForUriId($uriid, Strings::escapeHtml($event['location']), $simple) . "</p>";
86 $o = '<div class="vevent">' . "\r\n";
88 $o .= '<div class="summary event-summary">' . BBCode::convertForUriId($uriid, Strings::escapeHtml($event['summary']), $simple) . '</div>' . "\r\n";
90 $o .= '<div class="event-start"><span class="event-label">' . DI::l10n()->t('Starts:') . '</span> <span class="dtstart" title="'
91 . DateTimeFormat::local($event['start'], DateTimeFormat::ATOM)
92 . '" >' . $event_start
93 . '</span></div>' . "\r\n";
95 if (!$event['nofinish']) {
96 $o .= '<div class="event-end" ><span class="event-label">' . DI::l10n()->t('Finishes:') . '</span> <span class="dtend" title="'
97 . DateTimeFormat::local($event['finish'], DateTimeFormat::ATOM)
99 . '</span></div>' . "\r\n";
102 if (!empty($event['desc'])) {
103 $o .= '<div class="description event-description">' . BBCode::convertForUriId($uriid, Strings::escapeHtml($event['desc']), $simple) . '</div>' . "\r\n";
106 if (!empty($event['location'])) {
107 $o .= '<div class="event-location"><span class="event-label">' . DI::l10n()->t('Location:') . '</span> <span class="location">'
108 . BBCode::convertForUriId($uriid, Strings::escapeHtml($event['location']), $simple)
109 . '</span></div>' . "\r\n";
111 // Include a map of the location if the [map] BBCode is used.
112 if (strpos($event['location'], "[map") !== false) {
113 $map = Map::byLocation($event['location'], $simple);
114 if ($map !== $event['location']) {
120 $o .= '</div>' . "\r\n";
125 * Convert an array with event data to bbcode.
127 * @param array $event Array which contains the event data.
128 * @return string The event as a bbcode formatted string.
130 private static function getBBCode(array $event): string
134 if ($event['summary']) {
135 $o .= '[event-summary]' . $event['summary'] . '[/event-summary]';
138 if ($event['desc']) {
139 $o .= '[event-description]' . $event['desc'] . '[/event-description]';
142 if ($event['start']) {
143 $o .= '[event-start]' . $event['start'] . '[/event-start]';
146 if (($event['finish']) && (!$event['nofinish'])) {
147 $o .= '[event-finish]' . $event['finish'] . '[/event-finish]';
150 if ($event['location']) {
151 $o .= '[event-location]' . $event['location'] . '[/event-location]';
158 * Extract bbcode formatted event data from a string.
160 * @param string $text The string which should be parsed for event data.
161 * @return array The array with the event information.
163 public static function fromBBCode(string $text): array
168 if (preg_match("/\[event\-summary\](.*?)\[\/event\-summary\]/is", $text, $match)) {
169 $ev['summary'] = $match[1];
173 if (preg_match("/\[event\-description\](.*?)\[\/event\-description\]/is", $text, $match)) {
174 $ev['desc'] = $match[1];
178 if (preg_match("/\[event\-start\](.*?)\[\/event\-start\]/is", $text, $match)) {
179 $ev['start'] = $match[1];
183 if (preg_match("/\[event\-finish\](.*?)\[\/event\-finish\]/is", $text, $match)) {
184 $ev['finish'] = $match[1];
188 if (preg_match("/\[event\-location\](.*?)\[\/event\-location\]/is", $text, $match)) {
189 $ev['location'] = $match[1];
192 $ev['nofinish'] = !empty($ev['start']) && empty($ev['finish']) ? 1 : 0;
197 public static function sortByDate(array $event_list): array
199 usort($event_list, ['self', 'compareDatesCallback']);
203 private static function compareDatesCallback(array $event_a, array $event_b)
205 $date_a = DateTimeFormat::local($event_a['start']);
206 $date_b = DateTimeFormat::local($event_b['start']);
208 if ($date_a === $date_b) {
209 return strcasecmp($event_a['desc'], $event_b['desc']);
212 return strcmp($date_a, $date_b);
216 * Delete an event from the event table.
218 * Note: This function does only delete the event from the event table not its
219 * related entry in the item table.
221 * @param int $event_id Event ID.
225 public static function delete(int $event_id)
227 if ($event_id == 0) {
231 DBA::delete('event', ['id' => $event_id]);
232 Logger::info("Deleted event", ['id' => $event_id]);
238 * Store the event in the event table and create an event item in the item table.
240 * @param array $arr Array with event data.
241 * @return int The new event id.
242 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
244 public static function store(array $arr): int
247 $event['id'] = intval($arr['id'] ?? 0);
248 $event['uid'] = intval($arr['uid'] ?? 0);
249 $event['cid'] = intval($arr['cid'] ?? 0);
250 $event['guid'] = ($arr['guid'] ?? '') ?: System::createUUID();
251 $event['uri'] = ($arr['uri'] ?? '') ?: Item::newURI($event['guid']);
252 $event['uri-id'] = ItemURI::insert(['uri' => $event['uri'], 'guid' => $event['guid']]);
253 $event['type'] = ($arr['type'] ?? '') ?: 'event';
254 $event['summary'] = $arr['summary'] ?? '';
255 $event['desc'] = $arr['desc'] ?? '';
256 $event['location'] = $arr['location'] ?? '';
257 $event['allow_cid'] = $arr['allow_cid'] ?? '';
258 $event['allow_gid'] = $arr['allow_gid'] ?? '';
259 $event['deny_cid'] = $arr['deny_cid'] ?? '';
260 $event['deny_gid'] = $arr['deny_gid'] ?? '';
261 $event['nofinish'] = intval($arr['nofinish'] ?? (!empty($event['start']) && empty($event['finish'])));
263 $event['created'] = DateTimeFormat::utc(($arr['created'] ?? '') ?: 'now');
264 $event['edited'] = DateTimeFormat::utc(($arr['edited'] ?? '') ?: 'now');
265 $event['start'] = DateTimeFormat::utc(($arr['start'] ?? '') ?: DBA::NULL_DATETIME);
266 $event['finish'] = DateTimeFormat::utc(($arr['finish'] ?? '') ?: DBA::NULL_DATETIME);
267 if ($event['finish'] < DBA::NULL_DATETIME) {
268 $event['finish'] = DBA::NULL_DATETIME;
271 // Existing event being modified.
273 // has the event actually changed?
274 $existing_event = DBA::selectFirst('event', ['edited'], ['id' => $event['id'], 'uid' => $event['uid']]);
275 if (!DBA::isResult($existing_event)) {
279 if ($existing_event['edited'] === $event['edited']) {
284 'edited' => $event['edited'],
285 'start' => $event['start'],
286 'finish' => $event['finish'],
287 'summary' => $event['summary'],
288 'desc' => $event['desc'],
289 'location' => $event['location'],
290 'type' => $event['type'],
291 'nofinish' => $event['nofinish'],
294 DBA::update('event', $updated_fields, ['id' => $event['id'], 'uid' => $event['uid']]);
296 $item = Post::selectFirst(['id', 'uri-id'], ['event-id' => $event['id'], 'uid' => $event['uid']]);
297 if (DBA::isResult($item)) {
298 $object = '<object><type>' . XML::escape(Activity\ObjectType::EVENT) . '</type><title></title><id>' . XML::escape($event['uri']) . '</id>';
299 $object .= '<content>' . XML::escape(self::getBBCode($event)) . '</content>';
300 $object .= '</object>' . "\n";
302 $fields = ['body' => self::getBBCode($event), 'object' => $object, 'edited' => $event['edited']];
303 Item::update($fields, ['id' => $item['id']]);
306 Hook::callAll('event_updated', $event['id']);
308 // New event. Store it.
309 DBA::insert('event', $event);
311 $event['id'] = DBA::lastInsertId();
313 Hook::callAll("event_created", $event['id']);
319 public static function getItemArrayForId(int $event_id, array $item = []): array
321 if (empty($event_id)) {
325 $event = DBA::selectFirst('event', [], ['id' => $event_id]);
326 if ($event['type'] != 'event') {
331 $conditions = ['id' => $event['cid']];
333 $conditions = ['uid' => $event['uid'], 'self' => true];
336 $contact = DBA::selectFirst('contact', [], $conditions);
338 $event['id'] = $event_id;
340 $item['uid'] = $event['uid'];
341 $item['contact-id'] = $event['cid'];
342 $item['uri'] = $event['uri'];
343 $item['uri-id'] = ItemURI::getIdByURI($event['uri']);
344 $item['guid'] = $event['guid'];
345 $item['plink'] = $arr['plink'] ?? '';
346 $item['post-type'] = Item::PT_EVENT;
347 $item['wall'] = $event['cid'] ? 0 : 1;
348 $item['contact-id'] = $contact['id'];
349 $item['owner-name'] = $contact['name'];
350 $item['owner-link'] = $contact['url'];
351 $item['owner-avatar'] = $contact['thumb'];
352 $item['author-name'] = $contact['name'];
353 $item['author-link'] = $contact['url'];
354 $item['author-avatar'] = $contact['thumb'];
356 $item['allow_cid'] = $event['allow_cid'];
357 $item['allow_gid'] = $event['allow_gid'];
358 $item['deny_cid'] = $event['deny_cid'];
359 $item['deny_gid'] = $event['deny_gid'];
360 $item['private'] = intval($event['private'] ?? 0);
361 $item['visible'] = 1;
362 $item['verb'] = Activity::POST;
363 $item['object-type'] = Activity\ObjectType::EVENT;
364 $item['post-type'] = Item::PT_EVENT;
365 $item['origin'] = $event['cid'] === 0 ? 1 : 0;
366 $item['body'] = self::getBBCode($event);
367 $item['event-id'] = $event['id'];
369 $item['object'] = '<object><type>' . XML::escape(Activity\ObjectType::EVENT) . '</type><title></title><id>' . XML::escape($event['uri']) . '</id>';
370 $item['object'] .= '<content>' . XML::escape(self::getBBCode($event)) . '</content>';
371 $item['object'] .= '</object>' . "\n";
376 public static function getItemArrayForImportedId(int $event_id, array $item = []): array
378 if (empty($event_id)) {
382 $event = DBA::selectFirst('event', [], ['id' => $event_id]);
383 if ($event['type'] != 'event') {
387 $item['post-type'] = Item::PT_EVENT;
389 $item['object-type'] = Activity\ObjectType::EVENT;
390 $item['body'] = self::getBBCode($event);
391 $item['event-id'] = $event_id;
393 $item['object'] = '<object><type>' . XML::escape(Activity\ObjectType::EVENT) . '</type><title></title><id>' . XML::escape($event['uri']) . '</id>';
394 $item['object'] .= '<content>' . XML::escape(self::getBBCode($event)) . '</content>';
395 $item['object'] .= '</object>' . "\n";
401 * Create an array with translation strings used for events.
403 * @return array Array with translations strings.
404 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
406 public static function getStrings(): array
408 // First day of the week (0 = Sunday).
409 $firstDay = DI::pConfig()->get(local_user(), 'system', 'first_day_of_week', 0);
412 "firstDay" => $firstDay,
413 "allday" => DI::l10n()->t("all-day"),
415 "Sun" => DI::l10n()->t("Sun"),
416 "Mon" => DI::l10n()->t("Mon"),
417 "Tue" => DI::l10n()->t("Tue"),
418 "Wed" => DI::l10n()->t("Wed"),
419 "Thu" => DI::l10n()->t("Thu"),
420 "Fri" => DI::l10n()->t("Fri"),
421 "Sat" => DI::l10n()->t("Sat"),
423 "Sunday" => DI::l10n()->t("Sunday"),
424 "Monday" => DI::l10n()->t("Monday"),
425 "Tuesday" => DI::l10n()->t("Tuesday"),
426 "Wednesday" => DI::l10n()->t("Wednesday"),
427 "Thursday" => DI::l10n()->t("Thursday"),
428 "Friday" => DI::l10n()->t("Friday"),
429 "Saturday" => DI::l10n()->t("Saturday"),
431 "Jan" => DI::l10n()->t("Jan"),
432 "Feb" => DI::l10n()->t("Feb"),
433 "Mar" => DI::l10n()->t("Mar"),
434 "Apr" => DI::l10n()->t("Apr"),
435 "May" => DI::l10n()->t("May"),
436 "Jun" => DI::l10n()->t("Jun"),
437 "Jul" => DI::l10n()->t("Jul"),
438 "Aug" => DI::l10n()->t("Aug"),
439 "Sep" => DI::l10n()->t("Sept"),
440 "Oct" => DI::l10n()->t("Oct"),
441 "Nov" => DI::l10n()->t("Nov"),
442 "Dec" => DI::l10n()->t("Dec"),
444 "January" => DI::l10n()->t("January"),
445 "February" => DI::l10n()->t("February"),
446 "March" => DI::l10n()->t("March"),
447 "April" => DI::l10n()->t("April"),
448 "June" => DI::l10n()->t("June"),
449 "July" => DI::l10n()->t("July"),
450 "August" => DI::l10n()->t("August"),
451 "September" => DI::l10n()->t("September"),
452 "October" => DI::l10n()->t("October"),
453 "November" => DI::l10n()->t("November"),
454 "December" => DI::l10n()->t("December"),
456 "today" => DI::l10n()->t("today"),
457 "month" => DI::l10n()->t("month"),
458 "week" => DI::l10n()->t("week"),
459 "day" => DI::l10n()->t("day"),
461 "noevent" => DI::l10n()->t("No events to display"),
463 "dtstart_label" => DI::l10n()->t("Starts:"),
464 "dtend_label" => DI::l10n()->t("Finishes:"),
465 "location_label" => DI::l10n()->t("Location:")
472 * Removes duplicated birthday events.
474 * @param array $dates Array of possibly duplicated events.
475 * @return array Cleaned events.
477 * @todo We should replace this with a separate update function if there is some time left.
479 private static function removeDuplicates(array $dates): array
483 foreach ($dates as $date) {
484 if ($date['type'] == 'birthday') {
485 $dates2[$date['uid'] . "-" . $date['cid'] . "-" . $date['start']] = $date;
490 return array_values($dates2);
494 * Get an event by its event ID.
496 * @param int $owner_uid The User ID of the owner of the event
497 * @param int $event_id The ID of the event in the event table
498 * @param string $sql_extra
499 * @return array Query result
502 public static function getListById(int $owner_uid, int $event_id, string $sql_extra = ''): array
506 // Ownly allow events if there is a valid owner_id.
507 if ($owner_uid == 0) {
511 // Query for the event by event id
512 $events = DBA::toArray(DBA::p("SELECT `event`.*, `post-user`.`id` AS `itemid` FROM `event`
513 LEFT JOIN `post-user` ON `post-user`.`event-id` = `event`.`id` AND `post-user`.`uid` = `event`.`uid`
514 WHERE `event`.`uid` = ? AND `event`.`id` = ? $sql_extra",
515 $owner_uid, $event_id));
517 if (DBA::isResult($events)) {
518 $return = self::removeDuplicates($events);
525 * Get all events in a specific time frame.
527 * @param int $owner_uid The User ID of the owner of the events.
528 * @param array $event_params An associative array with
530 * string 'start' => Start time of the timeframe.
531 * string 'finish' => Finish time of the timeframe.
533 * @param string $sql_extra Additional sql conditions (e.g. permission request).
535 * @return array Query results.
538 public static function getListByDate(int $owner_uid, array $event_params, string $sql_extra = ''): array
542 // Only allow events if there is a valid owner_id.
543 if ($owner_uid == 0) {
547 // Query for the event by date.
548 $events = DBA::toArray(DBA::p("SELECT `event`.*, `post-user`.`id` AS `itemid` FROM `event`
549 LEFT JOIN `post-user` ON `post-user`.`event-id` = `event`.`id` AND `post-user`.`uid` = `event`.`uid`
550 WHERE `event`.`uid` = ? AND `event`.`ignore` = ?
551 AND (`finish` >= ? OR (`nofinish` AND `start` >= ?)) AND `start` <= ?
553 $owner_uid, $event_params['ignore'],
554 $event_params['start'], $event_params['start'], $event_params['finish']
557 if (DBA::isResult($events)) {
558 $return = self::removeDuplicates($events);
565 * Convert an array query results in an array which could be used by the events template.
567 * @param array $event_result Event query array.
568 * @return array Event array for the template.
569 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
570 * @throws \ImagickException
572 public static function prepareListForTemplate(array $event_result): array
577 $fmt = DI::l10n()->t('l, F j');
578 foreach ($event_result as $event) {
579 $item = Post::selectFirst(['plink', 'author-name', 'author-avatar', 'author-link', 'private', 'uri-id'], ['id' => $event['itemid']]);
580 if (!DBA::isResult($item)) {
581 // Using default values when no item had been found
582 $item = ['plink' => '', 'author-name' => '', 'author-avatar' => '', 'author-link' => '', 'private' => Item::PUBLIC, 'uri-id' => ($event['uri-id'] ?? 0)];
585 $event = array_merge($event, $item);
587 $start = DateTimeFormat::local($event['start'], 'c');
588 $j = DateTimeFormat::local($event['start'], 'j');
589 $day = DateTimeFormat::local($event['start'], $fmt);
590 $day = DI::l10n()->getDay($day);
592 if ($event['nofinish']) {
595 $end = DateTimeFormat::local($event['finish'], 'c');
598 $is_first = ($day !== $last_date);
602 // Show edit and drop actions only if the user is the owner of the event and the event
603 // is a real event (no bithdays).
607 if (local_user() && local_user() == $event['uid'] && $event['type'] == 'event') {
608 $edit = !$event['cid'] ? [DI::baseUrl() . '/events/event/' . $event['id'], DI::l10n()->t('Edit event') , '', ''] : null;
609 $copy = !$event['cid'] ? [DI::baseUrl() . '/events/copy/' . $event['id'] , DI::l10n()->t('Duplicate event'), '', ''] : null;
610 $drop = [DI::baseUrl() . '/events/drop/' . $event['id'] , DI::l10n()->t('Delete event') , '', ''];
613 $title = BBCode::convertForUriId($event['uri-id'], Strings::escapeHtml($event['summary']));
615 list($title, $_trash) = explode("<br", BBCode::convertForUriId($event['uri-id'], Strings::escapeHtml($event['desc'])), BBCode::API);
618 $author_link = $event['author-link'];
620 $event['author-link'] = Contact::magicLink($author_link);
622 $html = self::getHTML($event);
623 $event['summary'] = BBCode::convertForUriId($event['uri-id'], Strings::escapeHtml($event['summary']));
624 $event['desc'] = BBCode::convertForUriId($event['uri-id'], Strings::escapeHtml($event['desc']));
625 $event['location'] = BBCode::convertForUriId($event['uri-id'], Strings::escapeHtml($event['location']));
627 'id' => $event['id'],
637 'is_first' => $is_first,
640 'plink' => Item::getPlink($event),
648 * Format event to export format (ical/csv).
650 * @param array $events Query result for events.
651 * @param string $format The output format (ical/csv).
653 * @param string $timezone Timezone (missing parameter!)
654 * @return string Content according to selected export format.
656 * @todo Implement timezone support
658 private static function formatListForExport(array $events, string $format): string
662 if (!count($events)) {
667 // Format the exported data as a CSV file.
669 header("Content-type: text/csv");
670 $o .= '"Subject", "Start Date", "Start Time", "Description", "End Date", "End Time", "Location"' . PHP_EOL;
672 foreach ($events as $event) {
673 /// @todo The time / date entries don't include any information about the
674 /// timezone the event is scheduled in :-/
675 $tmp1 = strtotime($event['start']);
676 $tmp2 = strtotime($event['finish']);
677 $time_format = "%H:%M:%S";
678 $date_format = "%Y-%m-%d";
680 $o .= '"' . $event['summary'] . '", "' . strftime($date_format, $tmp1) .
681 '", "' . strftime($time_format, $tmp1) . '", "' . $event['desc'] .
682 '", "' . strftime($date_format, $tmp2) .
683 '", "' . strftime($time_format, $tmp2) .
684 '", "' . $event['location'] . '"' . PHP_EOL;
688 // Format the exported data as a ics file.
690 header("Content-type: text/ics");
691 $o = 'BEGIN:VCALENDAR' . PHP_EOL
692 . 'VERSION:2.0' . PHP_EOL
693 . 'PRODID:-//friendica calendar export//0.1//EN' . PHP_EOL;
694 /// @todo include timezone informations in cases were the time is not in UTC
695 // see http://tools.ietf.org/html/rfc2445#section-4.8.3
696 // . 'BEGIN:VTIMEZONE' . PHP_EOL
697 // . 'TZID:' . $timezone . PHP_EOL
698 // . 'END:VTIMEZONE' . PHP_EOL;
699 // TODO instead of PHP_EOL CRLF should be used for long entries
700 // but test your solution against http://icalvalid.cloudapp.net/
701 // also long lines SHOULD be split at 75 characters length
702 foreach ($events as $event) {
703 $o .= 'BEGIN:VEVENT' . PHP_EOL;
705 if ($event['start']) {
706 $o .= 'DTSTART:' . DateTimeFormat::utc($event['start'], 'Ymd\THis\Z') . PHP_EOL;
709 if (!$event['nofinish']) {
710 $o .= 'DTEND:' . DateTimeFormat::utc($event['finish'], 'Ymd\THis\Z') . PHP_EOL;
713 if ($event['summary']) {
714 $tmp = $event['summary'];
715 $tmp = str_replace(PHP_EOL, PHP_EOL . ' ', $tmp);
716 $tmp = addcslashes($tmp, ',;');
717 $o .= 'SUMMARY:' . $tmp . PHP_EOL;
720 if ($event['desc']) {
721 $tmp = $event['desc'];
722 $tmp = str_replace(PHP_EOL, PHP_EOL . ' ', $tmp);
723 $tmp = addcslashes($tmp, ',;');
724 $o .= 'DESCRIPTION:' . $tmp . PHP_EOL;
727 if ($event['location']) {
728 $tmp = $event['location'];
729 $tmp = str_replace(PHP_EOL, PHP_EOL . ' ', $tmp);
730 $tmp = addcslashes($tmp, ',;');
731 $o .= 'LOCATION:' . $tmp . PHP_EOL;
734 $o .= 'END:VEVENT' . PHP_EOL;
738 $o .= 'END:VCALENDAR' . PHP_EOL;
746 * Get all events for a user ID.
748 * The query for events is done permission sensitive.
749 * If the user is the owner of the calendar they
750 * will get all of their available events.
751 * If the user is only a visitor only the public events will
754 * @param int $uid The user ID.
756 * @return array Query results.
759 private static function getListByUserId(int $uid = 0): array
767 $fields = ['start', 'finish', 'summary', 'desc', 'location', 'nofinish'];
769 $conditions = ['uid' => $uid, 'cid' => 0];
771 // Does the user who requests happen to be the owner of the events
772 // requested? then show all of your events, otherwise only those that
773 // don't have limitations set in allow_cid and allow_gid.
774 if (local_user() != $uid) {
775 $conditions += ['allow_cid' => '', 'allow_gid' => ''];
778 $events = DBA::select('event', $fields, $conditions);
779 if (DBA::isResult($events)) {
780 $return = DBA::toArray($events);
788 * @param int $uid The user ID.
789 * @param string $format Output format (ical/csv).
790 * @return array With the results:
791 * bool 'success' => True if the processing was successful,<br>
792 * string 'format' => The output format,<br>
793 * string 'extension' => The file extension of the output format,<br>
794 * string 'content' => The formatted output content.<br>
797 * @todo Respect authenticated users with events_by_uid().
799 public static function exportListByUserId(int $uid, string $format = 'ical'): array
803 // Get all events which are owned by a uid (respects permissions).
804 $events = self::getListByUserId($uid);
806 // We have the events that are available for the requestor.
807 // Now format the output according to the requested format.
808 $res = self::formatListForExport($events, $format);
810 // If there are results the precess was successful.
815 // Get the file extension for the format.
830 'success' => $process,
832 'extension' => $file_ext,
840 * Format an item array with event data to HTML.
842 * @param array $item Array with item and event data.
843 * @return string HTML output.
844 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
845 * @throws \ImagickException
847 public static function getItemHTML(array $item): string
852 // Set the different time formats.
853 $dformat = DI::l10n()->t('l F d, Y \@ g:i A'); // Friday January 18, 2011 @ 8:01 AM.
854 $dformat_short = DI::l10n()->t('D g:i A'); // Fri 8:01 AM.
855 $tformat = DI::l10n()->t('g:i A'); // 8:01 AM.
857 // Convert the time to different formats.
858 $dtstart_dt = DI::l10n()->getDay(DateTimeFormat::local($item['event-start'], $dformat));
859 $dtstart_title = DateTimeFormat::utc($item['event-start'], DateTimeFormat::ATOM);
860 // Format: Jan till Dec.
861 $month_short = DI::l10n()->getDayShort(DateTimeFormat::local($item['event-start'], 'M'));
862 // Format: 1 till 31.
863 $date_short = DateTimeFormat::local($item['event-start'], 'j');
864 $start_time = DateTimeFormat::local($item['event-start'], $tformat);
865 $start_short = DI::l10n()->getDayShort(DateTimeFormat::local($item['event-start'], $dformat_short));
867 // If the option 'nofinisch' isn't set, we need to format the finish date/time.
868 if (!$item['event-nofinish']) {
870 $dtend_dt = DI::l10n()->getDay(DateTimeFormat::local($item['event-finish'], $dformat));
871 $dtend_title = DateTimeFormat::utc($item['event-finish'], DateTimeFormat::ATOM);
872 $end_short = DI::l10n()->getDayShort(DateTimeFormat::utc($item['event-finish'], $dformat_short));
873 $end_time = DateTimeFormat::local($item['event-finish'], $tformat);
874 // Check if start and finish time is at the same day.
875 if (substr($dtstart_title, 0, 10) === substr($dtend_title, 0, 10)) {
885 // Format the event location.
886 $location = self::locationToArray($item['event-location']);
888 // Construct the profile link (magic-auth).
889 $author = ['uid' => 0, 'id' => $item['author-id'],
890 'network' => $item['author-network'], 'url' => $item['author-link']];
891 $profile_link = Contact::magicLinkByContact($author);
893 $tpl = Renderer::getMarkupTemplate('event_stream_item.tpl');
894 $return = Renderer::replaceMacros($tpl, [
895 '$id' => $item['event-id'],
896 '$title' => BBCode::convertForUriId($item['uri-id'], $item['event-summary']),
897 '$dtstart_label' => DI::l10n()->t('Starts:'),
898 '$dtstart_title' => $dtstart_title,
899 '$dtstart_dt' => $dtstart_dt,
900 '$finish' => $finish,
901 '$dtend_label' => DI::l10n()->t('Finishes:'),
902 '$dtend_title' => $dtend_title,
903 '$dtend_dt' => $dtend_dt,
904 '$month_short' => $month_short,
905 '$date_short' => $date_short,
906 '$same_date' => $same_date,
907 '$start_time' => $start_time,
908 '$start_short' => $start_short,
909 '$end_time' => $end_time,
910 '$end_short' => $end_short,
911 '$author_name' => $item['author-name'],
912 '$author_link' => $profile_link,
913 '$author_avatar' => $item['author-avatar'],
914 '$description' => BBCode::convertForUriId($item['uri-id'], $item['event-desc']),
915 '$location_label' => DI::l10n()->t('Location:'),
916 '$show_map_label' => DI::l10n()->t('Show map'),
917 '$hide_map_label' => DI::l10n()->t('Hide map'),
918 '$map_btn_label' => DI::l10n()->t('Show map'),
919 '$location' => $location
926 * Format a string with map bbcode to an array with location data.
928 * Note: The string must only contain location data. A string with no bbcode will be
929 * handled as location name.
931 * @param string $s The string with the bbcode formatted location data.
933 * @return array The array with the location data.
934 * 'name' => The name of the location,<br>
935 * 'address' => The address of the location,<br>
936 * 'coordinates' => Latitude and longitude (e.g. '48.864716,2.349014').<br>
937 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
939 private static function locationToArray(string $s = ''): array
945 $location = ['name' => $s];
947 // Map tag with location name - e.g. [map]Paris[/map].
948 if (strpos($s, '[/map]') !== false) {
949 $found = preg_match("/\[map\](.*?)\[\/map\]/ism", $s, $match);
950 if (intval($found) > 0 && array_key_exists(1, $match)) {
951 $location['address'] = $match[1];
952 // Remove the map bbcode from the location name.
953 $location['name'] = str_replace($match[0], "", $s);
955 // Map tag with coordinates - e.g. [map=48.864716,2.349014].
956 } elseif (strpos($s, '[map=') !== false) {
957 $found = preg_match("/\[map=(.*?)\]/ism", $s, $match);
958 if (intval($found) > 0 && array_key_exists(1, $match)) {
959 $location['coordinates'] = $match[1];
960 // Remove the map bbcode from the location name.
961 $location['name'] = str_replace($match[0], "", $s);
965 $location['name'] = BBCode::convert($location['name']);
967 // Construct the map HTML.
968 if (isset($location['address'])) {
969 $location['map'] = '<div class="map">' . Map::byLocation($location['address']) . '</div>';
970 } elseif (isset($location['coordinates'])) {
971 $location['map'] = '<div class="map">' . Map::byCoordinates(str_replace('/', ' ', $location['coordinates'])) . '</div>';
978 * Add new birthday event for this person
980 * @param array $contact Contact array, expects: id, uid, url, name
981 * @param string $birthday Birthday of the contact
985 public static function createBirthday(array $contact, string $birthday): bool
987 // Check for duplicates
989 'uid' => $contact['uid'],
990 'cid' => $contact['id'],
991 'start' => DateTimeFormat::utc($birthday),
994 if (DBA::exists('event', $condition)) {
999 * Add new birthday event for this person
1001 * summary is just a readable placeholder in case the event is shared
1002 * with others. We will replace it during presentation to our $importer
1003 * to contain a sparkle link and perhaps a photo.
1006 'uid' => $contact['uid'],
1007 'cid' => $contact['id'],
1008 'start' => DateTimeFormat::utc($birthday),
1009 'finish' => DateTimeFormat::utc($birthday . ' + 1 day '),
1010 'summary' => DI::l10n()->t('%s\'s birthday', $contact['name']),
1011 'desc' => DI::l10n()->t('Happy Birthday %s', ' [url=' . $contact['url'] . ']' . $contact['name'] . '[/url]'),
1012 'type' => 'birthday',
1015 // Check if self::store() was success
1016 return (self::store($values) > 0);