]> git.mxchange.org Git - friendica.git/blob - include/event.php
event calendar links, editing
[friendica.git] / include / event.php
1 <?php
2
3
4 function format_event_html($ev) {
5
6         require_once('include/bbcode.php');
7
8         if(! ((is_array($ev)) && count($ev)))
9                 return '';
10
11         $bd_format = t('l F d, Y \@ g A') ; // Friday January 18, 2011 @ 8 AM
12
13         $o = '<div class="vevent">';
14
15         $o .= '<p class="description event-description">' . bbcode($ev['desc']) .  '</p>';
16
17         $o .= '<p class="event-start">' . t('Starts:') . ' <abbr class="dtstart" title="'
18                 . datetime_convert('UTC','UTC',$ev['start'], (($ev['adjust']) ? ATOM_TIME : 'Y-m-d\TH:i:s' ))
19                 . '" >' 
20                 . (($ev['adjust']) ? day_translate(datetime_convert('UTC', date_default_timezone_get(), 
21                         $ev['start'] , $bd_format ))
22                         :  day_translate(datetime_convert('UTC', 'UTC', 
23                         $ev['start'] , $bd_format)))
24                 . '</abbr></p>';
25
26         if(! $ev['nofinish'])
27                 $o .= '<p class="event-end" >' . t('Finishes:') . ' <abbr class="dtend" title="'
28                         . datetime_convert('UTC','UTC',$ev['finish'], (($ev['adjust']) ? ATOM_TIME : 'Y-m-d\TH:i:s' ))
29                         . '" >' 
30                         . (($ev['adjust']) ? day_translate(datetime_convert('UTC', date_default_timezone_get(), 
31                                 $ev['finish'] , $bd_format ))
32                                 :  day_translate(datetime_convert('UTC', 'UTC', 
33                                 $ev['finish'] , $bd_format )))
34                         . '</abbr></p>';
35
36         if(strlen($ev['location']))
37                 $o .= '<p class="event-location"> ' . t('Location:') . ' <span class="location">' 
38                         . bbcode($ev['location']) 
39                         . '</span></p>';
40
41         $o .= '</div>';
42         return $o;
43 }
44
45
46 function parse_event($h) {
47
48         require_once('include/Scrape.php');
49         require_once('library/HTMLPurifier.auto.php');
50         require_once('include/html2bbcode');
51
52         $h = '<html><body>' . $h . '</body></html>';
53
54         $ret = array();
55
56         $dom = HTML5_Parser::parse($h);
57
58         if(! $dom)
59                 return $ret;
60
61         $items = $dom->getElementsByTagName('*');
62
63         foreach($items as $item) {
64                 if(attribute_contains($item->getAttribute('class'), 'vevent')) {
65                         $level2 = $item->getElementsByTagName('*');
66                         foreach($level2 as $x) {
67                                 if(attribute_contains($x->getAttribute('class'),'dtstart') && $x->getAttribute('title')) {
68                                         $ret['start'] = $x->getAttribute('title');
69                                         if(! strpos($ret['start'],'Z'))
70                                                 $ret['adjust'] = true;
71                                 }
72                                 if(attribute_contains($x->getAttribute('class'),'dtend') && $x->getAttribute('title'))
73                                         $ret['finish'] = $x->getAttribute('title');
74
75                                 if(attribute_contains($x->getAttribute('class'),'description'))
76                                         $ret['desc'] = $x->textContent;
77                                 if(attribute_contains($x->getAttribute('class'),'location'))
78                                         $ret['location'] = $x->textContent;
79                         }
80                 }
81         }
82
83         // sanitise
84
85         if((x($ret,'desc')) && ((strpos($ret['desc'],'<') !== false) || (strpos($ret['desc'],'>') !== false))) {
86                 $config = HTMLPurifier_Config::createDefault();
87                 $config->set('Cache.DefinitionImpl', null);
88                 $purifier = new HTMLPurifier($config);
89                 $ret['desc'] = html2bbcode($purifier->purify($ret['desc']));
90         }
91
92         if((x($ret,'location')) && ((strpos($ret['location'],'<') !== false) || (strpos($ret['location'],'>') !== false))) {
93                 $config = HTMLPurifier_Config::createDefault();
94                 $config->set('Cache.DefinitionImpl', null);
95                 $purifier = new HTMLPurifier($config);
96                 $ret['location'] = html2bbcode($purifier->purify($ret['location']));
97         }
98
99         if(x($ret,'start'))
100                 $ret['start'] = datetime_convert('UTC','UTC',$ret['start']);
101         if(x($ret,'finish'))
102                 $ret['finish'] = datetime_convert('UTC','UTC',$ret['finish']);
103
104         return $ret;
105 }
106
107
108 function format_event_bbcode($ev) {
109
110         $o = '';
111
112         if($ev['desc'])
113                 $o .= '[event-description]' . $ev['desc'] . '[/event-description]';
114
115         if($ev['start'])
116                 $o .= '[event-start]' . $ev['start'] . '[/event-start]';
117
118         if(($ev['finish']) && (! $ev['nofinish']))
119                 $o .= '[event-finish]' . $ev['finish'] . '[/event-finish]';
120  
121         if($ev['location'])
122                 $o .= '[event-location]' . $ev['location'] . '[/event-location]';
123
124         if($ev['adjust'])
125                 $o .= '[event-adjust]' . $ev['adjust'] . '[/event-adjust]';
126
127
128         return $o;
129
130 }
131
132 function bbtovcal($s) {
133         $o = '';
134         $ev = bbtoevent($s);
135         if($ev['desc'])
136                 $o = format_event_html($ev);
137         return $o;
138 }
139
140
141 function bbtoevent($s) {
142
143         $ev = array();
144
145         $match = '';
146         if(preg_match("/\[event\-description\](.*?)\[\/event\-description\]/is",$s,$match))
147                 $ev['desc'] = $match[1];
148         $match = '';
149         if(preg_match("/\[event\-start\](.*?)\[\/event\-start\]/is",$s,$match))
150                 $ev['start'] = $match[1];
151         $match = '';
152         if(preg_match("/\[event\-finish\](.*?)\[\/event\-finish\]/is",$s,$match))
153                 $ev['finish'] = $match[1];
154         $match = '';
155         if(preg_match("/\[event\-location\](.*?)\[\/event\-location\]/is",$s,$match))
156                 $ev['location'] = $match[1];
157         $match = '';
158         if(preg_match("/\[event\-adjust\](.*?)\[\/event\-adjust\]/is",$s,$match))
159                 $ev['adjust'] = $match[1];
160         $match = '';
161         $ev['nofinish'] = (($ev['start'] && (! $ev['finish'])) ? 1 : 0);
162         return $ev;
163
164 }
165
166
167 function sort_by_date($a) {
168
169         usort($a,'ev_compare');
170         return $a;
171 }
172
173
174 function ev_compare($a,$b) {
175
176         $date_a = (($a['adjust']) ? datetime_convert('UTC',date_default_timezone_get(),$a['start']) : $a['start']);
177         $date_b = (($b['adjust']) ? datetime_convert('UTC',date_default_timezone_get(),$b['start']) : $b['start']);
178         
179         return strcmp($date_a,$date_b);
180 }
181
182
183
184 function event_store($arr) {
185
186         require_once('include/datetime.php');
187         require_once('include/items.php');
188         require_once('include/bbcode.php');
189
190         $a = get_app();
191
192         $arr['created'] = (($arr['created']) ? $arr['created'] : datetime_convert());
193         $arr['edited']  = (($arr['edited']) ? $arr['edited'] : datetime_convert());
194         $arr['type']    = (($arr['type']) ? $arr['type'] : 'event' );   
195         $arr['cid']     = ((intval($arr['cid'])) ? intval($arr['cid']) : 0);
196         $arr['uri']     = (x($arr,'uri') ? $arr['uri'] : item_new_uri($a->get_hostname(),$arr['uid']));
197
198         if($arr['cid'])
199                 $c = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
200                         intval($arr['cid']),
201                         intval($arr['uid'])
202                 );
203         else
204                 $c = q("SELECT * FROM `contact` WHERE `self` = 1 AND `uid` = %d LIMIT 1",
205                         intval($arr['uid'])
206                 );
207
208         if(count($c))
209                 $contact = $c[0];
210
211
212         if($arr['id']) {
213                 $r = q("UPDATE `event` SET
214                         `edited` = '%s',
215                         `start` = '%s',
216                         `finish` = '%s',
217                         `desc` = '%s',
218                         `location` = '%s',
219                         `type` = '%s',
220                         `adjust` = %d,
221                         `nofinish` = %d,
222                         `allow_cid` = '%s',
223                         `allow_gid` = '%s',
224                         `deny_cid` = '%s',
225                         `deny_gid` = '%s'
226                         WHERE `id` = %d AND `uid` = %d LIMIT 1",
227
228                         dbesc($arr['edited']),
229                         dbesc($arr['start']),
230                         dbesc($arr['finish']),
231                         dbesc($arr['desc']),
232                         dbesc($arr['location']),
233                         dbesc($arr['type']),
234                         intval($arr['adjust']),
235                         intval($arr['nofinish']),
236                         dbesc($arr['allow_cid']),
237                         dbesc($arr['allow_gid']),
238                         dbesc($arr['deny_cid']),
239                         dbesc($arr['deny_gid']),
240                         intval($arr['id']),
241                         intval($arr['uid'])
242                 );
243                 $r = q("SELECT * FROM `item` WHERE `event-id` = %d AND `uid` = %d LIMIT 1",
244                         intval($arr['id']),
245                         intval($arr['uid'])
246                 );
247                 if(count($r)) {
248                         $object = '<object><type>' . xmlify(ACTIVITY_OBJ_EVENT) . '</type><title></title><id>' . xmlify($arr['uri']) . '</id>';
249                         $object .= '<content>' . xmlify(format_event_bbcode($arr)) . '</content>';
250                         $object .= '</object>' . "\n";
251
252
253                         q("UPDATE `item` SET `body` = '%s', `object` = '%s', `allow_cid` = '%s', `allow_gid` = '%s', `deny_cid` = '%s', `deny_gid` = '%s', `edited` = '%s' WHERE `id` = %d AND `uid` = %d LIMIT 1",
254                                 dbesc(format_event_bbcode($arr)),
255                                 dbesc($object),
256                                 dbesc($arr['allow_cid']),
257                                 dbesc($arr['allow_gid']),
258                                 dbesc($arr['deny_cid']),
259                                 dbesc($arr['deny_gid']),
260                                 dbesc(datetime_convert()),
261                                 intval($r[0]['id']),
262                                 intval($arr['uid'])
263                         );
264
265                         return $r[0]['id'];
266                 }
267                 else
268                         return 0;
269         }
270         else {
271
272                 $r = q("INSERT INTO `event` ( `uid`,`cid`,`uri`,`created`,`edited`,`start`,`finish`,`desc`,`location`,`type`,
273                         `adjust`,`nofinish`,`allow_cid`,`allow_gid`,`deny_cid`,`deny_gid`)
274                         VALUES ( %d, %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, '%s', '%s', '%s', '%s' ) ",
275                         intval($arr['uid']),
276                         intval($arr['cid']),
277                         dbesc($arr['uri']),
278                         dbesc($arr['created']),
279                         dbesc($arr['edited']),
280                         dbesc($arr['start']),
281                         dbesc($arr['finish']),
282                         dbesc($arr['desc']),
283                         dbesc($arr['location']),
284                         dbesc($arr['type']),
285                         intval($arr['adjust']),
286                         intval($arr['nofinish']),
287                         dbesc($arr['allow_cid']),
288                         dbesc($arr['allow_gid']),
289                         dbesc($arr['deny_cid']),
290                         dbesc($arr['deny_gid'])
291
292                 );
293
294                 $r = q("SELECT * FROM `event` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
295                         dbesc($arr['uri']),
296                         intval($arr['uid'])
297                 );
298                 if(count($r))
299                         $event = $r[0];
300
301                 $item_arr = array();
302
303                 $item_arr['uid']           = $arr['uid'];
304                 $item_arr['contact-id']    = $arr['cid'];
305                 $item_arr['uri']           = $arr['uri'];
306                 $item_arr['parent-uri']    = $arr['uri'];
307                 $item_arr['type']          = 'activity';
308                 $item_arr['wall']          = 1;
309                 $item_arr['contact-id']    = $contact['id'];
310                 $item_arr['owner-name']    = $contact['name'];
311                 $item_arr['owner-link']    = $contact['url'];
312                 $item_arr['owner-avatar']  = $contact['thumb'];
313                 $item_arr['author-name']   = $contact['name'];
314                 $item_arr['author-link']   = $contact['url'];
315                 $item_arr['author-avatar'] = $contact['thumb'];
316                 $item_arr['title']         = '';
317                 $item_arr['allow_cid']     = $str_contact_allow;
318                 $item_arr['allow_gid']     = $str_group_allow;
319                 $item_arr['deny_cid']      = $str_contact_deny;
320                 $item_arr['deny_gid']      = $str_group_deny;
321                 $item_arr['last-child']    = 1;
322                 $item_arr['visible']       = 1;
323                 $item_arr['verb']          = ACTIVITY_POST;
324                 $item_arr['object-type']   = ACTIVITY_OBJ_EVENT;
325
326                 $item_arr['body']          = format_event_bbcode($event);
327
328
329                 $item_arr['object'] = '<object><type>' . xmlify(ACTIVITY_OBJ_EVENT) . '</type><title></title><id>' . xmlify($uri) . '</id>';
330                 $item_arr['object'] .= '<content>' . xmlify(format_event_bbcode($event)) . '</content>';
331                 $item_arr['object'] .= '</object>' . "\n";
332
333                 $item_id = item_store($item_arr);
334
335                 $r = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1",
336                         intval($arr['uid'])
337                 );
338                 if(count($r))
339                         $plink = $a->get_baseurl() . '/display/' . $r[0]['nickname'] . '/' . $item_id;
340
341
342                 if($item_id) {
343                         q("UPDATE `item` SET `plink` = '%s', `event-id` = %d  WHERE `uid` = %d AND `id` = %d LIMIT 1",
344                                 dbesc($plink),
345                                 intval($event['id']),
346                                 intval($arr['uid']),
347                                 intval($item_id)
348                         );
349                 }
350
351                 return $item_id;
352         }
353 }