]> git.mxchange.org Git - friendica.git/blobdiff - mod/events.php
Add Temporal::localNow() shorthand for Temporal::convert()
[friendica.git] / mod / events.php
index 4959212ec6f816c579e0e7448b6bebe799537625..028e23e51f3f714376f26fe4e9a8f2262064b0d6 100644 (file)
@@ -5,7 +5,14 @@
  */
 
 use Friendica\App;
+use Friendica\Content\Nav;
+use Friendica\Core\L10n;
 use Friendica\Core\System;
+use Friendica\Core\Worker;
+use Friendica\Database\DBM;
+use Friendica\Model\Item;
+use Friendica\Model\Profile;
+use Friendica\Util\Temporal;
 
 require_once 'include/bbcode.php';
 require_once 'include/datetime.php';
@@ -17,7 +24,7 @@ function events_init(App $a) {
                return;
        }
 
-       if ($a->argc == 1) {
+       if ($a->argc > 1) {
                // If it's a json request abort here because we don't
                // need the widget data
                if ($a->argv[1] === 'json') {
@@ -69,14 +76,14 @@ function events_post(App $a) {
        }
 
        if ($adjust) {
-               $start = datetime_convert(date_default_timezone_get(), 'UTC', $start);
+               $start = Temporal::convert($start, 'UTC', date_default_timezone_get());
                if (! $nofinish) {
-                       $finish = datetime_convert(date_default_timezone_get(), 'UTC', $finish);
+                       $finish = Temporal::convert($finish, 'UTC', date_default_timezone_get());
                }
        } else {
-               $start = datetime_convert('UTC', 'UTC', $start);
+               $start = Temporal::utc($start);
                if (! $nofinish) {
-                       $finish = datetime_convert('UTC', 'UTC', $finish);
+                       $finish = Temporal::utc($finish);
                }
        }
 
@@ -94,18 +101,18 @@ function events_post(App $a) {
        $onerror_url = System::baseUrl() . "/events/" . $action . "?summary=$summary&description=$desc&location=$location&start=$start_text&finish=$finish_text&adjust=$adjust&nofinish=$nofinish";
 
        if (strcmp($finish, $start) < 0 && !$nofinish) {
-               notice(t('Event can not end before it has started.') . EOL);
+               notice(L10n::t('Event can not end before it has started.') . EOL);
                if (intval($_REQUEST['preview'])) {
-                       echo t('Event can not end before it has started.');
+                       echo L10n::t('Event can not end before it has started.');
                        killme();
                }
                goaway($onerror_url);
        }
 
        if ((! $summary) || ($start === NULL_DATE)) {
-               notice(t('Event title and start time are required.') . EOL);
+               notice(L10n::t('Event title and start time are required.') . EOL);
                if (intval($_REQUEST['preview'])) {
-                       echo t('Event title and start time are required.');
+                       echo L10n::t('Event title and start time are required.');
                        killme();
                }
                goaway($onerror_url);
@@ -147,7 +154,7 @@ function events_post(App $a) {
        }
 
 
-       $datarray = array();
+       $datarray = [];
        $datarray['guid']      = get_guid(32);
        $datarray['start']     = $start;
        $datarray['finish']    = $finish;
@@ -177,7 +184,7 @@ function events_post(App $a) {
        $item_id = event_store($datarray);
 
        if (! $cid) {
-               proc_run(PRIORITY_HIGH, "include/notifier.php", "event", $item_id);
+               Worker::add(PRIORITY_HIGH, "Notifier", "event", $item_id);
        }
 
        goaway($_SESSION['return_url']);
@@ -186,7 +193,7 @@ function events_post(App $a) {
 function events_content(App $a) {
 
        if (! local_user()) {
-               notice(t('Permission denied.') . EOL);
+               notice(L10n::t('Permission denied.') . EOL);
                return;
        }
 
@@ -209,31 +216,32 @@ function events_content(App $a) {
        }
 
        if ($a->theme_events_in_profile) {
-               nav_set_selected('home');
+               Nav::setSelected('home');
        } else {
-               nav_set_selected('events');
+               Nav::setSelected('events');
        }
 
        // get the translation strings for the callendar
        $i18n = get_event_strings();
 
        $htpl = get_markup_template('event_head.tpl');
-       $a->page['htmlhead'] .= replace_macros($htpl, array(
+       $a->page['htmlhead'] .= replace_macros($htpl, [
                '$baseurl' => System::baseUrl(),
                '$module_url' => '/events',
                '$modparams' => 1,
                '$i18n' => $i18n,
-       ));
+       ]);
 
        $etpl = get_markup_template('event_end.tpl');
-       $a->page['end'] .= replace_macros($etpl, array(
+       $a->page['end'] .= replace_macros($etpl, [
                '$baseurl' => System::baseUrl(),
-       ));
+       ]);
 
        $o = '';
+       $tabs = '';
        // tabs
        if ($a->theme_events_in_profile) {
-               $tabs = profile_tabs($a, true);
+               $tabs = Profile::getTabs($a, true);
        }
 
        $mode = 'view';
@@ -268,8 +276,8 @@ function events_content(App $a) {
        // The view mode part is similiar to /mod/cal.php
        if ($mode == 'view') {
 
-               $thisyear  = datetime_convert('UTC', date_default_timezone_get(), 'now', 'Y');
-               $thismonth = datetime_convert('UTC', date_default_timezone_get(), 'now', 'm');
+               $thisyear  = Temporal::localNow('Y');
+               $thismonth = Temporal::localNow('m');
                if (! $y) {
                        $y = intval($thisyear);
                }
@@ -306,27 +314,30 @@ function events_content(App $a) {
                $start  = sprintf('%d-%d-%d %d:%d:%d', $y, $m, 1, 0, 0, 0);
                $finish = sprintf('%d-%d-%d %d:%d:%d', $y, $m, $dim, 23, 59, 59);
 
-
-               if ($a->argv[1] === 'json') {
-                       if (x($_GET, 'start')) {$start  = $_GET['start'];}
-                       if (x($_GET, 'end'))   {$finish = $_GET['end'];}
+               if ($a->argc > 1 && $a->argv[1] === 'json') {
+                       if (x($_GET, 'start')) {
+                               $start  = $_GET['start'];
+                       }
+                       if (x($_GET, 'end'))   {
+                               $finish = $_GET['end'];
+                       }
                }
 
-               $start  = datetime_convert('UTC', 'UTC', $start);
-               $finish = datetime_convert('UTC', 'UTC', $finish);
+               $start  = Temporal::utc($start);
+               $finish = Temporal::utc($finish);
 
-               $adjust_start  = datetime_convert('UTC', date_default_timezone_get(), $start);
-               $adjust_finish = datetime_convert('UTC', date_default_timezone_get(), $finish);
+               $adjust_start  = Temporal::convert($start, date_default_timezone_get());
+               $adjust_finish = Temporal::convert($finish, date_default_timezone_get());
 
                // put the event parametes in an array so we can better transmit them
-               $event_params = array(
+               $event_params = [
                        'event_id'      => (x($_GET, 'id') ? $_GET['id'] : 0),
                        'start'         => $start,
                        'finish'        => $finish,
                        'adjust_start'  => $adjust_start,
                        'adjust_finish' => $adjust_finish,
                        'ignored'       => $ignored,
-               );
+               ];
 
                // get events by id or by date
                if (x($_GET, 'id')) {
@@ -335,27 +346,27 @@ function events_content(App $a) {
                        $r = events_by_date(local_user(), $event_params);
                }
 
-               $links = array();
+               $links = [];
 
-               if (dbm::is_result($r)) {
+               if (DBM::is_result($r)) {
                        $r = sort_by_date($r);
                        foreach ($r as $rr) {
-                               $j = (($rr['adjust']) ? datetime_convert('UTC', date_default_timezone_get(), $rr['start'], 'j') : datetime_convert('UTC', 'UTC', $rr['start'], 'j'));
+                               $j = $rr['adjust'] ? Temporal::convert($rr['start'], date_default_timezone_get(), 'UTC', 'j') : Temporal::utc($rr['start'], 'j');
                                if (! x($links,$j)) {
                                        $links[$j] = System::baseUrl() . '/' . $a->cmd . '#link-' . $j;
                                }
                        }
                }
 
-               $events = array();
+               $events = [];
 
                // transform the event in a usable array
-               if (dbm::is_result($r)) {
+               if (DBM::is_result($r)) {
                        $r = sort_by_date($r);
                        $events = process_events($r);
                }
 
-               if ($a->argv[1] === 'json'){
+               if ($a->argc > 1 && $a->argv[1] === 'json'){
                        echo json_encode($events);
                        killme();
                }
@@ -368,7 +379,7 @@ function events_content(App $a) {
 
                // Get rid of dashes in key names, Smarty3 can't handle them
                foreach ($events as $key => $event) {
-                       $event_item = array();
+                       $event_item = [];
                        foreach ($event['item'] as $k => $v) {
                                $k = str_replace('-' ,'_', $k);
                                $event_item[$k] = $v;
@@ -376,24 +387,24 @@ function events_content(App $a) {
                        $events[$key]['item'] = $event_item;
                }
 
-               $o = replace_macros($tpl, array(
+               $o = replace_macros($tpl, [
                        '$baseurl'   => System::baseUrl(),
                        '$tabs'      => $tabs,
-                       '$title'     => t('Events'),
-                       '$view'      => t('View'),
-                       '$new_event' => array(System::baseUrl() . '/events/new', t('Create New Event'), '', ''),
-                       '$previous'  => array(System::baseUrl() . '/events/$prevyear/$prevmonth', t('Previous'), '', ''),
-                       '$next'      => array(System::baseUrl() . '/events/$nextyear/$nextmonth', t('Next'), '', ''),
+                       '$title'     => L10n::t('Events'),
+                       '$view'      => L10n::t('View'),
+                       '$new_event' => [System::baseUrl() . '/events/new', L10n::t('Create New Event'), '', ''],
+                       '$previous'  => [System::baseUrl() . '/events/$prevyear/$prevmonth', L10n::t('Previous'), '', ''],
+                       '$next'      => [System::baseUrl() . '/events/$nextyear/$nextmonth', L10n::t('Next'), '', ''],
                        '$calendar'  => cal($y, $m, $links, ' eventcal'),
 
                        '$events'    => $events,
 
-                       '$today' => t('today'),
-                       '$month' => t('month'),
-                       '$week'  => t('week'),
-                       '$day'   => t('day'),
-                       '$list'  => t('list'),
-               ));
+                       '$today' => L10n::t('today'),
+                       '$month' => L10n::t('month'),
+                       '$week'  => L10n::t('week'),
+                       '$day'   => L10n::t('day'),
+                       '$list'  => L10n::t('list'),
+               ]);
 
                if (x($_GET, 'id')) {
                        echo $o;
@@ -408,14 +419,14 @@ function events_content(App $a) {
                        intval($event_id),
                        intval(local_user())
                );
-               if (dbm::is_result($r)) {
+               if (DBM::is_result($r)) {
                        $orig_event = $r[0];
                }
        }
 
        // Passed parameters overrides anything found in the DB
-       if ($mode === 'edit' || $mode === 'new' || $mode === 'copy') {
-               if (!x($orig_event)) {$orig_event = array();}
+       if (in_array($mode, ['edit', 'new', 'copy'])) {
+               if (!x($orig_event)) {$orig_event = [];}
                // In case of an error the browser is redirected back here, with these parameters filled in with the previous values
                if (x($_REQUEST, 'nofinish'))    {$orig_event['nofinish']    = $_REQUEST['nofinish'];}
                if (x($_REQUEST, 'adjust'))      {$orig_event['adjust']      = $_REQUEST['adjust'];}
@@ -435,17 +446,18 @@ function events_content(App $a) {
                $cid    = ((x($orig_event)) ? $orig_event['cid']      : 0);
                $uri    = ((x($orig_event)) ? $orig_event['uri']      : '');
 
-               if (! x($orig_event)) {
-                       $sh_checked = '';
-               } else {
+               $sh_disabled = '';
+               $sh_checked  = '';
+
+               if (x($orig_event)) {
                        $sh_checked = (($orig_event['allow_cid'] === '<' . local_user() . '>' && (! $orig_event['allow_gid']) && (! $orig_event['deny_cid']) && (! $orig_event['deny_gid'])) ? '' : ' checked="checked" ');
                }
 
-               if ($cid || ($mode !== 'new')) {
-                       $sh_checked .= ' disabled="disabled" ';
+               if ($cid || $mode === 'edit') {
+                       $sh_disabled = 'disabled="disabled"';
                }
 
-               $sdt = ((x($orig_event)) ? $orig_event['start'] : 'now');
+               $sdt = ((x($orig_event)) ? $orig_event['start']  : 'now');
                $fdt = ((x($orig_event)) ? $orig_event['finish'] : 'now');
 
                $tz = date_default_timezone_get();
@@ -453,33 +465,30 @@ function events_content(App $a) {
                        $tz = (($orig_event['adjust']) ? date_default_timezone_get() : 'UTC');
                }
 
-               $syear  = datetime_convert('UTC', $tz, $sdt, 'Y');
-               $smonth = datetime_convert('UTC', $tz, $sdt, 'm');
-               $sday   = datetime_convert('UTC', $tz, $sdt, 'd');
+               $syear  = Temporal::convert($sdt, $tz, 'UTC', 'Y');
+               $smonth = Temporal::convert($sdt, $tz, 'UTC', 'm');
+               $sday   = Temporal::convert($sdt, $tz, 'UTC', 'd');
 
-               $shour   = ((x($orig_event)) ? datetime_convert('UTC', $tz, $sdt, 'H') : 0);
-               $sminute = ((x($orig_event)) ? datetime_convert('UTC', $tz, $sdt, 'i') : 0);
+               $shour   = ((x($orig_event)) ? Temporal::convert($sdt, $tz, 'UTC', 'H') : 0);
+               $sminute = ((x($orig_event)) ? Temporal::convert($sdt, $tz, 'UTC', 'i') : 0);
 
-               $fyear  = datetime_convert('UTC', $tz, $fdt, 'Y');
-               $fmonth = datetime_convert('UTC', $tz, $fdt, 'm');
-               $fday   = datetime_convert('UTC', $tz, $fdt, 'd');
+               $fyear  = Temporal::convert($fdt, $tz, 'UTC', 'Y');
+               $fmonth = Temporal::convert($fdt, $tz, 'UTC', 'm');
+               $fday   = Temporal::convert($fdt, $tz, 'UTC', 'd');
 
-               $fhour   = ((x($orig_event)) ? datetime_convert('UTC', $tz, $fdt, 'H') : 0);
-               $fminute = ((x($orig_event)) ? datetime_convert('UTC', $tz, $fdt, 'i') : 0);
-
-               $f = get_config('system','event_input_format');
-               if (! $f) {
-                       $f = 'ymd';
-               }
+               $fhour   = ((x($orig_event)) ? Temporal::convert($fdt, $tz, 'UTC', 'H') : 0);
+               $fminute = ((x($orig_event)) ? Temporal::convert($fdt, $tz, 'UTC', 'i') : 0);
 
                require_once 'include/acl_selectors.php' ;
 
+               $perms = get_acl_permissions($orig_event);
+
                if ($mode === 'new' || $mode === 'copy') {
                        $acl = (($cid) ? '' : populate_acl(((x($orig_event)) ? $orig_event : $a->user)));
                }
 
                // If we copy an old event, we need to remove the ID and URI
-               // from the orgiginal event.
+               // from the original event.
                if ($mode === 'copy') {
                        $eid = 0;
                        $uri = '';
@@ -487,42 +496,47 @@ function events_content(App $a) {
 
                $tpl = get_markup_template('event_form.tpl');
 
-               $o .= replace_macros($tpl,array(
+               $o .= replace_macros($tpl,[
                        '$post' => System::baseUrl() . '/events',
-                       '$eid' => $eid,
-                       '$cid' => $cid,
-                       '$uri' => $uri,
-
-                       '$title' => t('Event details'),
-                       '$desc' => t('Starting date and Title are required.'),
-                       '$s_text' => t('Event Starts:') . ' <span class="required" title="' . t('Required') . '">*</span>',
-                       '$s_dsel' => datetimesel($f, new DateTime(), DateTime::createFromFormat('Y', $syear+5), DateTime::createFromFormat('Y-m-d H:i', "$syear-$smonth-$sday $shour:$sminute"), t('Event Starts:'), 'start_text', true, true, '', '', true),
-                       '$n_text' => t('Finish date/time is not known or not relevant'),
+                       '$eid'  => $eid,
+                       '$cid'  => $cid,
+                       '$uri'  => $uri,
+
+                       '$allow_cid' => json_encode($perms['allow_cid']),
+                       '$allow_gid' => json_encode($perms['allow_gid']),
+                       '$deny_cid'  => json_encode($perms['deny_cid']),
+                       '$deny_gid'  => json_encode($perms['deny_gid']),
+
+                       '$title' => L10n::t('Event details'),
+                       '$desc' => L10n::t('Starting date and Title are required.'),
+                       '$s_text' => L10n::t('Event Starts:') . ' <span class="required" title="' . L10n::t('Required') . '">*</span>',
+                       '$s_dsel' => datetimesel(new DateTime(), DateTime::createFromFormat('Y', $syear+5), DateTime::createFromFormat('Y-m-d H:i', "$syear-$smonth-$sday $shour:$sminute"), L10n::t('Event Starts:'), 'start_text', true, true, '', '', true),
+                       '$n_text' => L10n::t('Finish date/time is not known or not relevant'),
                        '$n_checked' => $n_checked,
-                       '$f_text' => t('Event Finishes:'),
-                       '$f_dsel' => datetimesel($f, new DateTime(), DateTime::createFromFormat('Y', $fyear+5), DateTime::createFromFormat('Y-m-d H:i', "$fyear-$fmonth-$fday $fhour:$fminute"), t('Event Finishes:'), 'finish_text', true, true, 'start_text'),
-                       '$a_text' => t('Adjust for viewer timezone'),
+                       '$f_text' => L10n::t('Event Finishes:'),
+                       '$f_dsel' => datetimesel(new DateTime(), DateTime::createFromFormat('Y', $fyear+5), DateTime::createFromFormat('Y-m-d H:i', "$fyear-$fmonth-$fday $fhour:$fminute"), L10n::t('Event Finishes:'), 'finish_text', true, true, 'start_text'),
+                       '$a_text' => L10n::t('Adjust for viewer timezone'),
                        '$a_checked' => $a_checked,
-                       '$d_text' => t('Description:'),
+                       '$d_text' => L10n::t('Description:'),
                        '$d_orig' => $d_orig,
-                       '$l_text' => t('Location:'),
+                       '$l_text' => L10n::t('Location:'),
                        '$l_orig' => $l_orig,
-                       '$t_text' => t('Title:') . ' <span class="required" title="' . t('Required') . '">*</span>',
+                       '$t_text' => L10n::t('Title:') . ' <span class="required" title="' . L10n::t('Required') . '">*</span>',
                        '$t_orig' => $t_orig,
-                       '$summary' => array('summary', t('Title:'), $t_orig, '', '*'),
-                       '$sh_text' => t('Share this event'),
-                       '$share' => array('share', t('Share this event'), $sh_checked, ''),
+                       '$summary' => ['summary', L10n::t('Title:'), $t_orig, '', '*'],
+                       '$sh_text' => L10n::t('Share this event'),
+                       '$share' => ['share', L10n::t('Share this event'), $sh_checked, '', $sh_disabled],
                        '$sh_checked' => $sh_checked,
-                       '$nofinish' => array('nofinish', t('Finish date/time is not known or not relevant'), $n_checked),
-                       '$adjust' => array('adjust', t('Adjust for viewer timezone'), $a_checked),
-                       '$preview' => t('Preview'),
+                       '$nofinish' => ['nofinish', L10n::t('Finish date/time is not known or not relevant'), $n_checked],
+                       '$adjust' => ['adjust', L10n::t('Adjust for viewer timezone'), $a_checked],
+                       '$preview' => L10n::t('Preview'),
                        '$acl' => $acl,
-                       '$submit' => t('Submit'),
-                       '$basic' => t('Basic'),
-                       '$advanced' => t('Advanced'),
-                       '$permissions' => t('Permissions'),
+                       '$submit' => L10n::t('Submit'),
+                       '$basic' => L10n::t('Basic'),
+                       '$advanced' => L10n::t('Advanced'),
+                       '$permissions' => L10n::t('Permissions'),
 
-               ));
+               ]);
 
                return $o;
        }
@@ -531,18 +545,18 @@ function events_content(App $a) {
        if ($mode === 'drop' && $event_id) {
                $del = 0;
 
-               $params = array('event_id' => ($event_id));
+               $params = ['event_id' => ($event_id)];
                $ev = event_by_id(local_user(), $params);
 
                // Delete only real events (no birthdays)
-               if (dbm::is_result($ev) && $ev[0]['type'] == 'event') {
-                       $del = drop_item($ev[0]['itemid'], false);
+               if (DBM::is_result($ev) && $ev[0]['type'] == 'event') {
+                       $del = Item::delete($ev[0]['itemid']);
                }
 
                if ($del == 0) {
-                       notice(t('Failed to remove event' ) . EOL);
+                       notice(L10n::t('Failed to remove event') . EOL);
                } else {
-                       info(t('Event removed') . EOL);
+                       info(L10n::t('Event removed') . EOL);
                }
 
                goaway(System::baseUrl() . '/events');