]> git.mxchange.org Git - friendica.git/blob - include/items.php
set writable flag on dfrn_poll
[friendica.git] / include / items.php
1 <?php
2
3 require_once('bbcode.php');
4 require_once('oembed.php');
5 require_once('include/salmon.php');
6
7 function get_feed_for(&$a, $dfrn_id, $owner_nick, $last_update, $direction = 0) {
8
9
10         // default permissions - anonymous user
11
12         if(! strlen($owner_nick))
13                 killme();
14
15         $sql_extra = " AND `allow_cid` = '' AND `allow_gid` = '' AND `deny_cid`  = '' AND `deny_gid`  = '' ";
16
17         $r = q("SELECT `contact`.*, `user`.`uid` AS `user_uid`, `user`.`nickname`, `user`.`timezone`
18                 FROM `contact` LEFT JOIN `user` ON `user`.`uid` = `contact`.`uid`
19                 WHERE `contact`.`self` = 1 AND `user`.`nickname` = '%s' LIMIT 1",
20                 dbesc($owner_nick)
21         );
22
23         if(! count($r))
24                 killme();
25
26         $owner = $r[0];
27         $owner_id = $owner['user_uid'];
28         $owner_nick = $owner['nickname'];
29
30         $birthday = feed_birthday($owner_id,$owner['timezone']);
31
32         if(strlen($dfrn_id)) {
33
34                 $sql_extra = '';
35                 switch($direction) {
36                         case (-1):
37                                 $sql_extra = sprintf(" AND `issued-id` = '%s' ", dbesc($dfrn_id));
38                                 $my_id = $dfrn_id;
39                                 break;
40                         case 0:
41                                 $sql_extra = sprintf(" AND `issued-id` = '%s' AND `duplex` = 1 ", dbesc($dfrn_id));
42                                 $my_id = '1:' . $dfrn_id;
43                                 break;
44                         case 1:
45                                 $sql_extra = sprintf(" AND `dfrn-id` = '%s' AND `duplex` = 1 ", dbesc($dfrn_id));
46                                 $my_id = '0:' . $dfrn_id;
47                                 break;
48                         default:
49                                 return false;
50                                 break; // NOTREACHED
51                 }
52
53                 $r = q("SELECT * FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `contact`.`uid` = %d $sql_extra LIMIT 1",
54                         intval($owner_id)
55                 );
56
57                 if(! count($r))
58                         killme();
59
60                 $contact = $r[0];
61                 $groups = init_groups_visitor($contact['id']);
62
63                 if(count($groups)) {
64                         for($x = 0; $x < count($groups); $x ++) 
65                                 $groups[$x] = '<' . intval($groups[$x]) . '>' ;
66                         $gs = implode('|', $groups);
67                 }
68                 else
69                         $gs = '<<>>' ; // Impossible to match 
70
71                 $sql_extra = sprintf(" 
72                         AND ( `allow_cid` = '' OR     `allow_cid` REGEXP '<%d>' ) 
73                         AND ( `deny_cid`  = '' OR NOT `deny_cid`  REGEXP '<%d>' ) 
74                         AND ( `allow_gid` = '' OR     `allow_gid` REGEXP '%s' )
75                         AND ( `deny_gid`  = '' OR NOT `deny_gid`  REGEXP '%s') 
76                 ",
77                         intval($contact['id']),
78                         intval($contact['id']),
79                         dbesc($gs),
80                         dbesc($gs)
81                 );
82         }
83
84         if($dfrn_id === '' || $dfrn_id === '*')
85                 $sort = 'DESC';
86         else
87                 $sort = 'ASC';
88
89         if(! strlen($last_update))
90                 $last_update = 'now -30 days';
91
92         $check_date = datetime_convert('UTC','UTC',$last_update,'Y-m-d H:i:s');
93
94         $r = q("SELECT `item`.*, `item`.`id` AS `item_id`, 
95                 `contact`.`name`, `contact`.`photo`, `contact`.`url`, 
96                 `contact`.`name-date`, `contact`.`uri-date`, `contact`.`avatar-date`,
97                 `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`, 
98                 `contact`.`id` AS `contact-id`, `contact`.`uid` AS `contact-uid`
99                 FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
100                 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`parent` != 0 
101                 AND `item`.`wall` = 1 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
102                 AND ( `item`.`edited` > '%s' OR `item`.`changed` > '%s' )
103                 $sql_extra
104                 ORDER BY `parent` %s, `created` ASC LIMIT 0, 300",
105                 intval($owner_id),
106                 dbesc($check_date),
107                 dbesc($check_date),
108                 dbesc($sort)
109         );
110
111         // Will check further below if this actually returned results.
112         // We will provide an empty feed if that is the case.
113
114         $items = $r;
115
116         $feed_template = load_view_file('view/atom_feed.tpl');
117
118         $atom = '';
119
120         $hubxml = feed_hublinks();
121
122         $salmon = feed_salmonlinks($owner_nick);
123
124         $atom .= replace_macros($feed_template, array(
125                 '$version'      => xmlify(FRIENDIKA_VERSION),
126                 '$feed_id'      => xmlify($a->get_baseurl() . '/profile/' . $owner_nick),
127                 '$feed_title'   => xmlify($owner['name']),
128                 '$feed_updated' => xmlify(datetime_convert('UTC', 'UTC', 'now' , ATOM_TIME)) ,
129                 '$hub'          => $hubxml,
130                 '$salmon'       => $salmon,
131                 '$name'         => xmlify($owner['name']),
132                 '$profile_page' => xmlify($owner['url']),
133                 '$photo'        => xmlify($owner['photo']),
134                 '$thumb'        => xmlify($owner['thumb']),
135                 '$picdate'      => xmlify(datetime_convert('UTC','UTC',$owner['avatar-date'] . '+00:00' , ATOM_TIME)) ,
136                 '$uridate'      => xmlify(datetime_convert('UTC','UTC',$owner['uri-date']    . '+00:00' , ATOM_TIME)) ,
137                 '$namdate'      => xmlify(datetime_convert('UTC','UTC',$owner['name-date']   . '+00:00' , ATOM_TIME)) , 
138                 '$birthday'     => ((strlen($birthday)) ? '<dfrn:birthday>' . xmlify($birthday) . '</dfrn:birthday>' : '')
139         ));
140
141         call_hooks('atom_feed', $atom);
142
143         if(! count($items)) {
144
145                 call_hooks('atom_feed_end', $atom);
146
147                 $atom .= '</feed>' . "\r\n";
148                 return $atom;
149         }
150
151         foreach($items as $item) {
152
153                 // public feeds get html, our own nodes use bbcode
154
155                 if($dfrn_id === '') {
156                         $type = 'html';
157                 }
158                 else {
159                         $type = 'text';
160                 }
161
162                 $atom .= atom_entry($item,$type,null,$owner,true);
163         }
164
165         call_hooks('atom_feed_end', $atom);
166
167         $atom .= '</feed>' . "\r\n";
168
169         return $atom;
170 }
171
172
173 function construct_verb($item) {
174         if($item['verb'])
175                 return $item['verb'];
176         return ACTIVITY_POST;
177 }
178
179 function construct_activity_object($item) {
180
181         if($item['object']) {
182                 $o = '<as:object>' . "\r\n";
183                 $r = parse_xml_string($item['object']);
184                 if($r->type)
185                         $o .= '<as:object-type>' . xmlify($r->type) . '</as:object-type>' . "\r\n";
186                 if($r->id)
187                         $o .= '<id>' . xmlify($r->id) . '</id>' . "\r\n";
188                 if($r->title)
189                         $o .= '<title>' . xmlify($r->title) . '</title>' . "\r\n";
190                 if($r->link) {
191                         if(substr($r->link,0,1) === '<') 
192                                 $o .= $r->link;
193                         else
194                                 $o .= '<link rel="alternate" type="text/html" href="' . xmlify($r->link) . '" />' . "\r\n";
195                 }
196                 if($r->content)
197                         $o .= '<content type="html" >' . xmlify(bbcode($r->content)) . '</content>' . "\r\n";
198                 $o .= '</as:object>' . "\r\n";
199                 return $o;
200         }
201
202         return '';
203
204
205 function construct_activity_target($item) {
206
207         if($item['target']) {
208                 $o = '<as:target>' . "\r\n";
209                 $r = parse_xml_string($item['target']);
210                 if($r->type)
211                         $o .= '<as:object-type>' . xmlify($r->type) . '</as:object-type>' . "\r\n";
212                 if($r->id)
213                         $o .= '<id>' . xmlify($r->id) . '</id>' . "\r\n";
214                 if($r->title)
215                         $o .= '<title>' . xmlify($r->title) . '</title>' . "\r\n";
216                 if($r->link) {
217                         if(substr($r->link,0,1) === '<') 
218                                 $o .= $r->link;
219                         else
220                                 $o .= '<link rel="alternate" type="text/html" href="' . xmlify($r->link) . '" />' . "\r\n";
221                 }
222                 if($r->content)
223                         $o .= '<content type="html" >' . xmlify(bbcode($r->content)) . '</content>' . "\r\n";
224                 $o .= '</as:target>' . "\r\n";
225                 return $o;
226         }
227
228         return '';
229
230
231
232
233
234 function get_atom_elements($feed,$item) {
235
236         require_once('library/HTMLPurifier.auto.php');
237         require_once('include/html2bbcode.php');
238
239         $best_photo = array();
240
241         $res = array();
242
243         $author = $item->get_author();
244         if($author) { 
245                 $res['author-name'] = unxmlify($author->get_name());
246                 $res['author-link'] = unxmlify($author->get_link());
247         }
248         else {
249                 $res['author-name'] = unxmlify($feed->get_title());
250                 $res['author-link'] = unxmlify($feed->get_permalink());
251         }
252         $res['uri'] = unxmlify($item->get_id());
253         $res['title'] = unxmlify($item->get_title());
254         $res['body'] = unxmlify($item->get_content());
255         $res['plink'] = unxmlify($item->get_link(0));
256
257         // look for a photo. We should check media size and find the best one,
258         // but for now let's just find any author photo
259
260         $rawauthor = $item->get_item_tags(SIMPLEPIE_NAMESPACE_ATOM_10,'author');
261
262         if($rawauthor && $rawauthor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link']) {
263                 $base = $rawauthor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'];
264                 foreach($base as $link) {
265                         if(! $res['author-avatar']) {
266                                 if($link['attribs']['']['rel'] === 'photo' || $link['attribs']['']['rel'] === 'avatar')
267                                         $res['author-avatar'] = unxmlify($link['attribs']['']['href']);
268                         }
269                 }
270         }                       
271
272         $rawactor = $item->get_item_tags(NAMESPACE_ACTIVITY, 'actor');
273
274         if($rawactor && activity_match($rawactor[0]['child'][NAMESPACE_ACTIVITY]['object-type'][0]['data'],ACTIVITY_OBJ_PERSON)) {
275                 $base = $rawactor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'];
276                 if($base && count($base)) {
277                         foreach($base as $link) {
278                                 if($link['attribs']['']['rel'] === 'alternate' && (! $res['author-link']))
279                                         $res['author-link'] = unxmlify($link['attribs']['']['href']);
280                                 if(! $res['author-avatar']) {
281                                         if($link['attribs']['']['rel'] === 'avatar' || $link['attribs']['']['rel'] === 'photo')
282                                                 $res['author-avatar'] = unxmlify($link['attribs']['']['href']);
283                                 }
284                         }
285                 }
286         }
287
288         // No photo/profile-link on the item - look at the feed level
289
290         if((! (x($res,'author-link'))) || (! (x($res,'author-avatar')))) {
291                 $rawauthor = $feed->get_feed_tags(SIMPLEPIE_NAMESPACE_ATOM_10,'author');
292                 if($rawauthor && $rawauthor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link']) {
293                         $base = $rawauthor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'];
294                         foreach($base as $link) {
295                                 if($link['attribs']['']['rel'] === 'alternate' && (! $res['author-link']))
296                                         $res['author-link'] = unxmlify($link['attribs']['']['href']);
297                                 if(! $res['author-avatar']) {
298                                         if($link['attribs']['']['rel'] === 'photo' || $link['attribs']['']['rel'] === 'avatar')
299                                                 $res['author-avatar'] = unxmlify($link['attribs']['']['href']);
300                                 }
301                         }
302                 }                       
303
304                 $rawactor = $feed->get_feed_tags(NAMESPACE_ACTIVITY, 'subject');
305
306                 if($rawactor && activity_match($rawactor[0]['child'][NAMESPACE_ACTIVITY]['object-type'][0]['data'],ACTIVITY_OBJ_PERSON)) {
307                         $base = $rawactor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'];
308
309                         if($base && count($base)) {
310                                 foreach($base as $link) {
311                                         if($link['attribs']['']['rel'] === 'alternate' && (! $res['author-link']))
312                                                 $res['author-link'] = unxmlify($link['attribs']['']['href']);
313                                         if(! (x($res,'author-avatar'))) {
314                                                 if($link['attribs']['']['rel'] === 'avatar' || $link['attribs']['']['rel'] === 'photo')
315                                                         $res['author-avatar'] = unxmlify($link['attribs']['']['href']);
316                                         }
317                                 }
318                         }
319                 }
320         }
321
322
323         /**
324          * If there's a copy of the body content which is guaranteed to have survived mangling in transit, use it.
325          */
326
327         $have_real_body = false;
328
329         $rawenv = $item->get_item_tags(NAMESPACE_DFRN, 'env');
330         if($rawenv) {
331                 $have_real_body = true;
332                 $res['body'] = $rawenv[0]['data'];
333                 $res['body'] = str_replace(array(' ',"\t","\r","\n"), array('','','',''),$res['body']);
334                 // make sure nobody is trying to sneak some html tags by us
335                 $res['body'] = notags(base64url_decode($res['body']));
336         }
337
338         $maxlen = get_max_import_size();
339         if($maxlen && (strlen($res['body']) > $maxlen))
340                 $res['body'] = substr($res['body'],0, $maxlen);
341
342         // It isn't certain at this point whether our content is plaintext or html and we'd be foolish to trust 
343         // the content type. Our own network only emits text normally, though it might have been converted to 
344         // html if we used a pubsubhubbub transport. But if we see even one html tag in our text, we will
345         // have to assume it is all html and needs to be purified.
346
347         // It doesn't matter all that much security wise - because before this content is used anywhere, we are 
348         // going to escape any tags we find regardless, but this lets us import a limited subset of html from 
349         // the wild, by sanitising it and converting supported tags to bbcode before we rip out any remaining 
350         // html.
351
352         if((strpos($res['body'],'<') !== false) || (strpos($res['body'],'>') !== false)) {
353
354                 $res['body'] = preg_replace('#<object[^>]+>.+?' . 'http://www.youtube.com/((?:v|cp)/[A-Za-z0-9\-_=]+).+?</object>#s',
355                         '[youtube]$1[/youtube]', $res['body']);
356
357                 $res['body'] = oembed_html2bbcode($res['body']);
358
359                 $config = HTMLPurifier_Config::createDefault();
360                 $config->set('Cache.DefinitionImpl', null);
361
362                 // we shouldn't need a whitelist, because the bbcode converter
363                 // will strip out any unsupported tags.
364                 // $config->set('HTML.Allowed', 'p,b,a[href],i'); 
365
366                 $purifier = new HTMLPurifier($config);
367                 $res['body'] = $purifier->purify($res['body']);
368
369                 $res['body'] = html2bbcode($res['body']);
370         }
371
372         $allow = $item->get_item_tags(NAMESPACE_DFRN,'comment-allow');
373         if($allow && $allow[0]['data'] == 1)
374                 $res['last-child'] = 1;
375         else
376                 $res['last-child'] = 0;
377
378         $private = $item->get_item_tags(NAMESPACE_DFRN,'private');
379         if($private && $private[0]['data'] == 1)
380                 $res['private'] = 1;
381         else
382                 $res['private'] = 0;
383
384
385         $rawlocation = $item->get_item_tags(NAMESPACE_DFRN, 'location');
386         if($rawlocation)
387                 $res['location'] = unxmlify($rawlocation[0]['data']);
388
389
390         $rawcreated = $item->get_item_tags(SIMPLEPIE_NAMESPACE_ATOM_10,'published');
391         if($rawcreated)
392                 $res['created'] = unxmlify($rawcreated[0]['data']);
393
394
395         $rawedited = $item->get_item_tags(SIMPLEPIE_NAMESPACE_ATOM_10,'updated');
396         if($rawedited)
397                 $res['edited'] = unxmlify($rawedited[0]['data']);
398
399         if((x($res,'edited')) && (! (x($res,'created'))))
400                 $res['created'] = $res['edited']; 
401
402         if(! $res['created'])
403                 $res['created'] = $item->get_date('c');
404
405         if(! $res['edited'])
406                 $res['edited'] = $item->get_date('c');
407
408
409         // Disallow time travelling posts
410
411         $d1 = strtotime($res['created']);
412         $d2 = strtotime($res['edited']);
413         $d3 = strtotime('now');
414
415         if($d1 > $d3)
416                 $res['created'] = datetime_convert();
417         if($d2 > $d3)
418                 $res['edited'] = datetime_convert();
419
420         $rawowner = $item->get_item_tags(NAMESPACE_DFRN, 'owner');
421         if($rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['name'][0]['data'])
422                 $res['owner-name'] = unxmlify($rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['name'][0]['data']);
423         elseif($rawowner[0]['child'][NAMESPACE_DFRN]['name'][0]['data'])
424                 $res['owner-name'] = unxmlify($rawowner[0]['child'][NAMESPACE_DFRN]['name'][0]['data']);
425         if($rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['uri'][0]['data'])
426                 $res['owner-link'] = unxmlify($rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['uri'][0]['data']);
427         elseif($rawowner[0]['child'][NAMESPACE_DFRN]['uri'][0]['data'])
428                 $res['owner-link'] = unxmlify($rawowner[0]['child'][NAMESPACE_DFRN]['uri'][0]['data']);
429
430         if($rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link']) {
431                 $base = $rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'];
432
433                 foreach($base as $link) {
434                         if(! $res['owner-avatar']) {
435                                 if($link['attribs']['']['rel'] === 'photo' || $link['attribs']['']['rel'] === 'avatar')                 
436                                         $res['owner-avatar'] = unxmlify($link['attribs']['']['href']);
437                         }
438                 }
439         }
440
441         $rawgeo = $item->get_item_tags(NAMESPACE_GEORSS,'point');
442         if($rawgeo)
443                 $res['coord'] = unxmlify($rawgeo[0]['data']);
444
445
446         $rawverb = $item->get_item_tags(NAMESPACE_ACTIVITY, 'verb');
447
448         // select between supported verbs
449
450         if($rawverb) {
451                 $res['verb'] = unxmlify($rawverb[0]['data']);
452         }
453
454         // translate OStatus unfollow to activity streams if it happened to get selected
455                 
456         if((x($res,'verb')) && ($res['verb'] === 'http://ostatus.org/schema/1.0/unfollow'))
457                 $res['verb'] = ACTIVITY_UNFOLLOW;
458
459
460         $cats = $item->get_categories();
461         if($cats) {
462                 $tag_arr = array();
463                 foreach($cats as $cat) {
464                         $term = $cat->get_term();
465                         if(! $term)
466                                 $term = $cat->get_label();
467                         $scheme = $cat->get_scheme();
468                         if($scheme && $term && stristr($scheme,'X-DFRN:'))
469                                 $tag_arr[] = substr($scheme,7,1) . '[url=' . unxmlify(substr($scheme,9)) . ']' . unxmlify($term) . '[/url]';
470                         elseif($term)
471                                 $tag_arr[] = notags(trim($term));
472                 }
473                 $res['tag'] =  implode(',', $tag_arr);
474         }
475
476         $attach = $item->get_enclosures();
477         if($attach) {
478                 $att_arr = array();
479                 foreach($attach as $att) {
480                         $len = intval($att->get_length());
481                         $link = str_replace(',','%2D', notags(trim($att->get_link())));
482                         $title = str_replace(',','%2D',notags(trim($att->get_title())));
483                         $type = notags(trim($att->get_type()));
484                         if((! $link) || (strpos($link,'http') !== 0))
485                                 continue;
486
487                         if(! $title)
488                                 $title = ' ';
489                         if(! $type)
490                                 $type = 'application/octet-stream';
491
492                         // this isn't legal html - there is no size in an 'a' tag, remember to strip it before display
493
494                         $att_arr[] = '<a href="' . $link . '" size="' . $len . '" type="' . $type . '">' . $title . '</a>'; 
495                 }
496                 $res['attach'] = implode(',', $att_arr);
497         }
498
499         $rawobj = $item->get_item_tags(NAMESPACE_ACTIVITY, 'object');
500
501         if($rawobj) {
502                 $res['object'] = '<object>' . "\n";
503                 if($rawobj[0]['child'][NAMESPACE_ACTIVITY]['object-type'][0]['data']) {
504                         $res['object-type'] = $rawobj[0]['child'][NAMESPACE_ACTIVITY]['object-type'][0]['data'];
505                         $res['object'] .= '<type>' . $rawobj[0]['child'][NAMESPACE_ACTIVITY]['object-type'][0]['data'] . '</type>' . "\n";
506                 }       
507                 if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['id'][0]['data'])
508                         $res['object'] .= '<id>' . $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['id'][0]['data'] . '</id>' . "\n";
509                 if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'])
510                         $res['object'] .= '<link>' . encode_rel_links($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link']) . '</link>' . "\n";
511                 if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['title'][0]['data'])
512                         $res['object'] .= '<title>' . $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['title'][0]['data'] . '</title>' . "\n";
513                 if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['content'][0]['data']) {
514                         $body = $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['content'][0]['data'];
515                         if(! $body)
516                                 $body = $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['summary'][0]['data'];
517                         // preserve a copy of the original body content in case we later need to parse out any microformat information, e.g. events
518                         $res['object'] .= '<orig>' . xmlify($body) . '</orig>' . "\n";
519                         if((strpos($body,'<') !== false) || (strpos($body,'>') !== false)) {
520
521                                 $body = preg_replace('#<object[^>]+>.+?' . 'http://www.youtube.com/((?:v|cp)/[A-Za-z0-9\-_=]+).+?</object>#s',
522                                         '[youtube]$1[/youtube]', $body);
523
524                                 $config = HTMLPurifier_Config::createDefault();
525                                 $config->set('Cache.DefinitionImpl', null);
526
527                                 $purifier = new HTMLPurifier($config);
528                                 $body = $purifier->purify($body);
529                                 $body = html2bbcode($body);
530                         }
531
532                         $res['object'] .= '<content>' . $body . '</content>' . "\n";
533                 }
534
535                 $res['object'] .= '</object>' . "\n";
536         }
537
538         $rawobj = $item->get_item_tags(NAMESPACE_ACTIVITY, 'target');
539
540         if($rawobj) {
541                 $res['target'] = '<target>' . "\n";
542                 if($rawobj[0]['child'][NAMESPACE_ACTIVITY]['object-type'][0]['data']) {
543                         $res['target'] .= '<type>' . $rawobj[0]['child'][NAMESPACE_ACTIVITY]['object-type'][0]['data'] . '</type>' . "\n";
544                 }       
545                 if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['id'][0]['data'])
546                         $res['target'] .= '<id>' . $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['id'][0]['data'] . '</id>' . "\n";
547
548                 if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'])
549                         $res['target'] .= '<link>' . encode_rel_links($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link']) . '</link>' . "\n";
550                 if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['title'][0]['data'])
551                         $res['target'] .= '<title>' . $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['title'][0]['data'] . '</title>' . "\n";
552                 if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['content'][0]['data']) {
553                         $body = $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['content'][0]['data'];
554                         if(! $body)
555                                 $body = $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['summary'][0]['data'];
556                         // preserve a copy of the original body content in case we later need to parse out any microformat information, e.g. events
557                         $res['object'] .= '<orig>' . xmlify($body) . '</orig>' . "\n";
558                         if((strpos($body,'<') !== false) || (strpos($body,'>') !== false)) {
559
560                                 $body = preg_replace('#<object[^>]+>.+?' . 'http://www.youtube.com/((?:v|cp)/[A-Za-z0-9\-_=]+).+?</object>#s',
561                                         '[youtube]$1[/youtube]', $body);
562
563                                 $config = HTMLPurifier_Config::createDefault();
564                                 $config->set('Cache.DefinitionImpl', null);
565
566                                 $purifier = new HTMLPurifier($config);
567                                 $body = $purifier->purify($body);
568                                 $body = html2bbcode($body);
569                         }
570
571                         $res['target'] .= '<content>' . $body . '</content>' . "\n";
572                 }
573
574                 $res['target'] .= '</target>' . "\n";
575         }
576
577         $arr = array('feed' => $feed, 'item' => $item, 'result' => $res);
578
579         call_hooks('parse_atom', $arr);
580
581         return $res;
582 }
583
584 function encode_rel_links($links) {
585         $o = '';
586         if(! ((is_array($links)) && (count($links))))
587                 return $o;
588         foreach($links as $link) {
589                 $o .= '<link ';
590                 if($link['attribs']['']['rel'])
591                         $o .= 'rel="' . $link['attribs']['']['rel'] . '" ';
592                 if($link['attribs']['']['type'])
593                         $o .= 'type="' . $link['attribs']['']['type'] . '" ';
594                 if($link['attribs']['']['href'])
595                         $o .= 'href="' . $link['attribs']['']['href'] . '" ';
596                 if( (x($link['attribs'],NAMESPACE_MEDIA)) && $link['attribs'][NAMESPACE_MEDIA]['width'])
597                         $o .= 'media:width="' . $link['attribs'][NAMESPACE_MEDIA]['width'] . '" ';
598                 if( (x($link['attribs'],NAMESPACE_MEDIA)) && $link['attribs'][NAMESPACE_MEDIA]['height'])
599                         $o .= 'media:height="' . $link['attribs'][NAMESPACE_MEDIA]['height'] . '" ';
600                 $o .= ' />' . "\n" ;
601         }
602         return xmlify($o);
603 }
604
605 function item_store($arr,$force_parent = false) {
606
607         if($arr['gravity'])
608                 $arr['gravity'] = intval($arr['gravity']);
609         elseif($arr['parent-uri'] == $arr['uri'])
610                 $arr['gravity'] = 0;
611         elseif(activity_match($arr['verb'],ACTIVITY_POST))
612                 $arr['gravity'] = 6;
613         else      
614                 $arr['gravity'] = 6;   // extensible catchall
615
616         if(! x($arr,'type'))
617                 $arr['type']      = 'remote';
618
619         // Shouldn't happen but we want to make absolutely sure it doesn't leak from a plugin.
620
621         if((strpos($arr['body'],'<') !== false) || (strpos($arr['body'],'>') !== false)) 
622                 $arr['body'] = strip_tags($arr['body']);
623
624
625         $arr['wall']          = ((x($arr,'wall'))          ? intval($arr['wall'])                : 0);
626         $arr['uri']           = ((x($arr,'uri'))           ? notags(trim($arr['uri']))           : random_string());
627         $arr['author-name']   = ((x($arr,'author-name'))   ? notags(trim($arr['author-name']))   : '');
628         $arr['author-link']   = ((x($arr,'author-link'))   ? notags(trim($arr['author-link']))   : '');
629         $arr['author-avatar'] = ((x($arr,'author-avatar')) ? notags(trim($arr['author-avatar'])) : '');
630         $arr['owner-name']    = ((x($arr,'owner-name'))    ? notags(trim($arr['owner-name']))    : '');
631         $arr['owner-link']    = ((x($arr,'owner-link'))    ? notags(trim($arr['owner-link']))    : '');
632         $arr['owner-avatar']  = ((x($arr,'owner-avatar'))  ? notags(trim($arr['owner-avatar']))  : '');
633         $arr['created']       = ((x($arr,'created') !== false) ? datetime_convert('UTC','UTC',$arr['created']) : datetime_convert());
634         $arr['edited']        = ((x($arr,'edited')  !== false) ? datetime_convert('UTC','UTC',$arr['edited'])  : datetime_convert());
635         $arr['changed']       = datetime_convert();
636         $arr['title']         = ((x($arr,'title'))         ? notags(trim($arr['title']))         : '');
637         $arr['location']      = ((x($arr,'location'))      ? notags(trim($arr['location']))      : '');
638         $arr['coord']         = ((x($arr,'coord'))         ? notags(trim($arr['coord']))         : '');
639         $arr['last-child']    = ((x($arr,'last-child'))    ? intval($arr['last-child'])          : 0 );
640         $arr['visible']       = ((x($arr,'visible') !== false) ? intval($arr['visible'])         : 1 );
641         $arr['deleted']       = 0;
642         $arr['parent-uri']    = ((x($arr,'parent-uri'))    ? notags(trim($arr['parent-uri']))    : '');
643         $arr['verb']          = ((x($arr,'verb'))          ? notags(trim($arr['verb']))          : '');
644         $arr['object-type']   = ((x($arr,'object-type'))   ? notags(trim($arr['object-type']))   : '');
645         $arr['object']        = ((x($arr,'object'))        ? trim($arr['object'])                : '');
646         $arr['target-type']   = ((x($arr,'target-type'))   ? notags(trim($arr['target-type']))   : '');
647         $arr['target']        = ((x($arr,'target'))        ? trim($arr['target'])                : '');
648         $arr['plink']         = ((x($arr,'plink'))         ? notags(trim($arr['plink']))         : '');
649         $arr['allow_cid']     = ((x($arr,'allow_cid'))     ? trim($arr['allow_cid'])             : '');
650         $arr['allow_gid']     = ((x($arr,'allow_gid'))     ? trim($arr['allow_gid'])             : '');
651         $arr['deny_cid']      = ((x($arr,'deny_cid'))      ? trim($arr['deny_cid'])              : '');
652         $arr['deny_gid']      = ((x($arr,'deny_gid'))      ? trim($arr['deny_gid'])              : '');
653         $arr['private']       = ((x($arr,'private'))       ? intval($arr['private'])             : 0 );
654         $arr['body']          = ((x($arr,'body'))          ? trim($arr['body'])                  : '');
655         $arr['tag']           = ((x($arr,'tag'))           ? notags(trim($arr['tag']))           : '');
656         $arr['attach']        = ((x($arr,'attach'))        ? notags(trim($arr['attach']))        : '');
657
658         if($arr['parent-uri'] === $arr['uri']) {
659                 $parent_id = 0;
660                 $allow_cid = $arr['allow_cid'];
661                 $allow_gid = $arr['allow_gid'];
662                 $deny_cid  = $arr['deny_cid'];
663                 $deny_gid  = $arr['deny_gid'];
664         }
665         else { 
666
667                 // find the parent and snarf the item id and ACL's
668                 // and anything else we need to inherit
669
670                 $r = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
671                         dbesc($arr['parent-uri']),
672                         intval($arr['uid'])
673                 );
674
675                 if(count($r)) {
676
677                         // is the new message multi-level threaded?
678                         // even though we don't support it now, preserve the info
679                         // and re-attach to the conversation parent.
680
681                         if($r[0]['uri'] != $r[0]['parent-uri']) {
682                                 $arr['thr-parent'] = $arr['parent-uri'];
683                                 $arr['parent-uri'] = $r[0]['parent-uri'];
684                         }
685
686                         $parent_id      = $r[0]['id'];
687                         $parent_deleted = $r[0]['deleted'];
688                         $allow_cid      = $r[0]['allow_cid'];
689                         $allow_gid      = $r[0]['allow_gid'];
690                         $deny_cid       = $r[0]['deny_cid'];
691                         $deny_gid       = $r[0]['deny_gid'];
692                         $arr['wall']    = $r[0]['wall'];
693                 }
694                 else {
695
696                         // Allow one to see reply tweets from status.net even when
697                         // we don't have or can't see the original post.
698
699                         if($force_parent) {
700                                 logger('item_store: $force_parent=true, reply converted to top-level post.');
701                                 $parent_id = 0;
702                                 $arr['thr-parent'] = $arr['parent-uri'];
703                                 $arr['parent-uri'] = $arr['uri'];
704                         }
705                         else {
706                                 logger('item_store: item parent was not found - ignoring item');
707                                 return 0;
708                         }
709                 }
710         }
711
712         call_hooks('post_remote',$arr);
713
714         dbesc_array($arr);
715
716         logger('item_store: ' . print_r($arr,true), LOGGER_DATA);
717
718         $r = dbq("INSERT INTO `item` (`" 
719                         . implode("`, `", array_keys($arr)) 
720                         . "`) VALUES ('" 
721                         . implode("', '", array_values($arr)) 
722                         . "')" );
723
724         // find the item we just created
725
726         $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
727                 $arr['uri'],           // already dbesc'd
728                 intval($arr['uid'])
729         );
730         if(count($r)) {
731                 $current_post = $r[0]['id'];
732                 logger('item_store: created item ' . $current_post);
733         }
734         else {
735                 logger('item_store: could not locate created item');
736                 return 0;
737         }
738
739         if((! $parent_id) || ($arr['parent-uri'] === $arr['uri']))      
740                 $parent_id = $current_post;
741
742         if(strlen($allow_cid) || strlen($allow_gid) || strlen($deny_cid) || strlen($deny_gid))
743                 $private = 1;
744         else
745                 $private = $arr['private']; 
746
747         // Set parent id - and also make sure to inherit the parent's ACL's.
748
749         $r = q("UPDATE `item` SET `parent` = %d, `allow_cid` = '%s', `allow_gid` = '%s',
750                 `deny_cid` = '%s', `deny_gid` = '%s', `private` = %d, `deleted` = %d WHERE `id` = %d LIMIT 1",
751                 intval($parent_id),
752                 dbesc($allow_cid),
753                 dbesc($allow_gid),
754                 dbesc($deny_cid),
755                 dbesc($deny_gid),
756                 intval($private),
757                 intval($parent_deleted),
758                 intval($current_post)
759         );
760
761         /**
762          * If this is now the last-child, force all _other_ children of this parent to *not* be last-child
763          */
764
765         if($arr['last-child']) {
766                 $r = q("UPDATE `item` SET `last-child` = 0 WHERE `parent-uri` = '%s' AND `uid` = %d AND `id` != %d",
767                         dbesc($arr['uri']),
768                         intval($arr['uid']),
769                         intval($current_post)
770                 );
771         }
772
773         return $current_post;
774 }
775
776 function get_item_contact($item,$contacts) {
777         if(! count($contacts) || (! is_array($item)))
778                 return false;
779         foreach($contacts as $contact) {
780                 if($contact['id'] == $item['contact-id']) {
781                         return $contact;
782                         break; // NOTREACHED
783                 }
784         }
785         return false;
786 }
787
788
789 function dfrn_deliver($owner,$contact,$atom, $dissolve = false) {
790
791         $a = get_app();
792
793         if((! strlen($contact['issued-id'])) && (! $contact['duplex']) && (! ($owner['page-flags'] == PAGE_COMMUNITY)))
794                 return 3;
795
796         $idtosend = $orig_id = (($contact['dfrn-id']) ? $contact['dfrn-id'] : $contact['issued-id']);
797
798         if($contact['duplex'] && $contact['dfrn-id'])
799                 $idtosend = '0:' . $orig_id;
800         if($contact['duplex'] && $contact['issued-id'])
801                 $idtosend = '1:' . $orig_id;            
802
803         $rino = ((function_exists('mcrypt_encrypt')) ? 1 : 0);
804
805         $rino_enable = get_config('system','rino_encrypt');
806
807         if(! $rino_enable)
808                 $rino = 0;
809
810         $url = $contact['notify'] . '&dfrn_id=' . $idtosend . '&dfrn_version=' . DFRN_PROTOCOL_VERSION . (($rino) ? '&rino=1' : '');
811
812         logger('dfrn_deliver: ' . $url);
813
814         $xml = fetch_url($url);
815
816         $curl_stat = $a->get_curl_code();
817         if(! $curl_stat)
818                 return(-1); // timed out
819
820         logger('dfrn_deliver: ' . $xml);
821
822         if(! $xml)
823                 return 3;
824
825         if(strpos($xml,'<?xml') === false) {
826                 logger('dfrn_deliver: no valid XML returned');
827                 logger('dfrn_deliver: returned XML: ' . $xml, LOGGER_DATA);
828                 return 3;
829         }
830
831         $res = parse_xml_string($xml);
832
833         if((intval($res->status) != 0) || (! strlen($res->challenge)) || (! strlen($res->dfrn_id)))
834                 return (($res->status) ? $res->status : 3);
835
836         $postvars     = array();
837         $sent_dfrn_id = hex2bin((string) $res->dfrn_id);
838         $challenge    = hex2bin((string) $res->challenge);
839         $dfrn_version = (float) (($res->dfrn_version) ? $res->dfrn_version : 2.0);
840         $rino_allowed = ((intval($res->rino) === 1) ? 1 : 0);
841
842         $final_dfrn_id = '';
843
844
845         if(($contact['duplex'] && strlen($contact['pubkey'])) || ($owner['page-flags'] == PAGE_COMMUNITY)) {
846                 openssl_public_decrypt($sent_dfrn_id,$final_dfrn_id,$contact['pubkey']);
847                 openssl_public_decrypt($challenge,$postvars['challenge'],$contact['pubkey']);
848         }
849         else {
850                 openssl_private_decrypt($sent_dfrn_id,$final_dfrn_id,$contact['prvkey']);
851                 openssl_private_decrypt($challenge,$postvars['challenge'],$contact['prvkey']);
852         }
853
854         $final_dfrn_id = substr($final_dfrn_id, 0, strpos($final_dfrn_id, '.'));
855
856         if(strpos($final_dfrn_id,':') == 1)
857                 $final_dfrn_id = substr($final_dfrn_id,2);
858
859         if($final_dfrn_id != $orig_id) {
860                 logger('dfrn_deliver: wrong dfrn_id.');
861                 // did not decode properly - cannot trust this site 
862                 return 3;
863         }
864
865         $postvars['dfrn_id']      = $idtosend;
866         $postvars['dfrn_version'] = DFRN_PROTOCOL_VERSION;
867         if($dissolve)
868                 $postvars['dissolve'] = '1';
869
870
871         if((($contact['rel']) && ($contact['rel'] != REL_FAN) && (! $contact['blocked'])) || ($owner['page-flags'] == PAGE_COMMUNITY)) {
872                 $postvars['data'] = $atom;
873                 $postvars['perm'] = 'rw';
874         }
875         else {
876                 $postvars['data'] = str_replace('<dfrn:comment-allow>1','<dfrn:comment-allow>0',$atom);
877                 $postvars['perm'] = 'r';
878         }
879
880         if($rino && $rino_allowed && (! $dissolve)) {
881                 $key = substr(random_string(),0,16);
882                 $data = bin2hex(aes_encrypt($postvars['data'],$key));
883                 $postvars['data'] = $data;
884                 logger('rino: sent key = ' . $key);     
885
886
887                 if($dfrn_version >= 2.1) {      
888                         if(($contact['duplex'] && strlen($contact['pubkey'])) || ($owner['page-flags'] == PAGE_COMMUNITY)) {
889                                 openssl_public_encrypt($key,$postvars['key'],$contact['pubkey']);
890                         }
891                         else {
892                                 openssl_private_encrypt($key,$postvars['key'],$contact['prvkey']);
893                         }
894                 }
895                 else {
896                         if(($contact['duplex'] && strlen($contact['prvkey'])) || ($owner['page-flags'] == PAGE_COMMUNITY)) {
897                                 openssl_private_encrypt($key,$postvars['key'],$contact['prvkey']);
898                         }
899                         else {
900                                 openssl_public_encrypt($key,$postvars['key'],$contact['pubkey']);
901                         }
902                 }
903
904                 logger('md5 rawkey ' . md5($postvars['key']));
905
906                 $postvars['key'] = bin2hex($postvars['key']);
907         }
908
909         logger('dfrn_deliver: ' . "SENDING: " . print_r($postvars,true), LOGGER_DATA);
910
911         $xml = post_url($contact['notify'],$postvars);
912
913         logger('dfrn_deliver: ' . "RECEIVED: " . $xml, LOGGER_DATA);
914
915         $curl_stat = $a->get_curl_code();
916         if((! $curl_stat) || (! strlen($xml)))
917                 return(-1); // timed out
918
919         if(strpos($xml,'<?xml') === false) {
920                 logger('dfrn_deliver: phase 2: no valid XML returned');
921                 logger('dfrn_deliver: phase 2: returned XML: ' . $xml, LOGGER_DATA);
922                 return 3;
923         }
924
925         $res = parse_xml_string($xml);
926
927         return $res->status; 
928 }
929
930
931 /**
932  *
933  * consume_feed - process atom feed and update anything/everything we might need to update
934  *
935  * $xml = the (atom) feed to consume - RSS isn't as fully supported but may work for simple feeds.
936  *
937  * $importer = the contact_record (joined to user_record) of the local user who owns this relationship.
938  *             It is this person's stuff that is going to be updated.
939  * $contact =  the person who is sending us stuff. If not set, we MAY be processing a "follow" activity
940  *             from an external network and MAY create an appropriate contact record. Otherwise, we MUST 
941  *             have a contact record.
942  * $hub = should we find a hub declation in the feed, pass it back to our calling process, who might (or 
943  *        might not) try and subscribe to it.
944  *
945  */
946
947 function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $secure_feed = false) {
948
949         require_once('simplepie/simplepie.inc');
950
951         $feed = new SimplePie();
952         $feed->set_raw_data($xml);
953         if($datedir)
954                 $feed->enable_order_by_date(true);
955         else
956                 $feed->enable_order_by_date(false);
957         $feed->init();
958
959         if($feed->error())
960                 logger('consume_feed: Error parsing XML: ' . $feed->error());
961
962         $permalink = $feed->get_permalink();
963
964         // Check at the feed level for updated contact name and/or photo
965
966         $name_updated  = '';
967         $new_name = '';
968         $photo_timestamp = '';
969         $photo_url = '';
970         $birthday = '';
971
972         $hubs = $feed->get_links('hub');
973
974         if(count($hubs))
975                 $hub = implode(',', $hubs);
976
977         $rawtags = $feed->get_feed_tags( SIMPLEPIE_NAMESPACE_ATOM_10, 'author');
978         if($rawtags) {
979                 $elems = $rawtags[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10];
980                 if($elems['name'][0]['attribs'][NAMESPACE_DFRN]['updated']) {
981                         $name_updated = $elems['name'][0]['attribs'][NAMESPACE_DFRN]['updated'];
982                         $new_name = $elems['name'][0]['data'];
983                 } 
984                 if((x($elems,'link')) && ($elems['link'][0]['attribs']['']['rel'] === 'photo') && ($elems['link'][0]['attribs'][NAMESPACE_DFRN]['updated'])) {
985                         $photo_timestamp = datetime_convert('UTC','UTC',$elems['link'][0]['attribs'][NAMESPACE_DFRN]['updated']);
986                         $photo_url = $elems['link'][0]['attribs']['']['href'];
987                 }
988
989                 if((x($rawtags[0]['child'], NAMESPACE_DFRN)) && (x($rawtags[0]['child'][NAMESPACE_DFRN],'birthday'))) {
990                         $birthday = datetime_convert('UTC','UTC', $rawtags[0]['child'][NAMESPACE_DFRN]['birthday'][0]['data']);
991                 }
992         }
993
994         if((is_array($contact)) && ($photo_timestamp) && (strlen($photo_url)) && ($photo_timestamp > $contact['avatar-date'])) {
995                 logger('consume_feed: Updating photo for ' . $contact['name']);
996                 require_once("Photo.php");
997                 $photo_failure = false;
998                 $have_photo = false;
999
1000                 $r = q("SELECT `resource-id` FROM `photo` WHERE `contact-id` = %d AND `uid` = %d LIMIT 1",
1001                         intval($contact['id']),
1002                         intval($contact['uid'])
1003                 );
1004                 if(count($r)) {
1005                         $resource_id = $r[0]['resource-id'];
1006                         $have_photo = true;
1007                 }
1008                 else {
1009                         $resource_id = photo_new_resource();
1010                 }
1011                         
1012                 $img_str = fetch_url($photo_url,true);
1013                 $img = new Photo($img_str);
1014                 if($img->is_valid()) {
1015                         if($have_photo) {
1016                                 q("DELETE FROM `photo` WHERE `resource-id` = '%s' AND `contact-id` = %d AND `uid` = %d",
1017                                         dbesc($resource_id),
1018                                         intval($contact['id']),
1019                                         intval($contact['uid'])
1020                                 );
1021                         }
1022                                 
1023                         $img->scaleImageSquare(175);
1024                                 
1025                         $hash = $resource_id;
1026                         $r = $img->store($contact['uid'], $contact['id'], $hash, basename($photo_url), t('Contact Photos') , 4);
1027                                 
1028                         $img->scaleImage(80);
1029                         $r = $img->store($contact['uid'], $contact['id'], $hash, basename($photo_url), t('Contact Photos') , 5);
1030
1031                         $img->scaleImage(48);
1032                         $r = $img->store($contact['uid'], $contact['id'], $hash, basename($photo_url), t('Contact Photos') , 6);
1033
1034                         $a = get_app();
1035
1036                         q("UPDATE `contact` SET `avatar-date` = '%s', `photo` = '%s', `thumb` = '%s', `micro` = '%s'  
1037                                 WHERE `uid` = %d AND `id` = %d LIMIT 1",
1038                                 dbesc(datetime_convert()),
1039                                 dbesc($a->get_baseurl() . '/photo/' . $hash . '-4.jpg'),
1040                                 dbesc($a->get_baseurl() . '/photo/' . $hash . '-5.jpg'),
1041                                 dbesc($a->get_baseurl() . '/photo/' . $hash . '-6.jpg'),
1042                                 intval($contact['uid']),
1043                                 intval($contact['id'])
1044                         );
1045                 }
1046         }
1047
1048         if((is_array($contact)) && ($name_updated) && (strlen($new_name)) && ($name_updated > $contact['name-date'])) {
1049                 q("UPDATE `contact` SET `name` = '%s', `name-date` = '%s' WHERE `uid` = %d AND `id` = %d LIMIT 1",
1050                         dbesc(notags(trim($new_name))),
1051                         dbesc(datetime_convert()),
1052                         intval($contact['uid']),
1053                         intval($contact['id'])
1054                 );
1055         }
1056
1057         if(strlen($birthday)) {
1058                 if(substr($birthday,0,4) != $contact['bdyear']) {
1059                         logger('consume_feed: updating birthday: ' . $birthday);
1060
1061                         /**
1062                          *
1063                          * Add new birthday event for this person
1064                          *
1065                          * $bdtext is just a readable placeholder in case the event is shared
1066                          * with others. We will replace it during presentation to our $importer
1067                          * to contain a sparkle link and perhaps a photo. 
1068                          *
1069                          */
1070                          
1071                         $bdtext = t('Birthday:') . ' [url=' . $contact['url'] . ']' . $contact['name'] . '[/url]' ;
1072
1073
1074                         $r = q("INSERT INTO `event` (`uid`,`cid`,`created`,`edited`,`start`,`finish`,`desc`,`type`)
1075                                 VALUES ( %d, %d, '%s', '%s', '%s', '%s', '%s', '%s' ) ",
1076                                 intval($contact['uid']),
1077                                 intval($contact['id']),
1078                                 dbesc(datetime_convert()),
1079                                 dbesc(datetime_convert()),
1080                                 dbesc(datetime_convert('UTC','UTC', $birthday)),
1081                                 dbesc(datetime_convert('UTC','UTC', $birthday . ' + 1 day ')),
1082                                 dbesc($bdtext),
1083                                 dbesc('birthday')
1084                         );
1085                         
1086
1087                         // update bdyear
1088
1089                         q("UPDATE `contact` SET `bdyear` = '%s' WHERE `uid` = %d AND `id` = %d LIMIT 1",
1090                                 dbesc(substr($birthday,0,4)),
1091                                 intval($contact['uid']),
1092                                 intval($contact['id'])
1093                         );
1094
1095                         // This function is called twice without reloading the contact
1096                         // Make sure we only create one event. This is why &$contact 
1097                         // is a reference var in this function
1098
1099                         $contact['bdyear'] = substr($birthday,0,4);
1100                 }
1101
1102         }
1103
1104
1105         // process any deleted entries
1106
1107         $del_entries = $feed->get_feed_tags(NAMESPACE_TOMB, 'deleted-entry');
1108         if(is_array($del_entries) && count($del_entries)) {
1109                 foreach($del_entries as $dentry) {
1110                         $deleted = false;
1111                         if(isset($dentry['attribs']['']['ref'])) {
1112                                 $uri = $dentry['attribs']['']['ref'];
1113                                 $deleted = true;
1114                                 if(isset($dentry['attribs']['']['when'])) {
1115                                         $when = $dentry['attribs']['']['when'];
1116                                         $when = datetime_convert('UTC','UTC', $when, 'Y-m-d H:i:s');
1117                                 }
1118                                 else
1119                                         $when = datetime_convert('UTC','UTC','now','Y-m-d H:i:s');
1120                         }
1121                         if($deleted && is_array($contact)) {
1122                                 $r = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `uid` = %d AND `contact-id` = %d LIMIT 1",
1123                                         dbesc($uri),
1124                                         intval($importer['uid']),
1125                                         intval($contact['id'])
1126                                 );
1127                                 if(count($r)) {
1128                                         $item = $r[0];
1129
1130                                         if(! $item['deleted'])
1131                                                 logger('consume_feed: deleting item ' . $item['id'] . ' uri=' . $item['uri'], LOGGER_DEBUG);
1132
1133                                         if($item['uri'] == $item['parent-uri']) {
1134                                                 $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s',
1135                                                         `body` = '', `title` = ''
1136                                                         WHERE `parent-uri` = '%s' AND `uid` = %d",
1137                                                         dbesc($when),
1138                                                         dbesc(datetime_convert()),
1139                                                         dbesc($item['uri']),
1140                                                         intval($importer['uid'])
1141                                                 );
1142                                         }
1143                                         else {
1144                                                 $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s',
1145                                                         `body` = '', `title` = '' 
1146                                                         WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1147                                                         dbesc($when),
1148                                                         dbesc(datetime_convert()),
1149                                                         dbesc($uri),
1150                                                         intval($importer['uid'])
1151                                                 );
1152                                                 if($item['last-child']) {
1153                                                         // ensure that last-child is set in case the comment that had it just got wiped.
1154                                                         q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d ",
1155                                                                 dbesc(datetime_convert()),
1156                                                                 dbesc($item['parent-uri']),
1157                                                                 intval($item['uid'])
1158                                                         );
1159                                                         // who is the last child now? 
1160                                                         $r = q("SELECT `id` FROM `item` WHERE `parent-uri` = '%s' AND `type` != 'activity' AND `deleted` = 0 AND `uid` = %d 
1161                                                                 ORDER BY `created` DESC LIMIT 1",
1162                                                                         dbesc($item['parent-uri']),
1163                                                                         intval($importer['uid'])
1164                                                         );
1165                                                         if(count($r)) {
1166                                                                 q("UPDATE `item` SET `last-child` = 1 WHERE `id` = %d LIMIT 1",
1167                                                                         intval($r[0]['id'])
1168                                                                 );
1169                                                         }
1170                                                 }       
1171                                         }
1172                                 }       
1173                         }
1174                 }
1175         }
1176
1177         // Now process the feed
1178
1179         if($feed->get_item_quantity()) {                
1180
1181                 logger('consume_feed: feed item count = ' . $feed->get_item_quantity());
1182
1183         // in inverse date order
1184                 if ($datedir)
1185                         $items = array_reverse($feed->get_items());
1186                 else
1187                         $items = $feed->get_items();
1188
1189
1190                 foreach($items as $item) {
1191
1192                         $is_reply = false;              
1193                         $item_id = $item->get_id();
1194                         $rawthread = $item->get_item_tags( NAMESPACE_THREAD,'in-reply-to');
1195                         if(isset($rawthread[0]['attribs']['']['ref'])) {
1196                                 $is_reply = true;
1197                                 $parent_uri = $rawthread[0]['attribs']['']['ref'];
1198                         }
1199
1200                         if(($is_reply) && is_array($contact)) {
1201
1202                                 // Have we seen it? If not, import it.
1203         
1204                                 $item_id  = $item->get_id();
1205                                 $datarray = get_atom_elements($feed,$item);
1206
1207                                 $r = q("SELECT `uid`, `last-child`, `edited`, `body` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1208                                         dbesc($item_id),
1209                                         intval($importer['uid'])
1210                                 );
1211
1212                                 // Update content if 'updated' changes
1213
1214                                 if(count($r)) {
1215                                         if((x($datarray,'edited') !== false) && (datetime_convert('UTC','UTC',$datarray['edited']) !== $r[0]['edited'])) {  
1216                                                 $r = q("UPDATE `item` SET `body` = '%s', `edited` = '%s' WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1217                                                         dbesc($datarray['body']),
1218                                                         dbesc(datetime_convert('UTC','UTC',$datarray['edited'])),
1219                                                         dbesc($item_id),
1220                                                         intval($importer['uid'])
1221                                                 );
1222                                         }
1223
1224                                         // update last-child if it changes
1225
1226                                         $allow = $item->get_item_tags( NAMESPACE_DFRN, 'comment-allow');
1227                                         if(($allow) && ($allow[0]['data'] != $r[0]['last-child'])) {
1228                                                 $r = q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d",
1229                                                         dbesc(datetime_convert()),
1230                                                         dbesc($parent_uri),
1231                                                         intval($importer['uid'])
1232                                                 );
1233                                                 $r = q("UPDATE `item` SET `last-child` = %d , `changed` = '%s'  WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1234                                                         intval($allow[0]['data']),
1235                                                         dbesc(datetime_convert()),
1236                                                         dbesc($item_id),
1237                                                         intval($importer['uid'])
1238                                                 );
1239                                         }
1240                                         continue;
1241                                 }
1242
1243                                 $force_parent = false;
1244                                 if($contact['network'] === 'stat') {
1245                                         $force_parent = true;
1246                                         if(strlen($datarray['title']))
1247                                                 unset($datarray['title']);
1248                                         $r = q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d",
1249                                                 dbesc(datetime_convert()),
1250                                                 dbesc($parent_uri),
1251                                                 intval($importer['uid'])
1252                                         );
1253                                         $datarray['last-child'] = 1;
1254                                 }
1255
1256                                 if(($contact['network'] === 'feed') || (! strlen($contact['notify']))) {
1257                                         // one way feed - no remote comment ability
1258                                         $datarray['last-child'] = 0;
1259                                 }
1260                                 $datarray['parent-uri'] = $parent_uri;
1261                                 $datarray['uid'] = $importer['uid'];
1262                                 $datarray['contact-id'] = $contact['id'];
1263                                 if((activity_match($datarray['verb'],ACTIVITY_LIKE)) || (activity_match($datarray['verb'],ACTIVITY_DISLIKE))) {
1264                                         $datarray['type'] = 'activity';
1265                                         $datarray['gravity'] = GRAVITY_LIKE;
1266                                 }
1267
1268                                 $r = item_store($datarray,$force_parent);
1269                                 continue;
1270                         }
1271
1272                         else {
1273
1274                                 // Head post of a conversation. Have we seen it? If not, import it.
1275
1276                                 $item_id  = $item->get_id();
1277
1278                                 $datarray = get_atom_elements($feed,$item);
1279
1280                                 $r = q("SELECT `uid`, `last-child`, `edited`, `body` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1281                                         dbesc($item_id),
1282                                         intval($importer['uid'])
1283                                 );
1284
1285                                 // Update content if 'updated' changes
1286
1287                                 if(count($r)) {
1288                                         if((x($datarray,'edited') !== false) && (datetime_convert('UTC','UTC',$datarray['edited']) !== $r[0]['edited'])) {  
1289                                                 $r = q("UPDATE `item` SET `body` = '%s', `edited` = '%s' WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1290                                                         dbesc($datarray['body']),
1291                                                         dbesc(datetime_convert('UTC','UTC',$datarray['edited'])),
1292                                                         dbesc($item_id),
1293                                                         intval($importer['uid'])
1294                                                 );
1295                                         }
1296
1297                                         // update last-child if it changes
1298
1299                                         $allow = $item->get_item_tags( NAMESPACE_DFRN, 'comment-allow');
1300                                         if($allow && $allow[0]['data'] != $r[0]['last-child']) {
1301                                                 $r = q("UPDATE `item` SET `last-child` = %d , `changed` = '%s' WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1302                                                         intval($allow[0]['data']),
1303                                                         dbesc(datetime_convert()),
1304                                                         dbesc($item_id),
1305                                                         intval($importer['uid'])
1306                                                 );
1307                                         }
1308                                         continue;
1309                                 }
1310
1311                                 if(activity_match($datarray['verb'],ACTIVITY_FOLLOW)) {
1312                                         logger('consume-feed: New follower');
1313                                         new_follower($importer,$contact,$datarray,$item);
1314                                         return;
1315                                 }
1316                                 if(activity_match($datarray['verb'],ACTIVITY_UNFOLLOW))  {
1317                                         lose_follower($importer,$contact,$datarray,$item);
1318                                         return;
1319                                 }
1320                                 if(! is_array($contact))
1321                                         return;
1322
1323                                 if($contact['network'] === 'stat' || stristr($permalink,'twitter.com')) {
1324                                         if(strlen($datarray['title']))
1325                                                 unset($datarray['title']);
1326                                         $datarray['last-child'] = 1;
1327                                 }
1328
1329                                 if(($contact['network'] === 'feed') || (! strlen($contact['notify']))) {
1330                                         // one way feed - no remote comment ability
1331                                         $datarray['last-child'] = 0;
1332                                 }
1333
1334                                 $datarray['parent-uri'] = $item_id;
1335                                 $datarray['uid'] = $importer['uid'];
1336                                 $datarray['contact-id'] = $contact['id'];
1337                                 $r = item_store($datarray);
1338                                 continue;
1339
1340                         }
1341                 }
1342         }
1343 }
1344
1345 function new_follower($importer,$contact,$datarray,$item) {
1346         $url = notags(trim($datarray['author-link']));
1347         $name = notags(trim($datarray['author-name']));
1348         $photo = notags(trim($datarray['author-avatar']));
1349
1350         $rawtag = $item->get_item_tags(NAMESPACE_ACTIVITY,'actor');
1351         if($rawtag && $rawtag[0]['child'][NAMESPACE_POCO]['preferredUsername'][0]['data'])
1352                 $nick = $rawtag[0]['child'][NAMESPACE_POCO]['preferredUsername'][0]['data'];
1353
1354         if(is_array($contact)) {
1355                 if($contact['network'] == 'stat' && $contact['rel'] == REL_FAN) {
1356                         $r = q("UPDATE `contact` SET `rel` = %d WHERE `id` = %d AND `uid` = %d LIMIT 1",
1357                                 intval(REL_BUD),
1358                                 intval($contact['id']),
1359                                 intval($importer['uid'])
1360                         );
1361                 }
1362
1363                 // send email notification to owner?
1364         }
1365         else {
1366         
1367                 // create contact record - set to readonly
1368
1369                 $r = q("INSERT INTO `contact` ( `uid`, `created`, `url`, `name`, `nick`, `photo`, `network`, `rel`, 
1370                         `blocked`, `readonly`, `pending` )
1371                         VALUES ( %d, '%s', '%s', '%s', '%s', '%s', '%s', %d, 0, 1, 1 ) ",
1372                         intval($importer['uid']),
1373                         dbesc(datetime_convert()),
1374                         dbesc($url),
1375                         dbesc($name),
1376                         dbesc($nick),
1377                         dbesc($photo),
1378                         dbesc('stat'),
1379                         intval(REL_VIP)
1380                 );
1381                 $r = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND `url` = '%s' AND `pending` = 1 AND `rel` = %d LIMIT 1",
1382                                 intval($importer['uid']),
1383                                 dbesc($url),
1384                                 intval(REL_VIP)
1385                 );
1386                 if(count($r))
1387                                 $contact_record = $r[0];
1388
1389                 // create notification  
1390                 $hash = random_string();
1391
1392                 if(is_array($contact_record)) {
1393                         $ret = q("INSERT INTO `intro` ( `uid`, `contact-id`, `blocked`, `knowyou`, `hash`, `datetime`)
1394                                 VALUES ( %d, %d, 0, 0, '%s', '%s' )",
1395                                 intval($importer['uid']),
1396                                 intval($contact_record['id']),
1397                                 dbesc($hash),
1398                                 dbesc(datetime_convert())
1399                         );
1400                 }
1401                 $r = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1",
1402                         intval($importer['uid'])
1403                 );
1404                 $a = get_app();
1405                 if(count($r)) {
1406                         if(($r[0]['notify-flags'] & NOTIFY_INTRO) && ($r[0]['page-flags'] == PAGE_NORMAL)) {
1407                                 $email_tpl = load_view_file('view/follow_notify_eml.tpl');
1408                                 $email = replace_macros($email_tpl, array(
1409                                         '$requestor' => ((strlen($name)) ? $name : t('[Name Withheld]')),
1410                                         '$url' => $url,
1411                                         '$myname' => $r[0]['username'],
1412                                         '$siteurl' => $a->get_baseurl(),
1413                                         '$sitename' => $a->config['sitename']
1414                                 ));
1415                                 $res = mail($r[0]['email'], 
1416                                         t("You have a new follower at ") . $a->config['sitename'],
1417                                         $email,
1418                                         'From: ' . t('Administrator') . '@' . $_SERVER['SERVER_NAME'] );
1419                         
1420                         }
1421                 }
1422         }
1423 }
1424
1425 function lose_follower($importer,$contact,$datarray,$item) {
1426
1427         if(($contact['rel'] == REL_BUD) || ($contact['rel'] == REL_FAN)) {
1428                 q("UPDATE `contact` SET `rel` = %d WHERE `id` = %d LIMIT 1",
1429                         intval(REL_FAN),
1430                         intval($contact['id'])
1431                 );
1432         }
1433         else {
1434                 contact_remove($contact['id']);
1435         }
1436 }
1437
1438
1439 function subscribe_to_hub($url,$importer,$contact) {
1440
1441         if(is_array($importer)) {
1442                 $r = q("SELECT `nickname` FROM `user` WHERE `uid` = %d LIMIT 1",
1443                         intval($importer['uid'])
1444                 );
1445         }
1446         if(! count($r))
1447                 return;
1448
1449         $push_url = get_config('system','url') . '/pubsub/' . $r[0]['nickname'] . '/' . $contact['id'];
1450
1451         // Use a single verify token, even if multiple hubs
1452
1453         $verify_token = ((strlen($contact['hub-verify'])) ? $contact['hub-verify'] : random_string());
1454
1455         $params= 'hub.mode=subscribe&hub.callback=' . urlencode($push_url) . '&hub.topic=' . urlencode($contact['poll']) . '&hub.verify=async&hub.verify_token=' . $verify_token;
1456
1457         logger('subscribe_to_hub: subscribing ' . $contact['name'] . ' to hub ' . $url . ' with verifier ' . $verify_token);
1458
1459         if(! strlen($contact['hub-verify'])) {
1460                 $r = q("UPDATE `contact` SET `hub-verify` = '%s' WHERE `id` = %d LIMIT 1",
1461                         dbesc($verify_token),
1462                         intval($contact['id'])
1463                 );
1464         }
1465
1466         post_url($url,$params);                 
1467         return;
1468
1469 }
1470
1471
1472 function atom_author($tag,$name,$uri,$h,$w,$photo) {
1473         $o = '';
1474         if(! $tag)
1475                 return $o;
1476         $name = xmlify($name);
1477         $uri = xmlify($uri);
1478         $h = intval($h);
1479         $w = intval($w);
1480         $photo = xmlify($photo);
1481
1482
1483         $o .= "<$tag>\r\n";
1484         $o .= "<name>$name</name>\r\n";
1485         $o .= "<uri>$uri</uri>\r\n";
1486         $o .= '<link rel="photo"  type="image/jpeg" media:width="' . $w . '" media:height="' . $h . '" href="' . $photo . '" />' . "\r\n";
1487         $o .= '<link rel="avatar" type="image/jpeg" media:width="' . $w . '" media:height="' . $h . '" href="' . $photo . '" />' . "\r\n";
1488
1489         call_hooks('atom_author', $o);
1490
1491         $o .= "</$tag>\r\n";
1492         return $o;
1493 }
1494
1495 function atom_entry($item,$type,$author,$owner,$comment = false) {
1496
1497         if($item['deleted'])
1498                 return '<at:deleted-entry ref="' . xmlify($item['uri']) . '" when="' . xmlify(datetime_convert('UTC','UTC',$item['edited'] . '+00:00',ATOM_TIME)) . '" />' . "\r\n";
1499
1500         $a = get_app();
1501
1502         $o = "\r\n\r\n<entry>\r\n";
1503
1504         if(is_array($author))
1505                 $o .= atom_author('author',$author['name'],$author['url'],80,80,$author['thumb']);
1506         else
1507                 $o .= atom_author('author',$item['name'],$item['url'],80,80,$item['thumb']);
1508         if(strlen($item['owner-name']))
1509                 $o .= atom_author('dfrn:owner',$item['owner-name'],$item['owner-link'],80,80,$item['owner-avatar']);
1510
1511         if($item['parent'] != $item['id'])
1512                 $o .= '<thr:in-reply-to ref="' . xmlify($item['parent-uri']) . '" type="text/html" href="' .  xmlify($a->get_baseurl() . '/display/' . $owner['nickname'] . '/' . $item['id']) . '" />' . "\r\n";
1513
1514         $o .= '<id>' . xmlify($item['uri']) . '</id>' . "\r\n";
1515         $o .= '<title>' . xmlify($item['title']) . '</title>' . "\r\n";
1516         $o .= '<published>' . xmlify(datetime_convert('UTC','UTC',$item['created'] . '+00:00',ATOM_TIME)) . '</published>' . "\r\n";
1517         $o .= '<updated>' . xmlify(datetime_convert('UTC','UTC',$item['edited'] . '+00:00',ATOM_TIME)) . '</updated>' . "\r\n";
1518         $o .= '<dfrn:env>' . base64url_encode($item['body'], true) . '</dfrn:env>' . "\r\n";
1519         $o .= '<content type="' . $type . '" >' . xmlify(($type === 'html') ? bbcode($item['body']) : $item['body']) . '</content>' . "\r\n";
1520         $o .= '<link rel="alternate" type="text/html" href="' . xmlify($a->get_baseurl() . '/display/' . $owner['nickname'] . '/' . $item['id']) . '" />' . "\r\n";
1521         if($comment)
1522                 $o .= '<dfrn:comment-allow>' . intval($item['last-child']) . '</dfrn:comment-allow>' . "\r\n";
1523
1524         if($item['location']) {
1525                 $o .= '<dfrn:location>' . xmlify($item['location']) . '</dfrn:location>' . "\r\n";
1526                 $o .= '<poco:address><poco:formatted>' . xmlify($item['location']) . '</poco:formatted></poco:address>' . "\r\n";
1527         }
1528
1529         if($item['coord'])
1530                 $o .= '<georss:point>' . xmlify($item['coord']) . '</georss:point>' . "\r\n";
1531
1532         if(($item['private']) || strlen($item['allow_cid']) || strlen($item['allow_gid']) || strlen($item['deny_cid']) || strlen($item['deny_gid']))
1533                 $o .= '<dfrn:private>1</dfrn:private>' . "\r\n";
1534
1535         $verb = construct_verb($item);
1536         $o .= '<as:verb>' . xmlify($verb) . '</as:verb>' . "\r\n";
1537         $actobj = construct_activity_object($item);
1538         if(strlen($actobj))
1539                 $o .= $actobj;
1540         $actarg = construct_activity_target($item);
1541         if(strlen($actarg))
1542                 $o .= $actarg;
1543
1544         $tags = item_getfeedtags($item);
1545         if(count($tags)) {
1546                 foreach($tags as $t) {
1547                         $o .= '<category scheme="X-DFRN:' . xmlify($t[0]) . ':' . xmlify($t[1]) . '" term="' . xmlify($t[2]) . '" />' . "\r\n";
1548                 }
1549         }
1550
1551         $o .= item_getfeedattach($item);
1552
1553         $mentioned = get_mentions($item);
1554         if($mentioned)
1555                 $o .= $mentioned;
1556         
1557         call_hooks('atom_entry', $o);
1558
1559         $o .= '</entry>' . "\r\n";
1560         
1561         return $o;
1562 }
1563
1564 function item_getfeedtags($item) {
1565         $ret = array();
1566         $matches = false;
1567         $cnt = preg_match_all('|\#\[url\=(.+?)\](.+?)\[\/url\]|',$item['tag'],$matches);
1568         if($cnt) {
1569                 for($x = 0; $x < count($matches); $x ++) {
1570                         if($matches[1][$x])
1571                                 $ret[] = array('#',$matches[1][$x], $matches[2][$x]);
1572                 }
1573         }
1574         $matches = false; 
1575         $cnt = preg_match_all('|\@\[url\=(.+?)\](.+?)\[\/url\]|',$item['tag'],$matches);
1576         if($cnt) {
1577                 for($x = 0; $x < count($matches); $x ++) {
1578                         if($matches[1][$x])
1579                                 $ret[] = array('#',$matches[1][$x], $matches[2][$x]);
1580                 }
1581         } 
1582         return $ret;
1583 }
1584
1585 function item_getfeedattach($item) {
1586         $ret = '';
1587         $arr = explode(',',$item['attach']);
1588         if(count($arr)) {
1589                 foreach($arr as $r) {
1590                         $matches = false;
1591                         $cnt = preg_match('|\<a href=\"(.+?)\" size=\"(.+?)\" type=\"(.+?)\" >(.+?)</a>|',$r,$matches);
1592                         if($cnt) {
1593                                 $ret .= '<link rel="enclosure" href="' . xmlify($matches[1]) . '" type="' . xmlify($matches[3]) . '" ';
1594                                 if(intval($matches[2]))
1595                                         $ret .= 'size="' . intval($matches[2]) . '" ';
1596                                 if($matches[4] !== ' ')
1597                                         $ret .= 'title="' . xmlify($matches[4]) . '" ';
1598                                 $ret .= ' />' . "\r\n";
1599                         }
1600                 }
1601         }
1602         return $ret;
1603 }
1604
1605
1606         
1607 function item_expire($uid,$days) {
1608
1609         if((! $uid) || (! $days))
1610                 return;
1611
1612         $r = q("SELECT * FROM `item` 
1613                 WHERE `uid` = %d 
1614                 AND `created` < UTC_TIMESTAMP() - INTERVAL %d DAY 
1615                 AND `id` = `parent` 
1616                 AND `deleted` = 0",
1617                 intval($uid),
1618                 intval($days)
1619         );
1620
1621         if(! count($r))
1622                 return;
1623  
1624         logger('expire: # items=' . count($r) );
1625
1626         foreach($r as $item) {
1627
1628                 // Only expire posts, not photos and photo comments
1629
1630                 if(strlen($item['resource-id']))
1631                         continue;
1632
1633                 $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s' WHERE `id` = %d LIMIT 1",
1634                         dbesc(datetime_convert()),
1635                         dbesc(datetime_convert()),
1636                         intval($item['id'])
1637                 );
1638
1639                 // kill the kids
1640
1641                 $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d ",
1642                         dbesc(datetime_convert()),
1643                         dbesc(datetime_convert()),
1644                         dbesc($item['parent-uri']),
1645                         intval($item['uid'])
1646                 );
1647
1648         }
1649
1650         proc_run('php',"include/notifier.php","expire","$uid");
1651
1652 }