]> git.mxchange.org Git - friendica.git/blob - mod/events.php
configurable format for date input selectors
[friendica.git] / mod / events.php
1 <?php
2
3 require_once('include/datetime.php');
4 require_once('include/event.php');
5 require_once('include/items.php');
6
7 function events_post(&$a) {
8
9         if(! local_user())
10                 return;
11
12         $event_id = ((x($_POST,'event_id')) ? intval($_POST['event_id']) : 0);
13         $cid = ((x($_POST,'cid')) ? intval($_POST['cid']) : 0);
14         $uid      = local_user();
15         $startyear = intval($_POST['startyear']);
16         $startmonth = intval($_POST['startmonth']);
17         $startday = intval($_POST['startday']);
18         $starthour = intval($_POST['starthour']);
19         $startminute = intval($_POST['startminute']);
20
21         $finishyear = intval($_POST['finishyear']);
22         $finishmonth = intval($_POST['finishmonth']);
23         $finishday = intval($_POST['finishday']);
24         $finishhour = intval($_POST['finishhour']);
25         $finishminute = intval($_POST['finishminute']);
26
27         $adjust   = intval($_POST['adjust']);
28         $nofinish = intval($_POST['nofinish']);
29
30
31         $start    = sprintf('%d-%d-%d %d:%d:0',$startyear,$startmonth,$startday,$starthour,$startminute);
32         if($nofinish)
33                 $finish = '0000-00-00 00:00:00';
34         else
35                 $finish    = sprintf('%d-%d-%d %d:%d:0',$finishyear,$finishmonth,$finishday,$finishhour,$finishminute);
36
37         if($adjust) {
38                 $start = datetime_convert(date_default_timezone_get(),'UTC',$start);
39                 if(! $nofinish)
40                         $finish = datetime_convert(date_default_timezone_get(),'UTC',$finish);
41         }
42         else {
43                 $start = datetime_convert('UTC','UTC',$start);
44                 if(! $nofinish)
45                         $finish = datetime_convert('UTC','UTC',$finish);
46         }
47
48
49         $desc     = escape_tags(trim($_POST['desc']));
50         $location = escape_tags(trim($_POST['location']));
51         $type     = 'event';
52
53         if((! $desc) || (! $start)) {
54                 notice('Event description and start time are required.');
55                 goaway($a->get_baseurl() . '/events/new');
56         }
57
58         $share = ((intval($_POST['share'])) ? intval($_POST['share']) : 0);
59
60         if($share) {
61                 $str_group_allow   = perms2str($_POST['group_allow']);
62                 $str_contact_allow = perms2str($_POST['contact_allow']);
63                 $str_group_deny    = perms2str($_POST['group_deny']);
64                 $str_contact_deny  = perms2str($_POST['contact_deny']);
65         }
66         else {
67                 $str_contact_allow = '<' . local_user() . '>';
68                 $str_group_allow = $str_contact_deny = $str_group_deny = '';
69         }
70
71
72         $datarray = array();
73         $datarray['start'] = $start;
74         $datarray['finish'] = $finish;
75         $datarray['desc'] = $desc;
76         $datarray['location'] = $location;
77         $datarray['type'] = $type;
78         $datarray['adjust'] = $adjust;
79         $datarray['nofinish'] = $nofinish;
80         $datarray['uid'] = $uid;
81         $datarray['cid'] = $cid;
82         $datarray['allow_cid'] = $str_contact_allow;
83         $datarray['allow_gid'] = $str_group_allow;
84         $datarray['deny_cid'] = $str_contact_deny;
85         $datarray['deny_gid'] = $str_group_deny;
86         $datarray['id'] = $event_id;
87         $datarray['created'] = $created;
88         $datarray['edited'] = $edited;
89
90         $item_id = event_store($datarray);
91
92         if(! $cid)
93                 proc_run('php',"include/notifier.php","event","$item_id");
94
95 }
96
97
98
99 function events_content(&$a) {
100
101         if(! local_user()) {
102                 notice( t('Permission denied.') . EOL);
103                 return;
104         }
105
106         $o ="";
107         // tabs
108         $tpl = get_markup_template('profile_tabs.tpl');
109         $o .= replace_macros($tpl,array(
110                 '$url' => $a->get_baseurl() . '/profile/' . $a->user['nickname'],
111                 '$phototab' => $a->get_baseurl() . '/photos/' . $a->user['nickname'],
112                 '$status' => t('Status'),
113                 '$profile' => t('Profile'),
114                 '$photos' => t('Photos'),
115                 '$events' => t('Events') ,
116                 '$notes' => t('Personal Notes'),
117                 '$activetab' => "events",
118         ));     
119
120         $o .= '<h2>' . t('Events') . '</h2>';
121
122
123         $mode = 'view';
124         $y = 0;
125         $m = 0;
126
127         if($a->argc > 1) {
128                 if($a->argc > 2 && $a->argv[1] == 'event') {
129                         $mode = 'edit';
130                         $event_id = intval($a->argv[2]);
131                 }
132                 if($a->argv[1] === 'new') {
133                         $mode = 'new';
134                         $event_id = 0;
135                 }
136                 if($a->argc > 2 && intval($a->argv[1]) && intval($a->argv[2])) {
137                         $mode = 'view';
138                         $y = intval($a->argv[1]);
139                         $m = intval($a->argv[2]);
140                 }
141         }
142
143         if($mode == 'view') {
144             $thisyear = datetime_convert('UTC',date_default_timezone_get(),'now','Y');
145         $thismonth = datetime_convert('UTC',date_default_timezone_get(),'now','m');
146                 if(! $y)
147                         $y = intval($thisyear);
148                 if(! $m)
149                         $m = intval($thismonth);
150
151                 // Put some limits on dates. The PHP date functions don't seem to do so well before 1900.
152                 // An upper limit was chosen to keep search engines from exploring links millions of years in the future. 
153
154                 if($y < 1901)
155                         $y = 1900;
156                 if($y > 2099)
157                         $y = 2100;
158
159                 $nextyear = $y;
160                 $nextmonth = $m + 1;
161                 if($nextmonth > 12) {
162                                 $nextmonth = 1;
163                         $nextyear ++;
164                 }
165
166                 $prevyear = $y;
167                 if($m > 1)
168                         $prevmonth = $m - 1;
169                 else {
170                         $prevmonth = 12;
171                         $prevyear --;
172                 }
173
174                         
175                 $dim    = get_dim($y,$m);
176                 $start  = sprintf('%d-%d-%d %d:%d:%d',$y,$m,1,0,0,0);
177                 $finish = sprintf('%d-%d-%d %d:%d:%d',$y,$m,$dim,23,59,59);
178         
179                 $start  = datetime_convert('UTC','UTC',$start);
180                 $finish = datetime_convert('UTC','UTC',$finish);
181
182                 $adjust_start = datetime_convert('UTC', date_default_timezone_get(), $start);
183                 $adjust_finish = datetime_convert('UTC', date_default_timezone_get(), $finish);
184
185
186                 $r = q("SELECT `event`.*, `item`.`id` AS `itemid`,`item`.`plink`,
187                         `item`.`author-name`, `item`.`author-avatar`, `item`.`author-link` FROM `event` LEFT JOIN `item` ON `item`.`event-id` = `event`.`id` 
188                         WHERE `event`.`uid` = %d
189                         AND (( `adjust` = 0 AND `start` >= '%s' AND `start` <= '%s' ) 
190                         OR  (  `adjust` = 1 AND `start` >= '%s' AND `start` <= '%s' )) ",
191                         intval(local_user()),
192                         dbesc($start),
193                         dbesc($finish),
194                         dbesc($adjust_start),
195                         dbesc($adjust_finish)
196                 );
197
198                 $links = array();
199
200                 if(count($r)) {
201                         $r = sort_by_date($r);
202                         foreach($r as $rr) {
203                                 $j = (($rr['adjust']) ? datetime_convert('UTC',date_default_timezone_get(),$rr['start'], 'j') : datetime_convert('UTC','UTC',$rr['start'],'j'));
204                                 if(! x($links,$j)) 
205                                         $links[$j] = $a->get_baseurl() . '/' . $a->cmd . '#link-' . $j;
206                         }
207                 }
208
209
210                 $o .= '<div id="new-event-link"><a href="' . $a->get_baseurl() . '/events/new' . '" >' . t('Create New Event') . '</a></div>';
211                 $o .= '<div id="event-calendar-wrapper">';
212
213                 $o .= '<a href="' . $a->get_baseurl() . '/events/' . $prevyear . '/' . $prevmonth . '" class="prevcal"><div id="event-calendar-prev" class="icon prev" title="' . t('Previous') . '"></div></a>';
214                 $o .= cal($y,$m,$links, ' eventcal');
215
216                 $o .= '<a href="' . $a->get_baseurl() . '/events/' . $nextyear . '/' . $nextmonth . '" class="nextcal"><div id="event-calendar-next" class="icon next" title="' . t('Next') . '"></div></a>';
217                 $o .= '</div>';
218                 $o .= '<div class="event-calendar-end"></div>';
219
220
221
222                 $last_date = '';
223                 $fmt = t('l, F j');
224
225                 if(count($r)) {
226                         $r = sort_by_date($r);
227                         foreach($r as $rr) {
228                                 $j = (($rr['adjust']) ? datetime_convert('UTC',date_default_timezone_get(),$rr['start'], 'j') : datetime_convert('UTC','UTC',$rr['start'],'j'));
229                                 $d = (($rr['adjust']) ? datetime_convert('UTC',date_default_timezone_get(),$rr['start'], $fmt) : datetime_convert('UTC','UTC',$rr['start'],$fmt));
230                                 $d = day_translate($d);
231                                 if($d !== $last_date)
232                                         $o .= '<hr /><a name="link-' . $j . '" ><div class="event-list-date">' . $d . '</div></a>';
233                                 $last_date = $d;
234                                 $o .= format_event_html($rr);
235                                 $o .= ((! $rr['cid']) ? '<a href="' . $a->get_baseurl() . '/events/event/' . $rr['id'] . '" title="' . t('Edit event') . '" class="edit-event-link icon pencil"></a>' : '');
236                                 if($rr['plink'])
237                                         $o .= '<a href="' . $rr['plink'] . '" title="' . t('link to source') . '" target="external-link" class="plink-event-link icon remote-link"></a></div>';
238
239                                 $o .= '<div class="clear"></div>';
240
241                         }
242                 }
243                 return $o;
244         }
245
246         if($mode === 'edit' && $event_id) {
247                 $r = q("SELECT * FROM `event` WHERE `id` = %d AND `uid` = %d LIMIT 1",
248                         intval($event_id),
249                         intval(local_user())
250                 );
251                 if(count($r))
252                         $orig_event = $r[0];
253         }
254
255         if($mode === 'edit' || $mode === 'new') {
256
257                 $n_checked = ((x($orig_event) && $orig_event['nofinish']) ? ' checked="checked" ' : '');
258                 $a_checked = ((x($orig_event) && $orig_event['adjust']) ? ' checked="checked" ' : '');
259                 $d_orig = ((x($orig_event)) ? $orig_event['desc'] : '');
260                 $l_orig = ((x($orig_event)) ? $orig_event['location'] : '');
261                 $eid = ((x($orig_event)) ? $orig_event['id'] : 0);
262                 $cid = ((x($orig_event)) ? $orig_event['cid'] : 0);
263                 $uri = ((x($orig_event)) ? $orig_event['uri'] : '');
264
265
266                 if(! x($orig_event))
267                         $sh_checked = '';
268                 else
269                         $sh_checked = (($orig_event['allow_cid'] === '<' . local_user() . '>' && (! $orig_event['allow_gid']) && (! $orig_event['deny_cid']) && (! $orig_event['deny_gid'])) ? '' : ' checked="checked" ' );
270
271                 if($cid)
272                         $sh_checked .= ' disabled="disabled" ';
273
274                 $htpl = get_markup_template('event_head.tpl');
275                 $a->page['htmlhead'] .= replace_macros($htpl,array('$baseurl' => $a->get_baseurl()));
276
277                 $tpl = get_markup_template('event_form.tpl');
278
279                 $sdt = ((x($orig_event)) ? $orig_event['start'] : 'now');
280                 $fdt = ((x($orig_event)) ? $orig_event['finish'] : 'now');
281
282                 $tz = ((x($orig_event) && $orig_event['adjust']) ? date_default_timezone_get() : 'UTC');
283  
284
285
286                 $syear = datetime_convert('UTC', $tz, $sdt, 'Y');
287                 $smonth = datetime_convert('UTC', $tz, $sdt, 'm');
288                 $sday = datetime_convert('UTC', $tz, $sdt, 'd');
289
290                 $shour = ((x($orig_event)) ? datetime_convert('UTC', $tz, $sdt, 'H') : 0);
291                 $sminute = ((x($orig_event)) ? datetime_convert('UTC', $tz, $sdt, 'i') : 0);
292
293                 $fyear = datetime_convert('UTC', $tz, $fdt, 'Y');
294                 $fmonth = datetime_convert('UTC', $tz, $fdt, 'm');
295                 $fday = datetime_convert('UTC', $tz, $fdt, 'd');
296
297                 $fhour = ((x($orig_event)) ? datetime_convert('UTC', $tz, $fdt, 'H') : 0);
298                 $fminute = ((x($orig_event)) ? datetime_convert('UTC', $tz, $fdt, 'i') : 0);
299
300                 $f = get_config('system','event_input_format');
301                 if(! $f)
302                         $f = 'ymd';
303
304                 $dateformat = datesel_format($f);
305                 $timeformat = t('hour:minute');
306
307                 require_once('include/acl_selectors.php');
308
309                 $o .= replace_macros($tpl,array(
310                         '$post' => $a->get_baseurl() . '/events',
311                         '$eid' => $eid, 
312                         '$cid' => $cid,
313                         '$uri' => $uri,
314                         '$e_text' => t('Event details'),
315                         '$e_desc' => sprintf( t('Format is %s %s. Starting date and Description are required.'),$dateformat,$timeformat),
316                         '$s_text' => t('Event Starts:') . ' <span class="required">*</span> ',
317                         '$s_dsel' => datesel($f,'start',$syear+5,$syear,false,$syear,$smonth,$sday),
318                         '$s_tsel' => timesel('start',$shour,$sminute),
319                         '$n_text' => t('Finish date/time is not known or not relevant'),
320                         '$n_checked' => $n_checked,
321                         '$f_text' => t('Event Finishes:'),
322                         '$f_dsel' => datesel($f,'finish',$fyear+5,$fyear,false,$fyear,$fmonth,$fday),
323                         '$f_tsel' => timesel('finish',$fhour,$fminute),
324                         '$a_text' => t('Adjust for viewer timezone'),
325                         '$a_checked' => $a_checked,
326                         '$d_text' => t('Description:') . ' <span class="required">*</span>',
327                         '$d_orig' => $d_orig,
328                         '$l_text' => t('Location:'),
329                         '$l_orig' => $l_orig,
330                         '$sh_text' => t('Share this event'),
331                         '$sh_checked' => $sh_checked,
332                         '$acl' => (($cid) ? '' : populate_acl(((x($orig_event)) ? $orig_event : $a->user),false)),
333                         '$submit' => t('Submit')
334
335                 ));
336
337                 return $o;
338         }
339 }