]> git.mxchange.org Git - friendica.git/blobdiff - src/Model/Event.php
Changed:
[friendica.git] / src / Model / Event.php
index 5139abc43420e7aa0a443f47b5620eeaa75d4bee..f289fd4e4f96e242b75311407ea194541c97a5e8 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2020, Friendica
+ * @copyright Copyright (C) 2010-2022, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -41,24 +41,20 @@ use Friendica\Util\XML;
 class Event
 {
 
-       public static function getHTML(array $event, $simple = false)
+       public static function getHTML(array $event, bool $simple = false, int $uriid = 0): string
        {
                if (empty($event)) {
                        return '';
                }
 
-               $bd_format = DI::l10n()->t('l F d, Y \@ g:i A'); // Friday January 18, 2011 @ 8 AM.
+               $uriid = $event['uri-id'] ?? $uriid;
 
-               $event_start = DI::l10n()->getDay(
-                       !empty($event['adjust']) ?
-                       DateTimeFormat::local($event['start'], $bd_format) : DateTimeFormat::utc($event['start'], $bd_format)
-               );
+               $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)
+
+               $event_start = DI::l10n()->getDay(DateTimeFormat::local($event['start'], $bd_format));
 
                if (!empty($event['finish'])) {
-                       $event_end = DI::l10n()->getDay(
-                               !empty($event['adjust']) ?
-                               DateTimeFormat::local($event['finish'], $bd_format) : DateTimeFormat::utc($event['finish'], $bd_format)
-                       );
+                       $event_end = DI::l10n()->getDay(DateTimeFormat::local($event['finish'], $bd_format));
                } else {
                        $event_end = '';
                }
@@ -67,11 +63,11 @@ class Event
                        $o = '';
 
                        if (!empty($event['summary'])) {
-                               $o .= "<h3>" . BBCode::convert(Strings::escapeHtml($event['summary']), false, $simple) . "</h3>";
+                               $o .= "<h3>" . BBCode::convertForUriId($uriid, Strings::escapeHtml($event['summary']), $simple) . "</h3>";
                        }
 
                        if (!empty($event['desc'])) {
-                               $o .= "<div>" . BBCode::convert(Strings::escapeHtml($event['desc']), false, $simple) . "</div>";
+                               $o .= "<div>" . BBCode::convertForUriId($uriid, Strings::escapeHtml($event['desc']), $simple) . "</div>";
                        }
 
                        $o .= "<h4>" . DI::l10n()->t('Starts:') . "</h4><p>" . $event_start . "</p>";
@@ -81,7 +77,7 @@ class Event
                        }
 
                        if (!empty($event['location'])) {
-                               $o .= "<h4>" . DI::l10n()->t('Location:') . "</h4><p>" . BBCode::convert(Strings::escapeHtml($event['location']), false, $simple) . "</p>";
+                               $o .= "<h4>" . DI::l10n()->t('Location:') . "</h4><p>" . BBCode::convertForUriId($uriid, Strings::escapeHtml($event['location']), $simple) . "</p>";
                        }
 
                        return $o;
@@ -89,27 +85,27 @@ class Event
 
                $o = '<div class="vevent">' . "\r\n";
 
-               $o .= '<div class="summary event-summary">' . BBCode::convert(Strings::escapeHtml($event['summary']), false, $simple) . '</div>' . "\r\n";
+               $o .= '<div class="summary event-summary">' . BBCode::convertForUriId($uriid, Strings::escapeHtml($event['summary']), $simple) . '</div>' . "\r\n";
 
                $o .= '<div class="event-start"><span class="event-label">' . DI::l10n()->t('Starts:') . '</span>&nbsp;<span class="dtstart" title="'
-                       . DateTimeFormat::utc($event['start'], (!empty($event['adjust']) ? DateTimeFormat::ATOM : 'Y-m-d\TH:i:s'))
+                       . DateTimeFormat::local($event['start'], DateTimeFormat::ATOM)
                        . '" >' . $event_start
                        . '</span></div>' . "\r\n";
 
                if (!$event['nofinish']) {
                        $o .= '<div class="event-end" ><span class="event-label">' . DI::l10n()->t('Finishes:') . '</span>&nbsp;<span class="dtend" title="'
-                               . DateTimeFormat::utc($event['finish'], (!empty($event['adjust']) ? DateTimeFormat::ATOM : 'Y-m-d\TH:i:s'))
+                               . DateTimeFormat::local($event['finish'], DateTimeFormat::ATOM)
                                . '" >' . $event_end
                                . '</span></div>' . "\r\n";
                }
 
                if (!empty($event['desc'])) {
-                       $o .= '<div class="description event-description">' . BBCode::convert(Strings::escapeHtml($event['desc']), false, $simple) . '</div>' . "\r\n";
+                       $o .= '<div class="description event-description">' . BBCode::convertForUriId($uriid, Strings::escapeHtml($event['desc']), $simple) . '</div>' . "\r\n";
                }
 
                if (!empty($event['location'])) {
                        $o .= '<div class="event-location"><span class="event-label">' . DI::l10n()->t('Location:') . '</span>&nbsp;<span class="location">'
-                               . BBCode::convert(Strings::escapeHtml($event['location']), false, $simple)
+                               . BBCode::convertForUriId($uriid, Strings::escapeHtml($event['location']), $simple)
                                . '</span></div>' . "\r\n";
 
                        // Include a map of the location if the [map] BBCode is used.
@@ -131,7 +127,7 @@ class Event
         * @param array $event Array which contains the event data.
         * @return string The event as a bbcode formatted string.
         */
-       private static function getBBCode(array $event)
+       private static function getBBCode(array $event): string
        {
                $o = '';
 
@@ -155,69 +151,59 @@ class Event
                        $o .= '[event-location]' . $event['location'] . '[/event-location]';
                }
 
-               if ($event['adjust']) {
-                       $o .= '[event-adjust]' . $event['adjust'] . '[/event-adjust]';
-               }
-
                return $o;
        }
 
        /**
         * Extract bbcode formatted event data from a string.
         *
-        * @params: string $s The string which should be parsed for event data.
-        * @param $text
+        * @param string $text The string which should be parsed for event data.
         * @return array The array with the event information.
         */
-       public static function fromBBCode($text)
+       public static function fromBBCode(string $text): array
        {
                $ev = [];
 
-               $match = '';
+               $match = [];
                if (preg_match("/\[event\-summary\](.*?)\[\/event\-summary\]/is", $text, $match)) {
                        $ev['summary'] = $match[1];
                }
 
-               $match = '';
+               $match = [];
                if (preg_match("/\[event\-description\](.*?)\[\/event\-description\]/is", $text, $match)) {
                        $ev['desc'] = $match[1];
                }
 
-               $match = '';
+               $match = [];
                if (preg_match("/\[event\-start\](.*?)\[\/event\-start\]/is", $text, $match)) {
                        $ev['start'] = $match[1];
                }
 
-               $match = '';
+               $match = [];
                if (preg_match("/\[event\-finish\](.*?)\[\/event\-finish\]/is", $text, $match)) {
                        $ev['finish'] = $match[1];
                }
 
-               $match = '';
+               $match = [];
                if (preg_match("/\[event\-location\](.*?)\[\/event\-location\]/is", $text, $match)) {
                        $ev['location'] = $match[1];
                }
 
-               $match = '';
-               if (preg_match("/\[event\-adjust\](.*?)\[\/event\-adjust\]/is", $text, $match)) {
-                       $ev['adjust'] = $match[1];
-               }
-
                $ev['nofinish'] = !empty($ev['start']) && empty($ev['finish']) ? 1 : 0;
 
                return $ev;
        }
 
-       public static function sortByDate($event_list)
+       public static function sortByDate(array $event_list): array
        {
                usort($event_list, ['self', 'compareDatesCallback']);
                return $event_list;
        }
 
-       private static function compareDatesCallback($event_a, $event_b)
+       private static function compareDatesCallback(array $event_a, array $event_b)
        {
-               $date_a = (($event_a['adjust']) ? DateTimeFormat::local($event_a['start']) : $event_a['start']);
-               $date_b = (($event_b['adjust']) ? DateTimeFormat::local($event_b['start']) : $event_b['start']);
+               $date_a = DateTimeFormat::local($event_a['start']);
+               $date_b = DateTimeFormat::local($event_b['start']);
 
                if ($date_a === $date_b) {
                        return strcasecmp($event_a['desc'], $event_b['desc']);
@@ -236,14 +222,14 @@ class Event
         * @return void
         * @throws \Exception
         */
-       public static function delete($event_id)
+       public static function delete(int $event_id)
        {
                if ($event_id == 0) {
                        return;
                }
 
-               DBA::delete('event', ['id' => $event_id], ['cascade' => false]);
-               Logger::log("Deleted event ".$event_id, Logger::DEBUG);
+               DBA::delete('event', ['id' => $event_id]);
+               Logger::info("Deleted event", ['id' => $event_id]);
        }
 
        /**
@@ -255,52 +241,45 @@ class Event
         * @return int The new event id.
         * @throws \Friendica\Network\HTTPException\InternalServerErrorException
         */
-       public static function store($arr)
+       public static function store(array $arr): int
        {
-               $event = [];
-               $event['id']        = intval($arr['id']        ?? 0);
-               $event['uid']       = intval($arr['uid']       ?? 0);
-               $event['cid']       = intval($arr['cid']       ?? 0);
-               $event['guid']      =       ($arr['guid']      ?? '') ?: System::createUUID();
-               $event['uri']       =       ($arr['uri']       ?? '') ?: Item::newURI($event['uid'], $event['guid']);
-               $event['type']      =       ($arr['type']      ?? '') ?: 'event';
-               $event['summary']   =        $arr['summary']   ?? '';
-               $event['desc']      =        $arr['desc']      ?? '';
-               $event['location']  =        $arr['location']  ?? '';
-               $event['allow_cid'] =        $arr['allow_cid'] ?? '';
-               $event['allow_gid'] =        $arr['allow_gid'] ?? '';
-               $event['deny_cid']  =        $arr['deny_cid']  ?? '';
-               $event['deny_gid']  =        $arr['deny_gid']  ?? '';
-               $event['adjust']    = intval($arr['adjust']    ?? 0);
-               $event['nofinish']  = intval($arr['nofinish'] ?? (!empty($event['start']) && empty($event['finish'])));
-
-               $event['created']   = DateTimeFormat::utc(($arr['created'] ?? '') ?: 'now');
-               $event['edited']    = DateTimeFormat::utc(($arr['edited']  ?? '') ?: 'now');
-               $event['start']     = DateTimeFormat::utc(($arr['start']   ?? '') ?: DBA::NULL_DATETIME);
-               $event['finish']    = DateTimeFormat::utc(($arr['finish']  ?? '') ?: DBA::NULL_DATETIME);
+               $event = [
+                       'id'        => intval($arr['id']        ?? 0),
+                       'uid'       => intval($arr['uid']       ?? 0),
+                       'cid'       => intval($arr['cid']       ?? 0),
+                       'guid'      =>       ($arr['guid']      ?? '') ?: System::createUUID(),
+                       'type'      =>       ($arr['type']      ?? '') ?: 'event',
+                       'summary'   =>        $arr['summary']   ?? '',
+                       'desc'      =>        $arr['desc']      ?? '',
+                       'location'  =>        $arr['location']  ?? '',
+                       'allow_cid' =>        $arr['allow_cid'] ?? '',
+                       'allow_gid' =>        $arr['allow_gid'] ?? '',
+                       'deny_cid'  =>        $arr['deny_cid']  ?? '',
+                       'deny_gid'  =>        $arr['deny_gid']  ?? '',
+                       'nofinish'  => intval($arr['nofinish'] ?? (!empty($arr['start']) && empty($arr['finish']))),
+                       'created'   => DateTimeFormat::utc(($arr['created'] ?? '') ?: 'now'),
+                       'edited'    => DateTimeFormat::utc(($arr['edited']  ?? '') ?: 'now'),
+                       'start'     => DateTimeFormat::utc(($arr['start']   ?? '') ?: DBA::NULL_DATETIME),
+                       'finish'    => DateTimeFormat::utc(($arr['finish']  ?? '') ?: DBA::NULL_DATETIME),
+               ];
+
+               $event['uri']    = ($arr['uri']       ?? '') ?: Item::newURI($event['guid']);
+               $event['uri-id'] = ItemURI::insert(['uri' => $event['uri'], 'guid' => $event['guid']]);
+
                if ($event['finish'] < DBA::NULL_DATETIME) {
                        $event['finish'] = DBA::NULL_DATETIME;
                }
-               $private = intval($arr['private'] ?? 0);
-
-               $conditions = ['uid' => $event['uid']];
-               if ($event['cid']) {
-                       $conditions['id'] = $event['cid'];
-               } else {
-                       $conditions['self'] = true;
-               }
-
-               $contact = DBA::selectFirst('contact', [], $conditions);
 
                // Existing event being modified.
                if ($event['id']) {
                        // has the event actually changed?
                        $existing_event = DBA::selectFirst('event', ['edited'], ['id' => $event['id'], 'uid' => $event['uid']]);
-                       if (!DBA::isResult($existing_event) || ($existing_event['edited'] === $event['edited'])) {
-
-                               $item = Item::selectFirst(['id'], ['event-id' => $event['id'], 'uid' => $event['uid']]);
-
-                               return DBA::isResult($item) ? $item['id'] : 0;
+                       if (!DBA::isResult($existing_event)) {
+                               return 0;
+                       }
+                       
+                       if ($existing_event['edited'] === $event['edited']) {
+                               return $event['id'];
                        }
 
                        $updated_fields = [
@@ -311,13 +290,12 @@ class Event
                                'desc'     => $event['desc'],
                                'location' => $event['location'],
                                'type'     => $event['type'],
-                               'adjust'   => $event['adjust'],
                                'nofinish' => $event['nofinish'],
                        ];
 
                        DBA::update('event', $updated_fields, ['id' => $event['id'], 'uid' => $event['uid']]);
 
-                       $item = Item::selectFirst(['id'], ['event-id' => $event['id'], 'uid' => $event['uid']]);
+                       $item = Post::selectFirst(['id', 'uri-id'], ['event-id' => $event['id'], 'uid' => $event['uid']]);
                        if (DBA::isResult($item)) {
                                $object = '<object><type>' . XML::escape(Activity\ObjectType::EVENT) . '</type><title></title><id>' . XML::escape($event['uri']) . '</id>';
                                $object .= '<content>' . XML::escape(self::getBBCode($event)) . '</content>';
@@ -325,10 +303,6 @@ class Event
 
                                $fields = ['body' => self::getBBCode($event), 'object' => $object, 'edited' => $event['edited']];
                                Item::update($fields, ['id' => $item['id']]);
-
-                               $item_id = $item['id'];
-                       } else {
-                               $item_id = 0;
                        }
 
                        Hook::callAll('event_updated', $event['id']);
@@ -336,53 +310,93 @@ class Event
                        // New event. Store it.
                        DBA::insert('event', $event);
 
-                       $item_id = 0;
-
-                       // Don't create an item for birthday events
-                       if ($event['type'] == 'event') {
-                               $event['id'] = DBA::lastInsertId();
-
-                               $item_arr = [];
-
-                               $item_arr['uid']           = $event['uid'];
-                               $item_arr['contact-id']    = $event['cid'];
-                               $item_arr['uri']           = $event['uri'];
-                               $item_arr['guid']          = $event['guid'];
-                               $item_arr['plink']         = $arr['plink'] ?? '';
-                               $item_arr['post-type']     = Item::PT_EVENT;
-                               $item_arr['wall']          = $event['cid'] ? 0 : 1;
-                               $item_arr['contact-id']    = $contact['id'];
-                               $item_arr['owner-name']    = $contact['name'];
-                               $item_arr['owner-link']    = $contact['url'];
-                               $item_arr['owner-avatar']  = $contact['thumb'];
-                               $item_arr['author-name']   = $contact['name'];
-                               $item_arr['author-link']   = $contact['url'];
-                               $item_arr['author-avatar'] = $contact['thumb'];
-                               $item_arr['title']         = '';
-                               $item_arr['allow_cid']     = $event['allow_cid'];
-                               $item_arr['allow_gid']     = $event['allow_gid'];
-                               $item_arr['deny_cid']      = $event['deny_cid'];
-                               $item_arr['deny_gid']      = $event['deny_gid'];
-                               $item_arr['private']       = $private;
-                               $item_arr['visible']       = 1;
-                               $item_arr['verb']          = Activity::POST;
-                               $item_arr['object-type']   = Activity\ObjectType::EVENT;
-                               $item_arr['origin']        = $event['cid'] === 0 ? 1 : 0;
-                               $item_arr['body']          = self::getBBCode($event);
-                               $item_arr['event-id']      = $event['id'];
-                               $item_arr['network']       = Protocol::DFRN;
-
-                               $item_arr['object']  = '<object><type>' . XML::escape(Activity\ObjectType::EVENT) . '</type><title></title><id>' . XML::escape($event['uri']) . '</id>';
-                               $item_arr['object'] .= '<content>' . XML::escape(self::getBBCode($event)) . '</content>';
-                               $item_arr['object'] .= '</object>' . "\n";
-
-                               $item_id = Item::insert($item_arr);
-                       }
+                       $event['id'] = DBA::lastInsertId();
 
                        Hook::callAll("event_created", $event['id']);
                }
 
-               return $item_id;
+               return $event['id'];
+       }
+
+       public static function getItemArrayForId(int $event_id, array $item = []): array
+       {
+               if (empty($event_id)) {
+                       return $item;
+               }
+
+               $event = DBA::selectFirst('event', [], ['id' => $event_id]);
+               if ($event['type'] != 'event') {
+                       return $item;
+               }
+
+               if ($event['cid']) {
+                       $conditions = ['id' => $event['cid']];
+               } else {
+                       $conditions = ['uid' => $event['uid'], 'self' => true];
+               }
+
+               $contact = DBA::selectFirst('contact', [], $conditions);
+
+               $event['id'] = $event_id;
+
+               $item['uid']           = $event['uid'];
+               $item['contact-id']    = $event['cid'];
+               $item['uri']           = $event['uri'];
+               $item['uri-id']        = ItemURI::getIdByURI($event['uri']);
+               $item['guid']          = $event['guid'];
+               $item['plink']         = $arr['plink'] ?? '';
+               $item['post-type']     = Item::PT_EVENT;
+               $item['wall']          = $event['cid'] ? 0 : 1;
+               $item['contact-id']    = $contact['id'];
+               $item['owner-name']    = $contact['name'];
+               $item['owner-link']    = $contact['url'];
+               $item['owner-avatar']  = $contact['thumb'];
+               $item['author-name']   = $contact['name'];
+               $item['author-link']   = $contact['url'];
+               $item['author-avatar'] = $contact['thumb'];
+               $item['title']         = '';
+               $item['allow_cid']     = $event['allow_cid'];
+               $item['allow_gid']     = $event['allow_gid'];
+               $item['deny_cid']      = $event['deny_cid'];
+               $item['deny_gid']      = $event['deny_gid'];
+               $item['private']       = intval($event['private'] ?? 0);
+               $item['visible']       = 1;
+               $item['verb']          = Activity::POST;
+               $item['object-type']   = Activity\ObjectType::EVENT;
+               $item['post-type']     = Item::PT_EVENT;
+               $item['origin']        = $event['cid'] === 0 ? 1 : 0;
+               $item['body']          = self::getBBCode($event);
+               $item['event-id']      = $event['id'];
+
+               $item['object']  = '<object><type>' . XML::escape(Activity\ObjectType::EVENT) . '</type><title></title><id>' . XML::escape($event['uri']) . '</id>';
+               $item['object'] .= '<content>' . XML::escape(self::getBBCode($event)) . '</content>';
+               $item['object'] .= '</object>' . "\n";
+
+               return $item;
+       }
+
+       public static function getItemArrayForImportedId(int $event_id, array $item = []): array
+       {
+               if (empty($event_id)) {
+                       return $item;
+               }
+
+               $event = DBA::selectFirst('event', [], ['id' => $event_id]);
+               if ($event['type'] != 'event') {
+                       return $item;
+               }
+
+               $item['post-type']     = Item::PT_EVENT;
+               $item['title']         = '';
+               $item['object-type']   = Activity\ObjectType::EVENT;
+               $item['body']          = self::getBBCode($event);
+               $item['event-id']      = $event_id;
+
+               $item['object']  = '<object><type>' . XML::escape(Activity\ObjectType::EVENT) . '</type><title></title><id>' . XML::escape($event['uri']) . '</id>';
+               $item['object'] .= '<content>' . XML::escape(self::getBBCode($event)) . '</content>';
+               $item['object'] .= '</object>' . "\n";
+
+               return $item;
        }
 
        /**
@@ -391,7 +405,7 @@ class Event
         * @return array Array with translations strings.
         * @throws \Friendica\Network\HTTPException\InternalServerErrorException
         */
-       public static function getStrings()
+       public static function getStrings(): array
        {
                // First day of the week (0 = Sunday).
                $firstDay = DI::pConfig()->get(local_user(), 'system', 'first_day_of_week', 0);
@@ -464,7 +478,7 @@ class Event
         *
         * @todo We should replace this with a separate update function if there is some time left.
         */
-       private static function removeDuplicates(array $dates)
+       private static function removeDuplicates(array $dates): array
        {
                $dates2 = [];
 
@@ -487,7 +501,7 @@ class Event
         * @return array Query result
         * @throws \Exception
         */
-       public static function getListById($owner_uid, $event_id, $sql_extra = '')
+       public static function getListById(int $owner_uid, int $event_id, string $sql_extra = ''): array
        {
                $return = [];
 
@@ -497,15 +511,13 @@ class Event
                }
 
                // Query for the event by event id
-               $r = q("SELECT `event`.*, `item`.`id` AS `itemid` FROM `event`
-                       LEFT JOIN `item` ON `item`.`event-id` = `event`.`id` AND `item`.`uid` = `event`.`uid`
-                       WHERE `event`.`uid` = %d AND `event`.`id` = %d $sql_extra",
-                       intval($owner_uid),
-                       intval($event_id)
-               );
-
-               if (DBA::isResult($r)) {
-                       $return = self::removeDuplicates($r);
+               $events = DBA::toArray(DBA::p("SELECT `event`.*, `post-user`.`id` AS `itemid` FROM `event`
+                       LEFT JOIN `post-user` ON `post-user`.`event-id` = `event`.`id` AND `post-user`.`uid` = `event`.`uid`
+                       WHERE `event`.`uid` = ? AND `event`.`id` = ? $sql_extra",
+                       $owner_uid, $event_id));
+
+               if (DBA::isResult($events)) {
+                       $return = self::removeDuplicates($events);
                }
 
                return $return;
@@ -519,15 +531,13 @@ class Event
         *                             int 'ignore' =>
         *                             string 'start' => Start time of the timeframe.
         *                             string 'finish' => Finish time of the timeframe.
-        *                             string 'adjust_start' =>
-        *                             string 'adjust_finish' =>
         *
         * @param string $sql_extra    Additional sql conditions (e.g. permission request).
         *
         * @return array Query results.
         * @throws \Exception
         */
-       public static function getListByDate($owner_uid, $event_params, $sql_extra = '')
+       public static function getListByDate(int $owner_uid, array $event_params, string $sql_extra = ''): array
        {
                $return = [];
 
@@ -537,25 +547,17 @@ class Event
                }
 
                // Query for the event by date.
-               // @todo Slow query (518 seconds to run), to be optimzed
-               $r = q("SELECT `event`.*, `item`.`id` AS `itemid` FROM `event`
-                               LEFT JOIN `item` ON `item`.`event-id` = `event`.`id` AND `item`.`uid` = `event`.`uid`
-                               WHERE `event`.`uid` = %d AND event.ignore = %d
-                               AND ((`adjust` = 0 AND (`finish` >= '%s' OR (nofinish AND start >= '%s')) AND `start` <= '%s')
-                               OR  (`adjust` = 1 AND (`finish` >= '%s' OR (nofinish AND start >= '%s')) AND `start` <= '%s'))
-                               $sql_extra ",
-                               intval($owner_uid),
-                               intval($event_params["ignore"]),
-                               DBA::escape($event_params["start"]),
-                               DBA::escape($event_params["start"]),
-                               DBA::escape($event_params["finish"]),
-                               DBA::escape($event_params["adjust_start"]),
-                               DBA::escape($event_params["adjust_start"]),
-                               DBA::escape($event_params["adjust_finish"])
-               );
-
-               if (DBA::isResult($r)) {
-                       $return = self::removeDuplicates($r);
+               $events = DBA::toArray(DBA::p("SELECT `event`.*, `post-user`.`id` AS `itemid` FROM `event`
+                               LEFT JOIN `post-user` ON `post-user`.`event-id` = `event`.`id` AND `post-user`.`uid` = `event`.`uid`
+                               WHERE `event`.`uid` = ? AND `event`.`ignore` = ?
+                               AND (`finish` >= ? OR (`nofinish` AND `start` >= ?)) AND `start` <= ?
+                               " . $sql_extra,
+                               $owner_uid, $event_params['ignore'],
+                               $event_params['start'], $event_params['start'], $event_params['finish']
+               ));
+
+               if (DBA::isResult($events)) {
+                       $return = self::removeDuplicates($events);
                }
 
                return $return;
@@ -569,30 +571,30 @@ class Event
         * @throws \Friendica\Network\HTTPException\InternalServerErrorException
         * @throws \ImagickException
         */
-       public static function prepareListForTemplate(array $event_result)
+       public static function prepareListForTemplate(array $event_result): array
        {
                $event_list = [];
 
                $last_date = '';
                $fmt = DI::l10n()->t('l, F j');
                foreach ($event_result as $event) {
-                       $item = Item::selectFirst(['plink', 'author-name', 'author-avatar', 'author-link'], ['id' => $event['itemid']]);
+                       $item = Post::selectFirst(['plink', 'author-name', 'author-avatar', 'author-link', 'private', 'uri-id'], ['id' => $event['itemid']]);
                        if (!DBA::isResult($item)) {
                                // Using default values when no item had been found
-                               $item = ['plink' => '', 'author-name' => '', 'author-avatar' => '', 'author-link' => ''];
+                               $item = ['plink' => '', 'author-name' => '', 'author-avatar' => '', 'author-link' => '', 'private' => Item::PUBLIC, 'uri-id' => ($event['uri-id'] ?? 0)];
                        }
 
                        $event = array_merge($event, $item);
 
-                       $start = $event['adjust'] ? DateTimeFormat::local($event['start'], 'c')  : DateTimeFormat::utc($event['start'], 'c');
-                       $j     = $event['adjust'] ? DateTimeFormat::local($event['start'], 'j')  : DateTimeFormat::utc($event['start'], 'j');
-                       $day   = $event['adjust'] ? DateTimeFormat::local($event['start'], $fmt) : DateTimeFormat::utc($event['start'], $fmt);
+                       $start = DateTimeFormat::local($event['start'], 'c');
+                       $j     = DateTimeFormat::local($event['start'], 'j');
+                       $day   = DateTimeFormat::local($event['start'], $fmt);
                        $day   = DI::l10n()->getDay($day);
 
                        if ($event['nofinish']) {
                                $end = null;
                        } else {
-                               $end = $event['adjust'] ? DateTimeFormat::local($event['finish'], 'c') : DateTimeFormat::utc($event['finish'], 'c');
+                               $end = DateTimeFormat::local($event['finish'], 'c');
                        }
 
                        $is_first = ($day !== $last_date);
@@ -610,9 +612,9 @@ class Event
                                $drop =                  [DI::baseUrl() . '/events/drop/' . $event['id'] , DI::l10n()->t('Delete event')   , '', ''];
                        }
 
-                       $title = BBCode::convert(Strings::escapeHtml($event['summary']));
+                       $title = BBCode::convertForUriId($event['uri-id'], Strings::escapeHtml($event['summary']));
                        if (!$title) {
-                               list($title, $_trash) = explode("<br", BBCode::convert(Strings::escapeHtml($event['desc'])), BBCode::API);
+                               list($title, $_trash) = explode("<br", BBCode::convertForUriId($event['uri-id'], Strings::escapeHtml($event['desc'])), BBCode::API);
                        }
 
                        $author_link = $event['author-link'];
@@ -620,9 +622,9 @@ class Event
                        $event['author-link'] = Contact::magicLink($author_link);
 
                        $html = self::getHTML($event);
-                       $event['summary']  = BBCode::convert(Strings::escapeHtml($event['summary']));
-                       $event['desc']     = BBCode::convert(Strings::escapeHtml($event['desc']));
-                       $event['location'] = BBCode::convert(Strings::escapeHtml($event['location']));
+                       $event['summary']  = BBCode::convertForUriId($event['uri-id'], Strings::escapeHtml($event['summary']));
+                       $event['desc']     = BBCode::convertForUriId($event['uri-id'], Strings::escapeHtml($event['desc']));
+                       $event['location'] = BBCode::convertForUriId($event['uri-id'], Strings::escapeHtml($event['location']));
                        $event_list[] = [
                                'id'       => $event['id'],
                                'start'    => $start,
@@ -650,12 +652,12 @@ class Event
         * @param array  $events Query result for events.
         * @param string $format The output format (ical/csv).
         *
-        * @param        $timezone
+        * @param string $timezone Timezone (missing parameter!)
         * @return string Content according to selected export format.
         *
         * @todo  Implement timezone support
         */
-       private static function formatListForExport(array $events, $format)
+       private static function formatListForExport(array $events, string $format): string
        {
                $o = '';
 
@@ -700,23 +702,14 @@ class Event
                                //       but test your solution against http://icalvalid.cloudapp.net/
                                //       also long lines SHOULD be split at 75 characters length
                                foreach ($events as $event) {
-                                       if ($event['adjust'] == 1) {
-                                               $UTC = 'Z';
-                                       } else {
-                                               $UTC = '';
-                                       }
                                        $o .= 'BEGIN:VEVENT' . PHP_EOL;
 
                                        if ($event['start']) {
-                                               $tmp = strtotime($event['start']);
-                                               $dtformat = "%Y%m%dT%H%M%S" . $UTC;
-                                               $o .= 'DTSTART:' . strftime($dtformat, $tmp) . PHP_EOL;
+                                               $o .= 'DTSTART:' . DateTimeFormat::utc($event['start'], 'Ymd\THis\Z') . PHP_EOL;
                                        }
 
                                        if (!$event['nofinish']) {
-                                               $tmp = strtotime($event['finish']);
-                                               $dtformat = "%Y%m%dT%H%M%S" . $UTC;
-                                               $o .= 'DTEND:' . strftime($dtformat, $tmp) . PHP_EOL;
+                                               $o .= 'DTEND:' . DateTimeFormat::utc($event['finish'], 'Ymd\THis\Z') . PHP_EOL;
                                        }
 
                                        if ($event['summary']) {
@@ -765,7 +758,7 @@ class Event
         * @return array Query results.
         * @throws \Exception
         */
-       private static function getListByUserId($uid = 0)
+       private static function getListByUserId(int $uid = 0): array
        {
                $return = [];
 
@@ -773,7 +766,7 @@ class Event
                        return $return;
                }
 
-               $fields = ['start', 'finish', 'adjust', 'summary', 'desc', 'location', 'nofinish'];
+               $fields = ['start', 'finish', 'summary', 'desc', 'location', 'nofinish'];
 
                $conditions = ['uid' => $uid, 'cid' => 0];
 
@@ -805,7 +798,7 @@ class Event
         * @throws \Exception
         * @todo Respect authenticated users with events_by_uid().
         */
-       public static function exportListByUserId($uid, $format = 'ical')
+       public static function exportListByUserId(int $uid, string $format = 'ical'): array
        {
                $process = false;
 
@@ -853,7 +846,8 @@ class Event
         * @throws \Friendica\Network\HTTPException\InternalServerErrorException
         * @throws \ImagickException
         */
-       public static function getItemHTML(array $item) {
+       public static function getItemHTML(array $item): string
+       {
                $same_date = false;
                $finish    = false;
 
@@ -863,48 +857,22 @@ class Event
                $tformat       = DI::l10n()->t('g:i A'); // 8:01 AM.
 
                // Convert the time to different formats.
-               $dtstart_dt = DI::l10n()->getDay(
-                       $item['event-adjust'] ?
-                               DateTimeFormat::local($item['event-start'], $dformat)
-                               : DateTimeFormat::utc($item['event-start'], $dformat)
-               );
-               $dtstart_title = DateTimeFormat::utc($item['event-start'], $item['event-adjust'] ? DateTimeFormat::ATOM : 'Y-m-d\TH:i:s');
+               $dtstart_dt = DI::l10n()->getDay(DateTimeFormat::local($item['event-start'], $dformat));
+               $dtstart_title = DateTimeFormat::utc($item['event-start'], DateTimeFormat::ATOM);
                // Format: Jan till Dec.
-               $month_short = DI::l10n()->getDayShort(
-                       $item['event-adjust'] ?
-                               DateTimeFormat::local($item['event-start'], 'M')
-                               : DateTimeFormat::utc($item['event-start'], 'M')
-               );
+               $month_short = DI::l10n()->getDayShort(DateTimeFormat::local($item['event-start'], 'M'));
                // Format: 1 till 31.
-               $date_short = $item['event-adjust'] ?
-                       DateTimeFormat::local($item['event-start'], 'j')
-                       : DateTimeFormat::utc($item['event-start'], 'j');
-               $start_time = $item['event-adjust'] ?
-                       DateTimeFormat::local($item['event-start'], $tformat)
-                       : DateTimeFormat::utc($item['event-start'], $tformat);
-               $start_short = DI::l10n()->getDayShort(
-                       $item['event-adjust'] ?
-                               DateTimeFormat::local($item['event-start'], $dformat_short)
-                               : DateTimeFormat::utc($item['event-start'], $dformat_short)
-               );
+               $date_short = DateTimeFormat::local($item['event-start'], 'j');
+               $start_time = DateTimeFormat::local($item['event-start'], $tformat);
+               $start_short = DI::l10n()->getDayShort(DateTimeFormat::local($item['event-start'], $dformat_short));
 
                // If the option 'nofinisch' isn't set, we need to format the finish date/time.
                if (!$item['event-nofinish']) {
                        $finish = true;
-                       $dtend_dt  = DI::l10n()->getDay(
-                               $item['event-adjust'] ?
-                                       DateTimeFormat::local($item['event-finish'], $dformat)
-                                       : DateTimeFormat::utc($item['event-finish'], $dformat)
-                       );
-                       $dtend_title = DateTimeFormat::utc($item['event-finish'], $item['event-adjust'] ? DateTimeFormat::ATOM : 'Y-m-d\TH:i:s');
-                       $end_short = DI::l10n()->getDayShort(
-                               $item['event-adjust'] ?
-                                       DateTimeFormat::local($item['event-finish'], $dformat_short)
-                                       : DateTimeFormat::utc($item['event-finish'], $dformat_short)
-                       );
-                       $end_time = $item['event-adjust'] ?
-                               DateTimeFormat::local($item['event-finish'], $tformat)
-                               : DateTimeFormat::utc($item['event-finish'], $tformat);
+                       $dtend_dt  = DI::l10n()->getDay(DateTimeFormat::local($item['event-finish'], $dformat));
+                       $dtend_title = DateTimeFormat::utc($item['event-finish'], DateTimeFormat::ATOM);
+                       $end_short = DI::l10n()->getDayShort(DateTimeFormat::utc($item['event-finish'], $dformat_short));
+                       $end_time = DateTimeFormat::local($item['event-finish'], $tformat);
                        // Check if start and finish time is at the same day.
                        if (substr($dtstart_title, 0, 10) === substr($dtend_title, 0, 10)) {
                                $same_date = true;
@@ -920,12 +888,14 @@ class Event
                $location = self::locationToArray($item['event-location']);
 
                // Construct the profile link (magic-auth).
-               $profile_link = Contact::magicLinkById($item['author-id']);
+               $author = ['uid' => 0, 'id' => $item['author-id'],
+                               'network' => $item['author-network'], 'url' => $item['author-link']];
+               $profile_link = Contact::magicLinkByContact($author);
 
                $tpl = Renderer::getMarkupTemplate('event_stream_item.tpl');
                $return = Renderer::replaceMacros($tpl, [
                        '$id'             => $item['event-id'],
-                       '$title'          => BBCode::convert($item['event-summary']),
+                       '$title'          => BBCode::convertForUriId($item['uri-id'], $item['event-summary']),
                        '$dtstart_label'  => DI::l10n()->t('Starts:'),
                        '$dtstart_title'  => $dtstart_title,
                        '$dtstart_dt'     => $dtstart_dt,
@@ -943,7 +913,7 @@ class Event
                        '$author_name'    => $item['author-name'],
                        '$author_link'    => $profile_link,
                        '$author_avatar'  => $item['author-avatar'],
-                       '$description'    => BBCode::convert($item['event-desc']),
+                       '$description'    => BBCode::convertForUriId($item['uri-id'], $item['event-desc']),
                        '$location_label' => DI::l10n()->t('Location:'),
                        '$show_map_label' => DI::l10n()->t('Show map'),
                        '$hide_map_label' => DI::l10n()->t('Hide map'),
@@ -965,10 +935,11 @@ class Event
         * @return array The array with the location data.
         *  'name' => The name of the location,<br>
         * 'address' => The address of the location,<br>
-        * 'coordinates' => Latitude‎ and longitude‎ (e.g. '48.864716,2.349014').<br>
+        * 'coordinates' => Latitude and longitude (e.g. '48.864716,2.349014').<br>
         * @throws \Friendica\Network\HTTPException\InternalServerErrorException
         */
-       private static function locationToArray($s = '') {
+       private static function locationToArray(string $s = ''): array
+       {
                if ($s == '') {
                        return [];
                }
@@ -1013,7 +984,7 @@ class Event
         * @return bool
         * @throws \Exception
         */
-       public static function createBirthday($contact, $birthday)
+       public static function createBirthday(array $contact, string $birthday): bool
        {
                // Check for duplicates
                $condition = [
@@ -1041,11 +1012,9 @@ class Event
                        'summary' => DI::l10n()->t('%s\'s birthday', $contact['name']),
                        'desc'    => DI::l10n()->t('Happy Birthday %s', ' [url=' . $contact['url'] . ']' . $contact['name'] . '[/url]'),
                        'type'    => 'birthday',
-                       'adjust'  => 0
                ];
 
-               self::store($values);
-
-               return true;
+               // Check if self::store() was success
+               return (self::store($values) > 0);
        }
 }