]> git.mxchange.org Git - friendica.git/blobdiff - src/Model/Event.php
Update the Introductions domain to use repository, model and collection
[friendica.git] / src / Model / Event.php
index 8b7c7e706c15deebd3522d9df8a43ef4478d72f2..ec39cc7133d6efcdf1a555d87f71e7ba27f4a682 100644 (file)
@@ -5,7 +5,6 @@
 
 namespace Friendica\Model;
 
-use Friendica\BaseObject;
 use Friendica\Content\Text\BBCode;
 use Friendica\Core\Hook;
 use Friendica\Core\L10n;
@@ -14,6 +13,8 @@ use Friendica\Core\PConfig;
 use Friendica\Core\Renderer;
 use Friendica\Core\System;
 use Friendica\Database\DBA;
+use Friendica\DI;
+use Friendica\Protocol\Activity;
 use Friendica\Util\DateTimeFormat;
 use Friendica\Util\Map;
 use Friendica\Util\Strings;
@@ -22,7 +23,7 @@ use Friendica\Util\XML;
 /**
  * @brief functions for interacting with the event database table
  */
-class Event extends BaseObject
+class Event
 {
 
        public static function getHTML(array $event, $simple = false)
@@ -48,8 +49,10 @@ class Event extends BaseObject
                }
 
                if ($simple) {
+                       $o = '';
+
                        if (!empty($event['summary'])) {
-                               $o = "<h3>" . BBCode::convert(Strings::escapeHtml($event['summary']), false, $simple) . "</h3>";
+                               $o .= "<h3>" . BBCode::convert(Strings::escapeHtml($event['summary']), false, $simple) . "</h3>";
                        }
 
                        if (!empty($event['desc'])) {
@@ -224,7 +227,7 @@ class Event extends BaseObject
                        return;
                }
 
-               DBA::delete('event', ['id' => $event_id]);
+               DBA::delete('event', ['id' => $event_id], ['cascade' => false]);
                Logger::log("Deleted event ".$event_id, Logger::DEBUG);
        }
 
@@ -239,32 +242,31 @@ class Event extends BaseObject
         */
        public static function store($arr)
        {
-               $a = self::getApp();
-
                $event = [];
-               $event['id']        = intval(defaults($arr, 'id'       , 0));
-               $event['uid']       = intval(defaults($arr, 'uid'      , 0));
-               $event['cid']       = intval(defaults($arr, 'cid'      , 0));
-               $event['uri']       =        defaults($arr, 'uri'      , Item::newURI($event['uid']));
-               $event['type']      =        defaults($arr, 'type'     , 'event');
-               $event['summary']   =        defaults($arr, 'summary'  , '');
-               $event['desc']      =        defaults($arr, 'desc'     , '');
-               $event['location']  =        defaults($arr, 'location' , '');
-               $event['allow_cid'] =        defaults($arr, 'allow_cid', '');
-               $event['allow_gid'] =        defaults($arr, 'allow_gid', '');
-               $event['deny_cid']  =        defaults($arr, 'deny_cid' , '');
-               $event['deny_gid']  =        defaults($arr, 'deny_gid' , '');
-               $event['adjust']    = intval(defaults($arr, 'adjust'   , 0));
-               $event['nofinish']  = intval(defaults($arr, 'nofinish' , !empty($event['start']) && empty($event['finish'])));
-
-               $event['created']   = DateTimeFormat::utc(defaults($arr, 'created'  , 'now'));
-               $event['edited']    = DateTimeFormat::utc(defaults($arr, 'edited'   , 'now'));
-               $event['start']     = DateTimeFormat::utc(defaults($arr, 'start'    , DBA::NULL_DATETIME));
-               $event['finish']    = DateTimeFormat::utc(defaults($arr, 'finish'   , DBA::NULL_DATETIME));
+               $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);
                if ($event['finish'] < DBA::NULL_DATETIME) {
                        $event['finish'] = DBA::NULL_DATETIME;
                }
-               $private = intval(defaults($arr, 'private', 0));
+               $private = intval($arr['private'] ?? 0);
 
                $conditions = ['uid' => $event['uid']];
                if ($event['cid']) {
@@ -302,7 +304,7 @@ class Event extends BaseObject
 
                        $item = Item::selectFirst(['id'], ['event-id' => $event['id'], 'uid' => $event['uid']]);
                        if (DBA::isResult($item)) {
-                               $object = '<object><type>' . XML::escape(ACTIVITY_OBJ_EVENT) . '</type><title></title><id>' . XML::escape($event['uri']) . '</id>';
+                               $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>';
                                $object .= '</object>' . "\n";
 
@@ -316,8 +318,6 @@ class Event extends BaseObject
 
                        Hook::callAll('event_updated', $event['id']);
                } else {
-                       $event['guid']  = defaults($arr, 'guid', System::createUUID());
-
                        // New event. Store it.
                        DBA::insert('event', $event);
 
@@ -334,7 +334,7 @@ class Event extends BaseObject
                                $item_arr['uri']           = $event['uri'];
                                $item_arr['parent-uri']    = $event['uri'];
                                $item_arr['guid']          = $event['guid'];
-                               $item_arr['plink']         = defaults($arr, 'plink', '');
+                               $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'];
@@ -351,13 +351,13 @@ class Event extends BaseObject
                                $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_OBJ_EVENT;
+                               $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['object']  = '<object><type>' . XML::escape(ACTIVITY_OBJ_EVENT) . '</type><title></title><id>' . XML::escape($event['uri']) . '</id>';
+                               $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";
 
@@ -418,7 +418,6 @@ class Event extends BaseObject
                        "February"  => L10n::t("February"),
                        "March"     => L10n::t("March"),
                        "April"     => L10n::t("April"),
-                       "May"       => L10n::t("May"),
                        "June"      => L10n::t("June"),
                        "July"      => L10n::t("July"),
                        "August"    => L10n::t("August"),
@@ -591,9 +590,9 @@ class Event extends BaseObject
                        $copy = null;
                        $drop = null;
                        if (local_user() && local_user() == $event['uid'] && $event['type'] == 'event') {
-                               $edit = !$event['cid'] ? [System::baseUrl() . '/events/event/' . $event['id'], L10n::t('Edit event')     , '', ''] : null;
-                               $copy = !$event['cid'] ? [System::baseUrl() . '/events/copy/' . $event['id'] , L10n::t('Duplicate event'), '', ''] : null;
-                               $drop =                  [System::baseUrl() . '/events/drop/' . $event['id'] , L10n::t('Delete event')   , '', ''];
+                               $edit = !$event['cid'] ? [DI::baseUrl() . '/events/event/' . $event['id'], L10n::t('Edit event')     , '', ''] : null;
+                               $copy = !$event['cid'] ? [DI::baseUrl() . '/events/copy/' . $event['id'] , L10n::t('Duplicate event'), '', ''] : null;
+                               $drop =                  [DI::baseUrl() . '/events/drop/' . $event['id'] , L10n::t('Delete event')   , '', ''];
                        }
 
                        $title = BBCode::convert(Strings::escapeHtml($event['summary']));
@@ -643,17 +642,19 @@ class Event extends BaseObject
         *
         * @todo  Implement timezone support
         */
-       private static function formatListForExport(array $events, $format, $timezone)
+       private static function formatListForExport(array $events, $format)
        {
+               $o = '';
+
                if (!count($events)) {
-                       return '';
+                       return $o;
                }
 
                switch ($format) {
                        // Format the exported data as a CSV file.
                        case "csv":
                                header("Content-type: text/csv");
-                               $o = '"Subject", "Start Date", "Start Time", "Description", "End Date", "End Time", "Location"' . PHP_EOL;
+                               $o .= '"Subject", "Start Date", "Start Time", "Description", "End Date", "End Time", "Location"' . PHP_EOL;
 
                                foreach ($events as $event) {
                                        /// @todo The time / date entries don't include any information about the
@@ -795,19 +796,14 @@ class Event extends BaseObject
        {
                $process = false;
 
-               $user = DBA::selectFirst('user', ['timezone'], ['uid' => $uid]);
-               if (DBA::isResult($user)) {
-                       $timezone = $user['timezone'];
-               }
-
                // Get all events which are owned by a uid (respects permissions).
                $events = self::getListByUserId($uid);
 
                // We have the events that are available for the requestor.
                // Now format the output according to the requested format.
-               $res = self::formatListForExport($events, $format, $timezone);
+               $res = self::formatListForExport($events, $format);
 
-               // If there are results the precess was successfull.
+               // If there are results the precess was successful.
                if (!empty($res)) {
                        $process = true;
                }
@@ -916,7 +912,7 @@ class Event extends BaseObject
                $tpl = Renderer::getMarkupTemplate('event_stream_item.tpl');
                $return = Renderer::replaceMacros($tpl, [
                        '$id'             => $item['event-id'],
-                       '$title'          => prepare_text($item['event-summary']),
+                       '$title'          => BBCode::convert($item['event-summary']),
                        '$dtstart_label'  => L10n::t('Starts:'),
                        '$dtstart_title'  => $dtstart_title,
                        '$dtstart_dt'     => $dtstart_dt,
@@ -934,7 +930,7 @@ class Event extends BaseObject
                        '$author_name'    => $item['author-name'],
                        '$author_link'    => $profile_link,
                        '$author_avatar'  => $item['author-avatar'],
-                       '$description'    => prepare_text($item['event-desc']),
+                       '$description'    => BBCode::convert($item['event-desc']),
                        '$location_label' => L10n::t('Location:'),
                        '$show_map_label' => L10n::t('Show map'),
                        '$hide_map_label' => L10n::t('Hide map'),
@@ -984,7 +980,7 @@ class Event extends BaseObject
                        }
                }
 
-               $location['name'] = prepare_text($location['name']);
+               $location['name'] = BBCode::convert($location['name']);
 
                // Construct the map HTML.
                if (isset($location['address'])) {