]> git.mxchange.org Git - friendica.git/blob - mod/events.php
Merge branch 'pull'
[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         // Don't allow the event to finish before it begins.
49         // It won't hurt anything, but somebody will file a bug report
50         // and we'll waste a bunch of time responding to it. Time that 
51         // could've been spent doing something else. 
52
53         if(strcmp($finish,$start) < 0)
54                 $finish = $start;
55
56         $desc     = escape_tags(trim($_POST['desc']));
57         $location = escape_tags(trim($_POST['location']));
58         $type     = 'event';
59
60         if((! $desc) || (! $start)) {
61                 notice( t('Event description and start time are required.') . EOL);
62                 goaway($a->get_baseurl() . '/events/new');
63         }
64
65         $share = ((intval($_POST['share'])) ? intval($_POST['share']) : 0);
66
67         if($share) {
68                 $str_group_allow   = perms2str($_POST['group_allow']);
69                 $str_contact_allow = perms2str($_POST['contact_allow']);
70                 $str_group_deny    = perms2str($_POST['group_deny']);
71                 $str_contact_deny  = perms2str($_POST['contact_deny']);
72         }
73         else {
74                 $str_contact_allow = '<' . local_user() . '>';
75                 $str_group_allow = $str_contact_deny = $str_group_deny = '';
76         }
77
78
79         $datarray = array();
80         $datarray['start'] = $start;
81         $datarray['finish'] = $finish;
82         $datarray['desc'] = $desc;
83         $datarray['location'] = $location;
84         $datarray['type'] = $type;
85         $datarray['adjust'] = $adjust;
86         $datarray['nofinish'] = $nofinish;
87         $datarray['uid'] = $uid;
88         $datarray['cid'] = $cid;
89         $datarray['allow_cid'] = $str_contact_allow;
90         $datarray['allow_gid'] = $str_group_allow;
91         $datarray['deny_cid'] = $str_contact_deny;
92         $datarray['deny_gid'] = $str_group_deny;
93         $datarray['id'] = $event_id;
94         $datarray['created'] = $created;
95         $datarray['edited'] = $edited;
96
97         $item_id = event_store($datarray);
98
99         if(! $cid)
100                 proc_run('php',"include/notifier.php","event","$item_id");
101
102 }
103
104
105
106 function events_content(&$a) {
107
108         if(! local_user()) {
109                 notice( t('Permission denied.') . EOL);
110                 return;
111         }
112
113         $o ="";
114         // tabs
115         $o .= profile_tabs($a, True);   
116
117         $o .= '<h2>' . t('Events') . '</h2>';
118
119
120         $mode = 'view';
121         $y = 0;
122         $m = 0;
123
124         if($a->argc > 1) {
125                 if($a->argc > 2 && $a->argv[1] == 'event') {
126                         $mode = 'edit';
127                         $event_id = intval($a->argv[2]);
128                 }
129                 if($a->argv[1] === 'new') {
130                         $mode = 'new';
131                         $event_id = 0;
132                 }
133                 if($a->argc > 2 && intval($a->argv[1]) && intval($a->argv[2])) {
134                         $mode = 'view';
135                         $y = intval($a->argv[1]);
136                         $m = intval($a->argv[2]);
137                 }
138         }
139
140         if($mode == 'view') {
141             $thisyear = datetime_convert('UTC',date_default_timezone_get(),'now','Y');
142         $thismonth = datetime_convert('UTC',date_default_timezone_get(),'now','m');
143                 if(! $y)
144                         $y = intval($thisyear);
145                 if(! $m)
146                         $m = intval($thismonth);
147
148                 // Put some limits on dates. The PHP date functions don't seem to do so well before 1900.
149                 // An upper limit was chosen to keep search engines from exploring links millions of years in the future. 
150
151                 if($y < 1901)
152                         $y = 1900;
153                 if($y > 2099)
154                         $y = 2100;
155
156                 $nextyear = $y;
157                 $nextmonth = $m + 1;
158                 if($nextmonth > 12) {
159                                 $nextmonth = 1;
160                         $nextyear ++;
161                 }
162
163                 $prevyear = $y;
164                 if($m > 1)
165                         $prevmonth = $m - 1;
166                 else {
167                         $prevmonth = 12;
168                         $prevyear --;
169                 }
170
171                         
172                 $dim    = get_dim($y,$m);
173                 $start  = sprintf('%d-%d-%d %d:%d:%d',$y,$m,1,0,0,0);
174                 $finish = sprintf('%d-%d-%d %d:%d:%d',$y,$m,$dim,23,59,59);
175         
176                 $start  = datetime_convert('UTC','UTC',$start);
177                 $finish = datetime_convert('UTC','UTC',$finish);
178
179                 $adjust_start = datetime_convert('UTC', date_default_timezone_get(), $start);
180                 $adjust_finish = datetime_convert('UTC', date_default_timezone_get(), $finish);
181
182
183                 $r = q("SELECT `event`.*, `item`.`id` AS `itemid`,`item`.`plink`,
184                         `item`.`author-name`, `item`.`author-avatar`, `item`.`author-link` FROM `event` LEFT JOIN `item` ON `item`.`event-id` = `event`.`id` 
185                         WHERE `event`.`uid` = %d
186                         AND (( `adjust` = 0 AND `start` >= '%s' AND `start` <= '%s' ) 
187                         OR  (  `adjust` = 1 AND `start` >= '%s' AND `start` <= '%s' )) ",
188                         intval(local_user()),
189                         dbesc($start),
190                         dbesc($finish),
191                         dbesc($adjust_start),
192                         dbesc($adjust_finish)
193                 );
194
195                 $links = array();
196
197                 if(count($r)) {
198                         $r = sort_by_date($r);
199                         foreach($r as $rr) {
200                                 $j = (($rr['adjust']) ? datetime_convert('UTC',date_default_timezone_get(),$rr['start'], 'j') : datetime_convert('UTC','UTC',$rr['start'],'j'));
201                                 if(! x($links,$j)) 
202                                         $links[$j] = $a->get_baseurl() . '/' . $a->cmd . '#link-' . $j;
203                         }
204                 }
205
206
207                 $o .= '<div id="new-event-link"><a href="' . $a->get_baseurl() . '/events/new' . '" >' . t('Create New Event') . '</a></div>';
208                 $o .= '<div id="event-calendar-wrapper">';
209
210                 $o .= '<a href="' . $a->get_baseurl() . '/events/' . $prevyear . '/' . $prevmonth . '" class="prevcal"><div id="event-calendar-prev" class="icon prev" title="' . t('Previous') . '"></div></a>';
211                 $o .= cal($y,$m,$links, ' eventcal');
212
213                 $o .= '<a href="' . $a->get_baseurl() . '/events/' . $nextyear . '/' . $nextmonth . '" class="nextcal"><div id="event-calendar-next" class="icon next" title="' . t('Next') . '"></div></a>';
214                 $o .= '</div>';
215                 $o .= '<div class="event-calendar-end"></div>';
216
217
218
219                 $last_date = '';
220                 $fmt = t('l, F j');
221
222                 if(count($r)) {
223                         $r = sort_by_date($r);
224                         foreach($r as $rr) {
225                                 $j = (($rr['adjust']) ? datetime_convert('UTC',date_default_timezone_get(),$rr['start'], 'j') : datetime_convert('UTC','UTC',$rr['start'],'j'));
226                                 $d = (($rr['adjust']) ? datetime_convert('UTC',date_default_timezone_get(),$rr['start'], $fmt) : datetime_convert('UTC','UTC',$rr['start'],$fmt));
227                                 $d = day_translate($d);
228                                 if($d !== $last_date)
229                                         $o .= '<hr /><a name="link-' . $j . '" ><div class="event-list-date">' . $d . '</div></a>';
230                                 $last_date = $d;
231                                 if($rr['author-name']) {
232                                         $o .= '<a href="' . $rr['author-link'] . '" ><img src="' . $rr['author-avatar'] . '" height="32" width="32" />' . $rr['author-name'] . '</a>';
233                                 }
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 }