friendica/mod/events.php

347 lines
11 KiB
PHP
Raw Normal View History

2011-06-06 08:10:07 +02:00
<?php
require_once('include/datetime.php');
require_once('include/event.php');
2011-06-10 06:23:45 +02:00
require_once('include/items.php');
2011-06-06 08:10:07 +02:00
function events_post(&$a) {
if(! local_user())
return;
$event_id = ((x($_POST,'event_id')) ? intval($_POST['event_id']) : 0);
2011-06-15 04:48:37 +02:00
$cid = ((x($_POST,'cid')) ? intval($_POST['cid']) : 0);
2011-06-06 08:10:07 +02:00
$uid = local_user();
2011-06-07 07:27:38 +02:00
$startyear = intval($_POST['startyear']);
$startmonth = intval($_POST['startmonth']);
$startday = intval($_POST['startday']);
$starthour = intval($_POST['starthour']);
$startminute = intval($_POST['startminute']);
$finishyear = intval($_POST['finishyear']);
$finishmonth = intval($_POST['finishmonth']);
$finishday = intval($_POST['finishday']);
$finishhour = intval($_POST['finishhour']);
$finishminute = intval($_POST['finishminute']);
$adjust = intval($_POST['adjust']);
2011-06-08 05:10:43 +02:00
$nofinish = intval($_POST['nofinish']);
2011-06-07 07:27:38 +02:00
$start = sprintf('%d-%d-%d %d:%d:0',$startyear,$startmonth,$startday,$starthour,$startminute);
2011-06-08 05:10:43 +02:00
if($nofinish)
$finish = '0000-00-00 00:00:00';
else
$finish = sprintf('%d-%d-%d %d:%d:0',$finishyear,$finishmonth,$finishday,$finishhour,$finishminute);
2011-06-07 07:27:38 +02:00
if($adjust) {
$start = datetime_convert(date_default_timezone_get(),'UTC',$start);
2011-06-08 05:10:43 +02:00
if(! $nofinish)
$finish = datetime_convert(date_default_timezone_get(),'UTC',$finish);
2011-06-07 07:27:38 +02:00
}
else {
$start = datetime_convert('UTC','UTC',$start);
2011-06-08 05:10:43 +02:00
if(! $nofinish)
$finish = datetime_convert('UTC','UTC',$finish);
2011-06-07 07:27:38 +02:00
}
// Don't allow the event to finish before it begins.
// It won't hurt anything, but somebody will file a bug report
// and we'll waste a bunch of time responding to it. Time that
// could've been spent doing something else.
if(strcmp($finish,$start) < 0)
$finish = $start;
2011-06-07 07:27:38 +02:00
2011-06-10 06:23:45 +02:00
$desc = escape_tags(trim($_POST['desc']));
$location = escape_tags(trim($_POST['location']));
2011-06-06 08:10:07 +02:00
$type = 'event';
2011-06-10 06:23:45 +02:00
if((! $desc) || (! $start)) {
notice( t('Event description and start time are required.') . EOL);
2011-06-10 06:23:45 +02:00
goaway($a->get_baseurl() . '/events/new');
}
2011-06-06 08:10:07 +02:00
2011-06-10 06:23:45 +02:00
$share = ((intval($_POST['share'])) ? intval($_POST['share']) : 0);
2011-06-08 05:10:43 +02:00
2011-06-10 06:23:45 +02:00
if($share) {
$str_group_allow = perms2str($_POST['group_allow']);
$str_contact_allow = perms2str($_POST['contact_allow']);
$str_group_deny = perms2str($_POST['group_deny']);
$str_contact_deny = perms2str($_POST['contact_deny']);
}
else {
$str_contact_allow = '<' . local_user() . '>';
$str_group_allow = $str_contact_deny = $str_group_deny = '';
}
2011-06-06 08:10:07 +02:00
2011-06-14 04:06:49 +02:00
$datarray = array();
$datarray['start'] = $start;
$datarray['finish'] = $finish;
$datarray['desc'] = $desc;
$datarray['location'] = $location;
$datarray['type'] = $type;
$datarray['adjust'] = $adjust;
$datarray['nofinish'] = $nofinish;
$datarray['uid'] = $uid;
2011-06-15 04:48:37 +02:00
$datarray['cid'] = $cid;
2011-06-14 04:06:49 +02:00
$datarray['allow_cid'] = $str_contact_allow;
$datarray['allow_gid'] = $str_group_allow;
$datarray['deny_cid'] = $str_contact_deny;
$datarray['deny_gid'] = $str_group_deny;
$datarray['id'] = $event_id;
$datarray['created'] = $created;
$datarray['edited'] = $edited;
$item_id = event_store($datarray);
2011-06-15 04:48:37 +02:00
if(! $cid)
proc_run('php',"include/notifier.php","event","$item_id");
2011-06-06 08:10:07 +02:00
}
2011-06-07 04:59:20 +02:00
function events_content(&$a) {
if(! local_user()) {
notice( t('Permission denied.') . EOL);
return;
}
$o ="";
// tabs
$tpl = get_markup_template('profile_tabs.tpl');
$o .= replace_macros($tpl,array(
'$url' => $a->get_baseurl() . '/profile/' . $a->user['nickname'],
'$phototab' => $a->get_baseurl() . '/photos/' . $a->user['nickname'],
'$status' => t('Status'),
'$profile' => t('Profile'),
'$photos' => t('Photos'),
'$events' => t('Events') ,
'$notes' => t('Personal Notes'),
'$activetab' => "events",
));
2011-06-07 05:17:36 +02:00
$o .= '<h2>' . t('Events') . '</h2>';
2011-06-07 04:59:20 +02:00
$mode = 'view';
$y = 0;
$m = 0;
if($a->argc > 1) {
if($a->argc > 2 && $a->argv[1] == 'event') {
$mode = 'edit';
$event_id = intval($a->argv[2]);
}
if($a->argv[1] === 'new') {
$mode = 'new';
$event_id = 0;
}
if($a->argc > 2 && intval($a->argv[1]) && intval($a->argv[2])) {
$mode = 'view';
$y = intval($a->argv[1]);
$m = intval($a->argv[2]);
}
}
if($mode == 'view') {
$thisyear = datetime_convert('UTC',date_default_timezone_get(),'now','Y');
$thismonth = datetime_convert('UTC',date_default_timezone_get(),'now','m');
if(! $y)
$y = intval($thisyear);
if(! $m)
$m = intval($thismonth);
// Put some limits on dates. The PHP date functions don't seem to do so well before 1900.
2011-06-15 04:48:37 +02:00
// An upper limit was chosen to keep search engines from exploring links millions of years in the future.
if($y < 1901)
$y = 1900;
if($y > 2099)
$y = 2100;
2011-06-07 06:28:11 +02:00
$nextyear = $y;
$nextmonth = $m + 1;
if($nextmonth > 12) {
$nextmonth = 1;
$nextyear ++;
}
$prevyear = $y;
if($m > 1)
$prevmonth = $m - 1;
else {
$prevmonth = 12;
$prevyear --;
}
2011-06-07 06:28:11 +02:00
2011-06-08 05:10:43 +02:00
$dim = get_dim($y,$m);
$start = sprintf('%d-%d-%d %d:%d:%d',$y,$m,1,0,0,0);
2011-06-07 05:17:36 +02:00
$finish = sprintf('%d-%d-%d %d:%d:%d',$y,$m,$dim,23,59,59);
2011-06-08 05:10:43 +02:00
$start = datetime_convert('UTC','UTC',$start);
$finish = datetime_convert('UTC','UTC',$finish);
2011-06-07 05:17:36 +02:00
2011-06-08 05:10:43 +02:00
$adjust_start = datetime_convert('UTC', date_default_timezone_get(), $start);
$adjust_finish = datetime_convert('UTC', date_default_timezone_get(), $finish);
2011-06-17 08:17:25 +02:00
2011-06-08 05:10:43 +02:00
$r = q("SELECT `event`.*, `item`.`id` AS `itemid`,`item`.`plink`,
`item`.`author-name`, `item`.`author-avatar`, `item`.`author-link` FROM `event` LEFT JOIN `item` ON `item`.`event-id` = `event`.`id`
2011-06-14 04:06:49 +02:00
WHERE `event`.`uid` = %d
2011-06-15 04:48:37 +02:00
AND (( `adjust` = 0 AND `start` >= '%s' AND `start` <= '%s' )
OR ( `adjust` = 1 AND `start` >= '%s' AND `start` <= '%s' )) ",
2011-06-08 05:10:43 +02:00
intval(local_user()),
2011-06-07 05:17:36 +02:00
dbesc($start),
dbesc($finish),
2011-06-08 05:10:43 +02:00
dbesc($adjust_start),
dbesc($adjust_finish)
2011-06-07 05:17:36 +02:00
);
2011-06-17 08:17:25 +02:00
2011-06-15 04:48:37 +02:00
$links = array();
if(count($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'));
if(! x($links,$j))
$links[$j] = $a->get_baseurl() . '/' . $a->cmd . '#link-' . $j;
}
}
$o .= '<div id="new-event-link"><a href="' . $a->get_baseurl() . '/events/new' . '" >' . t('Create New Event') . '</a></div>';
$o .= '<div id="event-calendar-wrapper">';
$o .= '<a href="' . $a->get_baseurl() . '/events/' . $prevyear . '/' . $prevmonth . '" class="prevcal"><div id="event-calendar-prev" class="icon prev" title="' . t('Previous') . '"></div></a>';
$o .= cal($y,$m,$links, ' eventcal');
$o .= '<a href="' . $a->get_baseurl() . '/events/' . $nextyear . '/' . $nextmonth . '" class="nextcal"><div id="event-calendar-next" class="icon next" title="' . t('Next') . '"></div></a>';
$o .= '</div>';
$o .= '<div class="event-calendar-end"></div>';
$last_date = '';
2011-06-08 05:10:43 +02:00
$fmt = t('l, F j');
2011-06-07 04:59:20 +02:00
2011-06-08 05:10:43 +02:00
if(count($r)) {
$r = sort_by_date($r);
foreach($r as $rr) {
2011-06-15 04:48:37 +02:00
$j = (($rr['adjust']) ? datetime_convert('UTC',date_default_timezone_get(),$rr['start'], 'j') : datetime_convert('UTC','UTC',$rr['start'],'j'));
2011-06-08 05:10:43 +02:00
$d = (($rr['adjust']) ? datetime_convert('UTC',date_default_timezone_get(),$rr['start'], $fmt) : datetime_convert('UTC','UTC',$rr['start'],$fmt));
$d = day_translate($d);
2011-06-15 04:48:37 +02:00
if($d !== $last_date)
$o .= '<hr /><a name="link-' . $j . '" ><div class="event-list-date">' . $d . '</div></a>';
2011-06-08 05:10:43 +02:00
$last_date = $d;
$o .= format_event_html($rr);
2011-07-01 08:23:50 +02:00
$o .= ((! $rr['cid']) ? '<a href="' . $a->get_baseurl() . '/events/event/' . $rr['id'] . '" title="' . t('Edit event') . '" class="edit-event-link icon pencil"></a>' : '');
2011-06-14 04:06:49 +02:00
if($rr['plink'])
2011-06-15 04:48:37 +02:00
$o .= '<a href="' . $rr['plink'] . '" title="' . t('link to source') . '" target="external-link" class="plink-event-link icon remote-link"></a></div>';
$o .= '<div class="clear"></div>';
2011-06-08 05:10:43 +02:00
}
}
2011-06-07 04:59:20 +02:00
return $o;
}
2011-06-15 04:48:37 +02:00
if($mode === 'edit' && $event_id) {
$r = q("SELECT * FROM `event` WHERE `id` = %d AND `uid` = %d LIMIT 1",
intval($event_id),
intval(local_user())
);
if(count($r))
$orig_event = $r[0];
}
2011-06-07 04:59:20 +02:00
if($mode === 'edit' || $mode === 'new') {
2011-06-15 04:48:37 +02:00
$n_checked = ((x($orig_event) && $orig_event['nofinish']) ? ' checked="checked" ' : '');
$a_checked = ((x($orig_event) && $orig_event['adjust']) ? ' checked="checked" ' : '');
$d_orig = ((x($orig_event)) ? $orig_event['desc'] : '');
$l_orig = ((x($orig_event)) ? $orig_event['location'] : '');
$eid = ((x($orig_event)) ? $orig_event['id'] : 0);
$cid = ((x($orig_event)) ? $orig_event['cid'] : 0);
$uri = ((x($orig_event)) ? $orig_event['uri'] : '');
if(! x($orig_event))
$sh_checked = '';
else
$sh_checked = (($orig_event['allow_cid'] === '<' . local_user() . '>' && (! $orig_event['allow_gid']) && (! $orig_event['deny_cid']) && (! $orig_event['deny_gid'])) ? '' : ' checked="checked" ' );
if($cid)
$sh_checked .= ' disabled="disabled" ';
2011-06-10 06:23:45 +02:00
$htpl = get_markup_template('event_head.tpl');
2011-06-07 06:49:07 +02:00
$a->page['htmlhead'] .= replace_macros($htpl,array('$baseurl' => $a->get_baseurl()));
2011-06-07 04:59:20 +02:00
$tpl = get_markup_template('event_form.tpl');
2011-06-15 04:48:37 +02:00
$sdt = ((x($orig_event)) ? $orig_event['start'] : 'now');
$fdt = ((x($orig_event)) ? $orig_event['finish'] : 'now');
$tz = ((x($orig_event) && $orig_event['adjust']) ? date_default_timezone_get() : 'UTC');
2011-06-15 04:48:37 +02:00
$syear = datetime_convert('UTC', $tz, $sdt, 'Y');
$smonth = datetime_convert('UTC', $tz, $sdt, 'm');
$sday = datetime_convert('UTC', $tz, $sdt, 'd');
2011-06-15 04:48:37 +02:00
$shour = ((x($orig_event)) ? datetime_convert('UTC', $tz, $sdt, 'H') : 0);
$sminute = ((x($orig_event)) ? datetime_convert('UTC', $tz, $sdt, 'i') : 0);
$fyear = datetime_convert('UTC', $tz, $fdt, 'Y');
$fmonth = datetime_convert('UTC', $tz, $fdt, 'm');
$fday = datetime_convert('UTC', $tz, $fdt, 'd');
$fhour = ((x($orig_event)) ? datetime_convert('UTC', $tz, $fdt, 'H') : 0);
$fminute = ((x($orig_event)) ? datetime_convert('UTC', $tz, $fdt, 'i') : 0);
2011-06-15 04:48:37 +02:00
$f = get_config('system','event_input_format');
if(! $f)
$f = 'ymd';
$dateformat = datesel_format($f);
$timeformat = t('hour:minute');
2011-06-07 04:59:20 +02:00
2011-06-10 06:23:45 +02:00
require_once('include/acl_selectors.php');
2011-06-07 04:59:20 +02:00
$o .= replace_macros($tpl,array(
'$post' => $a->get_baseurl() . '/events',
2011-06-15 04:48:37 +02:00
'$eid' => $eid,
'$cid' => $cid,
'$uri' => $uri,
2011-06-07 04:59:20 +02:00
'$e_text' => t('Event details'),
'$e_desc' => sprintf( t('Format is %s %s. Starting date and Description are required.'),$dateformat,$timeformat),
2011-06-08 05:10:43 +02:00
'$s_text' => t('Event Starts:') . ' <span class="required">*</span> ',
'$s_dsel' => datesel($f,'start',$syear+5,$syear,false,$syear,$smonth,$sday),
2011-06-15 04:48:37 +02:00
'$s_tsel' => timesel('start',$shour,$sminute),
2011-06-08 05:10:43 +02:00
'$n_text' => t('Finish date/time is not known or not relevant'),
2011-06-15 04:48:37 +02:00
'$n_checked' => $n_checked,
2011-06-08 05:10:43 +02:00
'$f_text' => t('Event Finishes:'),
'$f_dsel' => datesel($f,'finish',$fyear+5,$fyear,false,$fyear,$fmonth,$fday),
2011-06-15 04:48:37 +02:00
'$f_tsel' => timesel('finish',$fhour,$fminute),
2011-06-07 07:27:38 +02:00
'$a_text' => t('Adjust for viewer timezone'),
2011-06-15 04:48:37 +02:00
'$a_checked' => $a_checked,
2011-06-08 05:10:43 +02:00
'$d_text' => t('Description:') . ' <span class="required">*</span>',
2011-06-15 04:48:37 +02:00
'$d_orig' => $d_orig,
2011-06-07 04:59:20 +02:00
'$l_text' => t('Location:'),
2011-06-15 04:48:37 +02:00
'$l_orig' => $l_orig,
2011-06-10 06:23:45 +02:00
'$sh_text' => t('Share this event'),
2011-06-15 04:48:37 +02:00
'$sh_checked' => $sh_checked,
'$acl' => (($cid) ? '' : populate_acl(((x($orig_event)) ? $orig_event : $a->user),false)),
2011-06-07 04:59:20 +02:00
'$submit' => t('Submit')
));
return $o;
}
}