4 * @brief The events module
8 use Friendica\Content\Nav;
9 use Friendica\Core\ACL;
10 use Friendica\Core\L10n;
11 use Friendica\Core\System;
12 use Friendica\Core\Worker;
13 use Friendica\Database\DBM;
14 use Friendica\Model\Item;
15 use Friendica\Model\Profile;
16 use Friendica\Util\DateTimeFormat;
17 use Friendica\Util\Temporal;
19 require_once 'include/event.php';
20 require_once 'include/items.php';
22 function events_init(App $a) {
28 // If it's a json request abort here because we don't
29 // need the widget data
30 if ($a->argv[1] === 'json') {
34 $cal_widget = widget_events();
36 if (! x($a->page,'aside')) {
37 $a->page['aside'] = '';
40 $a->page['aside'] .= $cal_widget;
46 function events_post(App $a) {
48 logger('post: ' . print_r($_REQUEST, true), LOGGER_DATA);
54 $event_id = ((x($_POST, 'event_id')) ? intval($_POST['event_id']) : 0);
55 $cid = ((x($_POST, 'cid')) ? intval($_POST['cid']) : 0);
58 $start_text = escape_tags($_REQUEST['start_text']);
59 $finish_text = escape_tags($_REQUEST['finish_text']);
61 $adjust = intval($_POST['adjust']);
62 $nofinish = intval($_POST['nofinish']);
64 // The default setting for the `private` field in event_store() is false, so mirror that
65 $private_event = false;
75 $finish = $finish_text;
79 $start = DateTimeFormat::convert($start, 'UTC', date_default_timezone_get());
81 $finish = DateTimeFormat::convert($finish, 'UTC', date_default_timezone_get());
84 $start = DateTimeFormat::utc($start);
86 $finish = DateTimeFormat::utc($finish);
90 // Don't allow the event to finish before it begins.
91 // It won't hurt anything, but somebody will file a bug report
92 // and we'll waste a bunch of time responding to it. Time that
93 // could've been spent doing something else.
95 $summary = escape_tags(trim($_POST['summary']));
96 $desc = escape_tags(trim($_POST['desc']));
97 $location = escape_tags(trim($_POST['location']));
100 $action = ($event_id == '') ? 'new' : "event/" . $event_id;
101 $onerror_url = System::baseUrl() . "/events/" . $action . "?summary=$summary&description=$desc&location=$location&start=$start_text&finish=$finish_text&adjust=$adjust&nofinish=$nofinish";
103 if (strcmp($finish, $start) < 0 && !$nofinish) {
104 notice(L10n::t('Event can not end before it has started.') . EOL);
105 if (intval($_REQUEST['preview'])) {
106 echo L10n::t('Event can not end before it has started.');
109 goaway($onerror_url);
112 if ((! $summary) || ($start === NULL_DATE)) {
113 notice(L10n::t('Event title and start time are required.') . EOL);
114 if (intval($_REQUEST['preview'])) {
115 echo L10n::t('Event title and start time are required.');
118 goaway($onerror_url);
121 $share = ((intval($_POST['share'])) ? intval($_POST['share']) : 0);
123 $c = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND `self` LIMIT 1",
134 $str_group_allow = perms2str($_POST['group_allow']);
135 $str_contact_allow = perms2str($_POST['contact_allow']);
136 $str_group_deny = perms2str($_POST['group_deny']);
137 $str_contact_deny = perms2str($_POST['contact_deny']);
139 // Undo the pseudo-contact of self, since there are real contacts now
140 if (strpos($str_contact_allow, '<' . $self . '>') !== false ) {
141 $str_contact_allow = str_replace('<' . $self . '>', '', $str_contact_allow);
143 // Make sure to set the `private` field as true. This is necessary to
144 // have the posts show up correctly in Diaspora if an event is created
145 // as visible only to self at first, but then edited to display to others.
146 if (strlen($str_group_allow) || strlen($str_contact_allow) || strlen($str_group_deny) || strlen($str_contact_deny)) {
147 $private_event = true;
150 // Note: do not set `private` field for self-only events. It will
151 // keep even you from seeing them!
152 $str_contact_allow = '<' . $self . '>';
153 $str_group_allow = $str_contact_deny = $str_group_deny = '';
158 $datarray['guid'] = get_guid(32);
159 $datarray['start'] = $start;
160 $datarray['finish'] = $finish;
161 $datarray['summary'] = $summary;
162 $datarray['desc'] = $desc;
163 $datarray['location'] = $location;
164 $datarray['type'] = $type;
165 $datarray['adjust'] = $adjust;
166 $datarray['nofinish'] = $nofinish;
167 $datarray['uid'] = $uid;
168 $datarray['cid'] = $cid;
169 $datarray['allow_cid'] = $str_contact_allow;
170 $datarray['allow_gid'] = $str_group_allow;
171 $datarray['deny_cid'] = $str_contact_deny;
172 $datarray['deny_gid'] = $str_group_deny;
173 $datarray['private'] = (($private_event) ? 1 : 0);
174 $datarray['id'] = $event_id;
175 $datarray['created'] = $created;
176 $datarray['edited'] = $edited;
178 if (intval($_REQUEST['preview'])) {
179 $html = format_event_html($datarray);
184 $item_id = event_store($datarray);
187 Worker::add(PRIORITY_HIGH, "Notifier", "event", $item_id);
190 goaway($_SESSION['return_url']);
193 function events_content(App $a) {
195 if (! local_user()) {
196 notice(L10n::t('Permission denied.') . EOL);
201 $_SESSION['return_url'] = System::baseUrl() . '/' . $a->cmd;
204 if (($a->argc > 2) && ($a->argv[1] === 'ignore') && intval($a->argv[2])) {
205 $r = q("UPDATE `event` SET `ignore` = 1 WHERE `id` = %d AND `uid` = %d",
211 if (($a->argc > 2) && ($a->argv[1] === 'unignore') && intval($a->argv[2])) {
212 $r = q("UPDATE `event` SET `ignore` = 0 WHERE `id` = %d AND `uid` = %d",
218 if ($a->theme_events_in_profile) {
219 Nav::setSelected('home');
221 Nav::setSelected('events');
224 // get the translation strings for the callendar
225 $i18n = get_event_strings();
227 $htpl = get_markup_template('event_head.tpl');
228 $a->page['htmlhead'] .= replace_macros($htpl, [
229 '$baseurl' => System::baseUrl(),
230 '$module_url' => '/events',
235 $etpl = get_markup_template('event_end.tpl');
236 $a->page['end'] .= replace_macros($etpl, [
237 '$baseurl' => System::baseUrl(),
243 if ($a->theme_events_in_profile) {
244 $tabs = Profile::getTabs($a, true);
250 $ignored = ((x($_REQUEST, 'ignored')) ? intval($_REQUEST['ignored']) : 0);
253 if ($a->argc > 2 && $a->argv[1] == 'event') {
255 $event_id = intval($a->argv[2]);
257 if ($a->argc > 2 && $a->argv[1] == 'drop') {
259 $event_id = intval($a->argv[2]);
261 if ($a->argc > 2 && $a->argv[1] == 'copy') {
263 $event_id = intval($a->argv[2]);
265 if ($a->argv[1] === 'new') {
269 if ($a->argc > 2 && intval($a->argv[1]) && intval($a->argv[2])) {
271 $y = intval($a->argv[1]);
272 $m = intval($a->argv[2]);
276 // The view mode part is similiar to /mod/cal.php
277 if ($mode == 'view') {
279 $thisyear = DateTimeFormat::localNow('Y');
280 $thismonth = DateTimeFormat::localNow('m');
282 $y = intval($thisyear);
285 $m = intval($thismonth);
288 // Put some limits on dates. The PHP date functions don't seem to do so well before 1900.
289 // An upper limit was chosen to keep search engines from exploring links millions of years in the future.
300 if ($nextmonth > 12) {
313 $dim = Temporal::getDaysInMonth($y, $m);
314 $start = sprintf('%d-%d-%d %d:%d:%d', $y, $m, 1, 0, 0, 0);
315 $finish = sprintf('%d-%d-%d %d:%d:%d', $y, $m, $dim, 23, 59, 59);
317 if ($a->argc > 1 && $a->argv[1] === 'json') {
318 if (x($_GET, 'start')) {
319 $start = $_GET['start'];
321 if (x($_GET, 'end')) {
322 $finish = $_GET['end'];
326 $start = DateTimeFormat::utc($start);
327 $finish = DateTimeFormat::utc($finish);
329 $adjust_start = DateTimeFormat::local($start);
330 $adjust_finish = DateTimeFormat::local($finish);
332 // put the event parametes in an array so we can better transmit them
334 'event_id' => (x($_GET, 'id') ? $_GET['id'] : 0),
337 'adjust_start' => $adjust_start,
338 'adjust_finish' => $adjust_finish,
339 'ignored' => $ignored,
342 // get events by id or by date
343 if (x($_GET, 'id')) {
344 $r = event_by_id(local_user(), $event_params);
346 $r = events_by_date(local_user(), $event_params);
351 if (DBM::is_result($r)) {
352 $r = sort_by_date($r);
353 foreach ($r as $rr) {
354 $j = $rr['adjust'] ? DateTimeFormat::local($rr['start'], 'j') : DateTimeFormat::utc($rr['start'], 'j');
355 if (! x($links,$j)) {
356 $links[$j] = System::baseUrl() . '/' . $a->cmd . '#link-' . $j;
363 // transform the event in a usable array
364 if (DBM::is_result($r)) {
365 $r = sort_by_date($r);
366 $events = process_events($r);
369 if ($a->argc > 1 && $a->argv[1] === 'json'){
370 echo json_encode($events);
374 if (x($_GET, 'id')) {
375 $tpl = get_markup_template("event.tpl");
377 $tpl = get_markup_template("events_js.tpl");
380 // Get rid of dashes in key names, Smarty3 can't handle them
381 foreach ($events as $key => $event) {
383 foreach ($event['item'] as $k => $v) {
384 $k = str_replace('-' ,'_', $k);
385 $event_item[$k] = $v;
387 $events[$key]['item'] = $event_item;
390 $o = replace_macros($tpl, [
391 '$baseurl' => System::baseUrl(),
393 '$title' => L10n::t('Events'),
394 '$view' => L10n::t('View'),
395 '$new_event' => [System::baseUrl() . '/events/new', L10n::t('Create New Event'), '', ''],
396 '$previous' => [System::baseUrl() . '/events/$prevyear/$prevmonth', L10n::t('Previous'), '', ''],
397 '$next' => [System::baseUrl() . '/events/$nextyear/$nextmonth', L10n::t('Next'), '', ''],
398 '$calendar' => Temporal::getCalendarTable($y, $m, $links, ' eventcal'),
400 '$events' => $events,
402 '$today' => L10n::t('today'),
403 '$month' => L10n::t('month'),
404 '$week' => L10n::t('week'),
405 '$day' => L10n::t('day'),
406 '$list' => L10n::t('list'),
409 if (x($_GET, 'id')) {
417 if (($mode === 'edit' || $mode === 'copy') && $event_id) {
418 $r = q("SELECT * FROM `event` WHERE `id` = %d AND `uid` = %d LIMIT 1",
422 if (DBM::is_result($r)) {
427 // Passed parameters overrides anything found in the DB
428 if (in_array($mode, ['edit', 'new', 'copy'])) {
429 if (!x($orig_event)) {$orig_event = [];}
430 // In case of an error the browser is redirected back here, with these parameters filled in with the previous values
431 if (x($_REQUEST, 'nofinish')) {$orig_event['nofinish'] = $_REQUEST['nofinish'];}
432 if (x($_REQUEST, 'adjust')) {$orig_event['adjust'] = $_REQUEST['adjust'];}
433 if (x($_REQUEST, 'summary')) {$orig_event['summary'] = $_REQUEST['summary'];}
434 if (x($_REQUEST, 'description')) {$orig_event['description'] = $_REQUEST['description'];}
435 if (x($_REQUEST, 'location')) {$orig_event['location'] = $_REQUEST['location'];}
436 if (x($_REQUEST, 'start')) {$orig_event['start'] = $_REQUEST['start'];}
437 if (x($_REQUEST, 'finish')) {$orig_event['finish'] = $_REQUEST['finish'];}
439 $n_checked = ((x($orig_event) && $orig_event['nofinish']) ? ' checked="checked" ' : '');
440 $a_checked = ((x($orig_event) && $orig_event['adjust']) ? ' checked="checked" ' : '');
442 $t_orig = ((x($orig_event)) ? $orig_event['summary'] : '');
443 $d_orig = ((x($orig_event)) ? $orig_event['desc'] : '');
444 $l_orig = ((x($orig_event)) ? $orig_event['location'] : '');
445 $eid = ((x($orig_event)) ? $orig_event['id'] : 0);
446 $cid = ((x($orig_event)) ? $orig_event['cid'] : 0);
447 $uri = ((x($orig_event)) ? $orig_event['uri'] : '');
452 if (x($orig_event)) {
453 $sh_checked = (($orig_event['allow_cid'] === '<' . local_user() . '>' && (! $orig_event['allow_gid']) && (! $orig_event['deny_cid']) && (! $orig_event['deny_gid'])) ? '' : ' checked="checked" ');
456 if ($cid || $mode === 'edit') {
457 $sh_disabled = 'disabled="disabled"';
460 $sdt = ((x($orig_event)) ? $orig_event['start'] : 'now');
461 $fdt = ((x($orig_event)) ? $orig_event['finish'] : 'now');
463 $tz = date_default_timezone_get();
464 if (x($orig_event)) {
465 $tz = (($orig_event['adjust']) ? date_default_timezone_get() : 'UTC');
468 $syear = DateTimeFormat::convert($sdt, $tz, 'UTC', 'Y');
469 $smonth = DateTimeFormat::convert($sdt, $tz, 'UTC', 'm');
470 $sday = DateTimeFormat::convert($sdt, $tz, 'UTC', 'd');
472 $shour = ((x($orig_event)) ? DateTimeFormat::convert($sdt, $tz, 'UTC', 'H') : '00');
473 $sminute = ((x($orig_event)) ? DateTimeFormat::convert($sdt, $tz, 'UTC', 'i') : '00');
475 $fyear = DateTimeFormat::convert($fdt, $tz, 'UTC', 'Y');
476 $fmonth = DateTimeFormat::convert($fdt, $tz, 'UTC', 'm');
477 $fday = DateTimeFormat::convert($fdt, $tz, 'UTC', 'd');
479 $fhour = ((x($orig_event)) ? DateTimeFormat::convert($fdt, $tz, 'UTC', 'H') : '00');
480 $fminute = ((x($orig_event)) ? DateTimeFormat::convert($fdt, $tz, 'UTC', 'i') : '00');
482 $perms = ACL::getDefaultUserPermissions($orig_event);
484 if ($mode === 'new' || $mode === 'copy') {
485 $acl = (($cid) ? '' : ACL::getFullSelectorHTML(((x($orig_event)) ? $orig_event : $a->user)));
488 // If we copy an old event, we need to remove the ID and URI
489 // from the original event.
490 if ($mode === 'copy') {
495 $tpl = get_markup_template('event_form.tpl');
497 $o .= replace_macros($tpl,[
498 '$post' => System::baseUrl() . '/events',
503 '$allow_cid' => json_encode($perms['allow_cid']),
504 '$allow_gid' => json_encode($perms['allow_gid']),
505 '$deny_cid' => json_encode($perms['deny_cid']),
506 '$deny_gid' => json_encode($perms['deny_gid']),
508 '$title' => L10n::t('Event details'),
509 '$desc' => L10n::t('Starting date and Title are required.'),
510 '$s_text' => L10n::t('Event Starts:') . ' <span class="required" title="' . L10n::t('Required') . '">*</span>',
511 '$s_dsel' => Temporal::getDateTimeField(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),
512 '$n_text' => L10n::t('Finish date/time is not known or not relevant'),
513 '$n_checked' => $n_checked,
514 '$f_text' => L10n::t('Event Finishes:'),
515 '$f_dsel' => Temporal::getDateTimeField(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'),
516 '$a_text' => L10n::t('Adjust for viewer timezone'),
517 '$a_checked' => $a_checked,
518 '$d_text' => L10n::t('Description:'),
519 '$d_orig' => $d_orig,
520 '$l_text' => L10n::t('Location:'),
521 '$l_orig' => $l_orig,
522 '$t_text' => L10n::t('Title:') . ' <span class="required" title="' . L10n::t('Required') . '">*</span>',
523 '$t_orig' => $t_orig,
524 '$summary' => ['summary', L10n::t('Title:'), $t_orig, '', '*'],
525 '$sh_text' => L10n::t('Share this event'),
526 '$share' => ['share', L10n::t('Share this event'), $sh_checked, '', $sh_disabled],
527 '$sh_checked' => $sh_checked,
528 '$nofinish' => ['nofinish', L10n::t('Finish date/time is not known or not relevant'), $n_checked],
529 '$adjust' => ['adjust', L10n::t('Adjust for viewer timezone'), $a_checked],
530 '$preview' => L10n::t('Preview'),
532 '$submit' => L10n::t('Submit'),
533 '$basic' => L10n::t('Basic'),
534 '$advanced' => L10n::t('Advanced'),
535 '$permissions' => L10n::t('Permissions'),
542 // Remove an event from the calendar and its related items
543 if ($mode === 'drop' && $event_id) {
546 $params = ['event_id' => ($event_id)];
547 $ev = event_by_id(local_user(), $params);
549 // Delete only real events (no birthdays)
550 if (DBM::is_result($ev) && $ev[0]['type'] == 'event') {
551 $del = Item::deleteById($ev[0]['itemid']);
555 notice(L10n::t('Failed to remove event') . EOL);
557 info(L10n::t('Event removed') . EOL);
560 goaway(System::baseUrl() . '/events');