]> git.mxchange.org Git - friendica.git/blob - include/items.php
plugin/addon API landing - still things left to do before it's useful
[friendica.git] / include / items.php
1 <?php
2
3 require_once('bbcode.php');
4
5 function get_feed_for(&$a, $dfrn_id, $owner_id, $last_update, $direction = 0) {
6
7
8         // default permissions - anonymous user
9
10         $sql_extra = " 
11                 AND `allow_cid` = '' 
12                 AND `allow_gid` = '' 
13                 AND `deny_cid`  = '' 
14                 AND `deny_gid`  = '' 
15         ";
16
17         if(strlen($owner_id) && ! intval($owner_id)) {
18                 $r = q("SELECT `uid`, `nickname` FROM `user` WHERE `nickname` = '%s' LIMIT 1",
19                         dbesc($owner_id)
20                 );
21                 if(count($r)) {
22                         $owner_id = $r[0]['uid'];
23                         $owner_nick = $r[0]['nickname'];
24                 }
25         }
26
27         $r = q("SELECT * FROM `contact` WHERE `self` = 1 AND `uid` = %d LIMIT 1",
28                 intval($owner_id)
29         );
30         if(count($r)) {
31                 $owner = $r[0];
32                 $owner['nickname'] = $owner_nick;
33         }
34         else
35                 killme();
36
37         if($dfrn_id && $dfrn_id != '*') {
38
39                 $sql_extra = '';
40                 switch($direction) {
41                         case (-1):
42                                 $sql_extra = sprintf(" AND `issued-id` = '%s' ", dbesc($dfrn_id));
43                                 $my_id = $dfrn_id;
44                                 break;
45                         case 0:
46                                 $sql_extra = sprintf(" AND `issued-id` = '%s' AND `duplex` = 1 ", dbesc($dfrn_id));
47                                 $my_id = '1:' . $dfrn_id;
48                                 break;
49                         case 1:
50                                 $sql_extra = sprintf(" AND `dfrn-id` = '%s' AND `duplex` = 1 ", dbesc($dfrn_id));
51                                 $my_id = '0:' . $dfrn_id;
52                                 break;
53                         default:
54                                 return false;
55                                 break; // NOTREACHED
56                 }
57
58                 $r = q("SELECT * FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `contact`.`uid` = %d $sql_extra LIMIT 1",
59                         intval($owner_id)
60                 );
61
62                 if(! count($r))
63                         return false;
64
65                 $contact = $r[0];
66                 $groups = init_groups_visitor($contact['id']);
67
68                 if(count($groups)) {
69                         for($x = 0; $x < count($groups); $x ++) 
70                                 $groups[$x] = '<' . intval($groups[$x]) . '>' ;
71                         $gs = implode('|', $groups);
72                 }
73                 else
74                         $gs = '<<>>' ; // Impossible to match 
75
76                 $sql_extra = sprintf(" 
77                         AND ( `allow_cid` = '' OR     `allow_cid` REGEXP '<%d>' ) 
78                         AND ( `deny_cid`  = '' OR NOT `deny_cid`  REGEXP '<%d>' ) 
79                         AND ( `allow_gid` = '' OR     `allow_gid` REGEXP '%s' )
80                         AND ( `deny_gid`  = '' OR NOT `deny_gid`  REGEXP '%s') 
81                 ",
82                         intval($contact['id']),
83                         intval($contact['id']),
84                         dbesc($gs),
85                         dbesc($gs)
86                 );
87         }
88
89         if($dfrn_id === '' || $dfrn_id === '*')
90                 $sort = 'DESC';
91         else
92                 $sort = 'ASC';
93
94         if(! strlen($last_update))
95                 $last_update = 'now -30 days';
96
97         $check_date = datetime_convert('UTC','UTC',$last_update,'Y-m-d H:i:s');
98
99         $r = q("SELECT `item`.*, `item`.`id` AS `item_id`, 
100                 `contact`.`name`, `contact`.`photo`, `contact`.`url`, 
101                 `contact`.`name-date`, `contact`.`uri-date`, `contact`.`avatar-date`,
102                 `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`, 
103                 `contact`.`id` AS `contact-id`, `contact`.`uid` AS `contact-uid`
104                 FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
105                 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 
106                 AND `item`.`wall` = 1 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
107                 AND ( `item`.`edited` > '%s' OR `item`.`changed` > '%s' )
108                 $sql_extra
109                 ORDER BY `parent` %s, `created` ASC LIMIT 0, 300",
110                 intval($owner_id),
111                 dbesc($check_date),
112                 dbesc($check_date),
113                 dbesc($sort)
114         );
115
116         // Will check further below if this actually returned results.
117         // We will provide an empty feed in any case.
118
119         $items = $r;
120
121         $feed_template = load_view_file('view/atom_feed.tpl');
122
123         $atom = '';
124
125         $hub = get_config('system','huburl');
126
127         $hubxml = '';
128         if(strlen($hub)) {
129                 $hubs = explode(',', $hub);
130                 if(count($hubs)) {
131                         foreach($hubs as $h) {
132                                 $h = trim($h);
133                                 if(! strlen($h))
134                                         continue;
135                                 $hubxml .= '<link rel="hub" href="' . xmlify($h) . '" />' . "\n" ;
136                         }
137                 }
138         }
139
140         $salmon = '<link rel="salmon" href="' . xmlify($a->get_baseurl() . '/salmon/' . $owner_nick) . '" />' . "\n" ; 
141         $salmon .= '<link rel="http://salmon-protocol.org/ns/salmon-replies" href="' . xmlify($a->get_baseurl() . '/salmon/' . $owner_nick) . '" />' . "\n" ; 
142         $salmon .= '<link rel="http://salmon-protocol.org/ns/salmon-mention" href="' . xmlify($a->get_baseurl() . '/salmon/' . $owner_nick) . '" />' . "\n" ; 
143
144
145         $atom .= replace_macros($feed_template, array(
146                 '$feed_id'      => xmlify($a->get_baseurl() . '/profile/' . $owner_nick),
147                 '$feed_title'   => xmlify($owner['name']),
148                 '$feed_updated' => xmlify(datetime_convert('UTC', 'UTC', 'now' , ATOM_TIME)) ,
149                 '$hub'          => $hubxml,
150                 '$salmon'       => $salmon,
151                 '$name'         => xmlify($owner['name']),
152                 '$profile_page' => xmlify($owner['url']),
153                 '$photo'        => xmlify($owner['photo']),
154                 '$thumb'        => xmlify($owner['thumb']),
155                 '$picdate'      => xmlify(datetime_convert('UTC','UTC',$owner['avatar-date'] . '+00:00' , ATOM_TIME)) ,
156                 '$uridate'      => xmlify(datetime_convert('UTC','UTC',$owner['uri-date']    . '+00:00' , ATOM_TIME)) ,
157                 '$namdate'      => xmlify(datetime_convert('UTC','UTC',$owner['name-date']   . '+00:00' , ATOM_TIME)) 
158         ));
159
160
161         if(! count($items)) {
162                 $atom .= '</feed>' . "\r\n";
163                 return $atom;
164         }
165
166         foreach($items as $item) {
167
168                 // public feeds get html, our own nodes use bbcode
169
170                 if($dfrn_id === '*') {
171                         $type = 'html';
172                 }
173                 else {
174                         $type = 'text';
175                 }
176
177                 $atom .= atom_entry($item,$type,null,$owner,true);
178         }
179
180         $atom .= '</feed>' . "\r\n";
181         return $atom;
182 }
183
184
185 function construct_verb($item) {
186         if($item['verb'])
187                 return $item['verb'];
188         return ACTIVITY_POST;
189 }
190
191 function construct_activity_object($item) {
192
193         if($item['object']) {
194                 $o = '<as:object>' . "\r\n";
195                 $r = @simplexml_load_string($item['object']);
196                 if($r->type)
197                         $o .= '<as:object-type>' . xmlify($r->type) . '</as:object-type>' . "\r\n";
198                 if($r->id)
199                         $o .= '<id>' . xmlify($r->id) . '</id>' . "\r\n";
200                 if($r->title)
201                         $o .= '<title>' . xmlify($r->title) . '</title>' . "\r\n";
202                 if($r->link) {
203                         if(substr($r->link,0,1) === '<') 
204                                 $o .= $r->link;
205                         else
206                                 $o .= '<link rel="alternate" type="text/html" href="' . xmlify($r->link) . '" />' . "\r\n";
207                 }
208                 if($r->content)
209                         $o .= '<content type="html" >' . xmlify(bbcode($r->content)) . '</content>' . "\r\n";
210                 $o .= '</as:object>' . "\r\n";
211                 return $o;
212         }
213
214         return '';
215
216
217 function construct_activity_target($item) {
218
219         if($item['target']) {
220                 $o = '<as:target>' . "\r\n";
221                 $r = @simplexml_load_string($item['target']);
222                 if($r->type)
223                         $o .= '<as:object-type>' . xmlify($r->type) . '</as:object-type>' . "\r\n";
224                 if($r->id)
225                         $o .= '<id>' . xmlify($r->id) . '</id>' . "\r\n";
226                 if($r->title)
227                         $o .= '<title>' . xmlify($r->title) . '</title>' . "\r\n";
228                 if($r->link) {
229                         if(substr($r->link,0,1) === '<') 
230                                 $o .= $r->link;
231                         else
232                                 $o .= '<link rel="alternate" type="text/html" href="' . xmlify($r->link) . '" />' . "\r\n";
233                 }
234                 if($r->content)
235                         $o .= '<content type="html" >' . xmlify(bbcode($r->content)) . '</content>' . "\r\n";
236                 $o .= '</as:target>' . "\r\n";
237                 return $o;
238         }
239
240         return '';
241
242
243
244
245
246 function get_atom_elements($feed,$item) {
247
248         require_once('library/HTMLPurifier.auto.php');
249         require_once('include/html2bbcode.php');
250
251         $best_photo = array();
252
253         $res = array();
254
255         $author = $item->get_author();
256         $res['author-name'] = unxmlify($author->get_name());
257         $res['author-link'] = unxmlify($author->get_link());
258         $res['uri'] = unxmlify($item->get_id());
259         $res['title'] = unxmlify($item->get_title());
260         $res['body'] = unxmlify($item->get_content());
261
262
263         // look for a photo. We should check media size and find the best one,
264         // but for now let's just find any author photo
265
266         $rawauthor = $item->get_item_tags(SIMPLEPIE_NAMESPACE_ATOM_10,'author');
267
268         if($rawauthor && $rawauthor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link']) {
269                 $base = $rawauthor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'];
270                 foreach($base as $link) {
271                         if(! $res['author-avatar']) {
272                                 if($link['attribs']['']['rel'] === 'photo' || $link['attribs']['']['rel'] === 'avatar')
273                                         $res['author-avatar'] = unxmlify($link['attribs']['']['href']);
274                         }
275                 }
276         }                       
277
278         $rawactor = $item->get_item_tags(NAMESPACE_ACTIVITY, 'actor');
279
280         if($rawactor && activity_match($rawactor[0]['child'][NAMESPACE_ACTIVITY]['object-type'][0]['data'],ACTIVITY_OBJ_PERSON)) {
281                 $base = $rawactor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'];
282                 if($base && count($base)) {
283                         foreach($base as $link) {
284                                 if($link['attribs']['']['rel'] === 'alternate' && (! $res['author-link']))
285                                         $res['author-link'] = unxmlify($link['attribs']['']['href']);
286                                 if(! $res['author-avatar']) {
287                                         if($link['attribs']['']['rel'] === 'avatar' || $link['attribs']['']['rel'] === 'photo')
288                                                 $res['author-avatar'] = unxmlify($link['attribs']['']['href']);
289                                 }
290                         }
291                 }
292         }
293
294         // No photo/profile-link on the item - look at the feed level
295
296         if((! (x($res,'author-link'))) || (! (x($res,'author-avatar')))) {
297                 $rawauthor = $feed->get_feed_tags(SIMPLEPIE_NAMESPACE_ATOM_10,'author');
298                 if($rawauthor && $rawauthor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link']) {
299                         $base = $rawauthor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'];
300                         foreach($base as $link) {
301                                 if($link['attribs']['']['rel'] === 'alternate' && (! $res['author-link']))
302                                         $res['author-link'] = unxmlify($link['attribs']['']['href']);
303                                 if(! $res['author-avatar']) {
304                                         if($link['attribs']['']['rel'] === 'photo' || $link['attribs']['']['rel'] === 'avatar')
305                                                 $res['author-avatar'] = unxmlify($link['attribs']['']['href']);
306                                 }
307                         }
308                 }                       
309
310                 $rawactor = $feed->get_feed_tags(NAMESPACE_ACTIVITY, 'subject');
311
312                 if($rawactor && activity_match($rawactor[0]['child'][NAMESPACE_ACTIVITY]['object-type'][0]['data'],ACTIVITY_OBJ_PERSON)) {
313                         $base = $rawactor[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'];
314
315                         if($base && count($base)) {
316                                 foreach($base as $link) {
317                                         if($link['attribs']['']['rel'] === 'alternate' && (! $res['author-link']))
318                                                 $res['author-link'] = unxmlify($link['attribs']['']['href']);
319                                         if(! (x($res,'author-avatar'))) {
320                                                 if($link['attribs']['']['rel'] === 'avatar' || $link['attribs']['']['rel'] === 'photo')
321                                                         $res['author-avatar'] = unxmlify($link['attribs']['']['href']);
322                                         }
323                                 }
324                         }
325                 }
326         }
327
328
329         $maxlen = get_max_import_size();
330         if($maxlen && (strlen($res['body']) > $maxlen))
331                 $res['body'] = substr($res['body'],0, $maxlen);
332
333         // It isn't certain at this point whether our content is plaintext or html and we'd be foolish to trust 
334         // the content type. Our own network only emits text normally, though it might have been converted to 
335         // html if we used a pubsubhubbub transport. But if we see even one html open tag in our text, we will
336         // have to assume it is all html and needs to be purified.
337
338         // It doesn't matter all that much security wise - because before this content is used anywhere, we are 
339         // going to escape any tags we find regardless, but this lets us import a limited subset of html from 
340         // the wild, by sanitising it and converting supported tags to bbcode before we rip out any remaining 
341         // html.
342
343
344         if(strpos($res['body'],'<')) {
345
346                 $res['body'] = preg_replace('#<object[^>]+>.+?' . 'http://www.youtube.com/((?:v|cp)/[A-Za-z0-9\-_=]+).+?</object>#s',
347                         '[youtube]$1[/youtube]', $res['body']);
348
349                 $config = HTMLPurifier_Config::createDefault();
350                 $config->set('Cache.DefinitionImpl', null);
351
352                 // we shouldn't need a whitelist, because the bbcode converter
353                 // will strip out any unsupported tags.
354                 // $config->set('HTML.Allowed', 'p,b,a[href],i'); 
355
356                 $purifier = new HTMLPurifier($config);
357                 $res['body'] = $purifier->purify($res['body']);
358         }
359
360         
361         $res['body'] = html2bbcode($res['body']);
362
363
364         $allow = $item->get_item_tags(NAMESPACE_DFRN,'comment-allow');
365         if($allow && $allow[0]['data'] == 1)
366                 $res['last-child'] = 1;
367         else
368                 $res['last-child'] = 0;
369
370         $private = $item->get_item_tags(NAMESPACE_DFRN,'private');
371         if($private && $private[0]['data'] == 1)
372                 $res['private'] = 1;
373         else
374                 $res['private'] = 0;
375
376         $rawcreated = $item->get_item_tags(SIMPLEPIE_NAMESPACE_ATOM_10,'published');
377         if($rawcreated)
378                 $res['created'] = unxmlify($rawcreated[0]['data']);
379
380         $rawlocation = $item->get_item_tags(NAMESPACE_DFRN, 'location');
381         if($rawlocation)
382                 $res['location'] = unxmlify($rawlocation[0]['data']);
383
384
385         $rawedited = $item->get_item_tags(SIMPLEPIE_NAMESPACE_ATOM_10,'updated');
386         if($rawedited)
387                 $res['edited'] = unxmlify($rawcreated[0]['data']);
388
389         $rawowner = $item->get_item_tags(NAMESPACE_DFRN, 'owner');
390         if($rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['name'][0]['data'])
391                 $res['owner-name'] = unxmlify($rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['name'][0]['data']);
392         elseif($rawowner[0]['child'][NAMESPACE_DFRN]['name'][0]['data'])
393                 $res['owner-name'] = unxmlify($rawowner[0]['child'][NAMESPACE_DFRN]['name'][0]['data']);
394         if($rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['uri'][0]['data'])
395                 $res['owner-link'] = unxmlify($rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['uri'][0]['data']);
396         elseif($rawowner[0]['child'][NAMESPACE_DFRN]['uri'][0]['data'])
397                 $res['owner-link'] = unxmlify($rawowner[0]['child'][NAMESPACE_DFRN]['uri'][0]['data']);
398
399         if($rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link']) {
400                 $base = $rawowner[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'];
401
402                 foreach($base as $link) {
403                         if(! $res['owner-avatar']) {
404                                 if($link['attribs']['']['rel'] === 'photo' || $link['attribs']['']['rel'] === 'avatar')                 
405                                         $res['owner-avatar'] = unxmlify($link['attribs']['']['href']);
406                         }
407                 }
408         }
409
410         $rawgeo = $item->get_item_tags(NAMESPACE_GEORSS,'point');
411         if($rawgeo)
412                 $res['coord'] = unxmlify($rawgeo[0]['data']);
413
414
415         $rawverb = $item->get_item_tags(NAMESPACE_ACTIVITY, 'verb');
416         // select between supported verbs
417         if($rawverb)
418                 $res['verb'] = unxmlify($rawverb[0]['data']);
419
420         $rawobj = $item->get_item_tags(NAMESPACE_ACTIVITY, 'object');
421
422         if($rawobj) {
423                 $res['object'] = '<object>' . "\n";
424                 if($rawobj[0]['child'][NAMESPACE_ACTIVITY]['object-type'][0]['data']) {
425                         $res['object-type'] = $rawobj[0]['child'][NAMESPACE_ACTIVITY]['object-type'][0]['data'];
426                         $res['object'] .= '<type>' . $rawobj[0]['child'][NAMESPACE_ACTIVITY]['object-type'][0]['data'] . '</type>' . "\n";
427                 }       
428                 if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['id'][0]['data'])
429                         $res['object'] .= '<id>' . $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['id'][0]['data'] . '</id>' . "\n";
430                 if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'])
431                         $res['object'] .= '<link>' . encode_rel_links($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link']) . '</link>' . "\n";
432                 if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['title'][0]['data'])
433                         $res['object'] .= '<title>' . $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['title'][0]['data'] . '</title>' . "\n";
434                 if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['content'][0]['data']) {
435                         $body = $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['content'][0]['data'];
436                         if(! $body)
437                                 $body = $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['summary'][0]['data'];
438                         if(strpos($body,'<')) {
439
440                                 $body = preg_replace('#<object[^>]+>.+?' . 'http://www.youtube.com/((?:v|cp)/[A-Za-z0-9\-_=]+).+?</object>#s',
441                                         '[youtube]$1[/youtube]', $body);
442
443                                 $config = HTMLPurifier_Config::createDefault();
444                                 $config->set('Cache.DefinitionImpl', null);
445
446                                 $purifier = new HTMLPurifier($config);
447                                 $body = $purifier->purify($body);
448                         }
449
450                         $body = html2bbcode($body);
451                         $res['object'] .= '<content>' . $body . '</content>' . "\n";
452                 }
453
454                 $res['object'] .= '</object>' . "\n";
455         }
456
457         $rawobj = $item->get_item_tags(NAMESPACE_ACTIVITY, 'target');
458
459         if($rawobj) {
460                 $res['target'] = '<target>' . "\n";
461                 if($rawobj[0]['child'][NAMESPACE_ACTIVITY]['object-type'][0]['data']) {
462                         $res['target'] .= '<type>' . $rawobj[0]['child'][NAMESPACE_ACTIVITY]['object-type'][0]['data'] . '</type>' . "\n";
463                 }       
464                 if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['id'][0]['data'])
465                         $res['target'] .= '<id>' . $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['id'][0]['data'] . '</id>' . "\n";
466
467                 if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link'])
468                         $res['target'] .= '<link>' . encode_rel_links($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link']) . '</link>' . "\n";
469                 if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['title'][0]['data'])
470                         $res['target'] .= '<title>' . $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['title'][0]['data'] . '</title>' . "\n";
471                 if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['content'][0]['data']) {
472                         $body = $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['content'][0]['data'];
473                         if(! $body)
474                                 $body = $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['summary'][0]['data'];
475                         if(strpos($body,'<')) {
476
477                                 $body = preg_replace('#<object[^>]+>.+?' . 'http://www.youtube.com/((?:v|cp)/[A-Za-z0-9\-_=]+).+?</object>#s',
478                                         '[youtube]$1[/youtube]', $body);
479
480                                 $config = HTMLPurifier_Config::createDefault();
481                                 $config->set('Cache.DefinitionImpl', null);
482
483                                 $purifier = new HTMLPurifier($config);
484                                 $body = $purifier->purify($body);
485                         }
486
487                         $body = html2bbcode($body);
488                         $res['target'] .= '<content>' . $body . '</content>' . "\n";
489                 }
490
491                 $res['target'] .= '</target>' . "\n";
492         }
493
494         return $res;
495 }
496
497 function encode_rel_links($links) {
498         $o = '';
499         if(! ((is_array($links)) && (count($links))))
500                 return $o;
501         foreach($links as $link) {
502                 $o .= '<link ';
503                 if($link['attribs']['']['rel'])
504                         $o .= 'rel="' . $link['attribs']['']['rel'] . '" ';
505                 if($link['attribs']['']['type'])
506                         $o .= 'type="' . $link['attribs']['']['type'] . '" ';
507                 if($link['attribs']['']['href'])
508                         $o .= 'type="' . $link['attribs']['']['href'] . '" ';
509                 if( (x($link['attribs'],NAMESPACE_MEDIA)) && $link['attribs'][NAMESPACE_MEDIA]['width'])
510                         $o .= 'media:width="' . $link['attribs'][NAMESPACE_MEDIA]['width'] . '" ';
511                 if( (x($link['attribs'],NAMESPACE_MEDIA)) && $link['attribs'][NAMESPACE_MEDIA]['height'])
512                         $o .= 'media:height="' . $link['attribs'][NAMESPACE_MEDIA]['height'] . '" ';
513                 $o .= ' />' . "\n" ;
514         }
515         return xmlify($o);
516 }
517
518 function item_store($arr) {
519
520         if($arr['gravity'])
521                 $arr['gravity'] = intval($arr['gravity']);
522         elseif($arr['parent-uri'] == $arr['uri'])
523                 $arr['gravity'] = 0;
524         elseif(activity_match($arr['verb'],ACTIVITY_POST))
525                 $arr['gravity'] = 6;
526         else      
527                 $arr['gravity'] = 6;   // extensible catchall
528
529         if(! x($arr,'type'))
530                 $arr['type']      = 'remote';
531         $arr['wall']          = ((x($arr,'wall'))          ? intval($arr['wall'])                : 0);
532         $arr['uri']           = ((x($arr,'uri'))           ? notags(trim($arr['uri']))           : random_string());
533         $arr['author-name']   = ((x($arr,'author-name'))   ? notags(trim($arr['author-name']))   : '');
534         $arr['author-link']   = ((x($arr,'author-link'))   ? notags(trim($arr['author-link']))   : '');
535         $arr['author-avatar'] = ((x($arr,'author-avatar')) ? notags(trim($arr['author-avatar'])) : '');
536         $arr['owner-name']    = ((x($arr,'owner-name'))    ? notags(trim($arr['owner-name']))    : '');
537         $arr['owner-link']    = ((x($arr,'owner-link'))    ? notags(trim($arr['owner-link']))    : '');
538         $arr['owner-avatar']  = ((x($arr,'owner-avatar'))  ? notags(trim($arr['owner-avatar']))  : '');
539         $arr['created']       = ((x($arr,'created') !== false) ? datetime_convert('UTC','UTC',$arr['created']) : datetime_convert());
540         $arr['edited']        = ((x($arr,'edited')  !== false) ? datetime_convert('UTC','UTC',$arr['edited'])  : datetime_convert());
541         $arr['changed']       = datetime_convert();
542         $arr['title']         = ((x($arr,'title'))         ? notags(trim($arr['title']))         : '');
543         $arr['location']      = ((x($arr,'location'))      ? notags(trim($arr['location']))      : '');
544         $arr['coord']         = ((x($arr,'coord'))         ? notags(trim($arr['coord']))         : '');
545         $arr['last-child']    = ((x($arr,'last-child'))    ? intval($arr['last-child'])          : 0 );
546         $arr['visible']       = ((x($arr,'visible') !== false) ? intval($arr['visible'])         : 1 );
547         $arr['deleted']       = 0;
548         $arr['parent-uri']    = ((x($arr,'parent-uri'))    ? notags(trim($arr['parent-uri']))    : '');
549         $arr['verb']          = ((x($arr,'verb'))          ? notags(trim($arr['verb']))          : '');
550         $arr['object-type']   = ((x($arr,'object-type'))   ? notags(trim($arr['object-type']))   : '');
551         $arr['object']        = ((x($arr,'object'))        ? trim($arr['object'])                : '');
552         $arr['target-type']   = ((x($arr,'target-type'))   ? notags(trim($arr['target-type']))   : '');
553         $arr['target']        = ((x($arr,'target'))        ? trim($arr['target'])                : '');
554         $arr['allow_cid']     = ((x($arr,'allow_cid'))     ? trim($arr['allow_cid'])             : '');
555         $arr['allow_gid']     = ((x($arr,'allow_gid'))     ? trim($arr['allow_gid'])             : '');
556         $arr['deny_cid']      = ((x($arr,'deny_cid'))      ? trim($arr['deny_cid'])              : '');
557         $arr['deny_gid']      = ((x($arr,'deny_gid'))      ? trim($arr['deny_gid'])              : '');
558         $arr['private']       = ((x($arr,'private'))       ? intval($arr['private'])             : 0 );
559         $arr['body']          = ((x($arr,'body'))          ? escape_tags(trim($arr['body']))     : '');
560
561         // The content body has been through a lot of filtering and transport escaping by now. 
562         // We don't want to skip any filters, however a side effect of all this filtering 
563         // is that ampersands and <> may have been double encoded, depending on which filter chain
564         // they came through. 
565
566         $arr['body']          = str_replace(
567                                                                 array('&amp;amp;','&amp;gt;','&amp;lt;'),
568                                                                 array('&amp;'    ,'&gt;'    ,'&lt;'),
569                                                                 $arr['body']
570                                                         );
571
572
573
574         if($arr['parent-uri'] === $arr['uri']) {
575                 $parent_id = 0;
576                 $allow_cid = $arr['allow_cid'];
577                 $allow_gid = $arr['allow_gid'];
578                 $deny_cid  = $arr['deny_cid'];
579                 $deny_gid  = $arr['deny_gid'];
580         }
581         else { 
582
583                 // find the parent and snarf the item id and ACL's
584
585                 $r = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
586                         dbesc($arr['parent-uri']),
587                         intval($arr['uid'])
588                 );
589
590                 if(count($r)) {
591
592                         // is the new message multi-level threaded?
593                         // even though we don't support it now, preserve the info
594                         // and re-attach to the conversation parent.
595
596                         if($r[0]['uri'] != $r[0]['parent-uri']) {
597                                 $arr['thr-parent'] = $arr['parent-uri'];
598                                 $arr['parent-uri'] = $r[0]['parent-uri'];
599                         }
600
601                         $parent_id = $r[0]['id'];
602                         $allow_cid = $r[0]['allow_cid'];
603                         $allow_gid = $r[0]['allow_gid'];
604                         $deny_cid  = $r[0]['deny_cid'];
605                         $deny_gid  = $r[0]['deny_gid'];
606                 }
607                 else {
608                         logger('item_store: item parent was not found - ignoring item');
609                         return 0;
610                 }
611         }
612
613         call_hooks('post_remote',$arr);
614
615         dbesc_array($arr);
616
617         logger('item_store: ' . print_r($arr,true), LOGGER_DATA);
618
619         $r = dbq("INSERT INTO `item` (`" 
620                         . implode("`, `", array_keys($arr)) 
621                         . "`) VALUES ('" 
622                         . implode("', '", array_values($arr)) 
623                         . "')" );
624
625         // find the item we just created
626
627         $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
628                 $arr['uri'],           // already dbesc'd
629                 intval($arr['uid'])
630         );
631         if(count($r)) {
632                 $current_post = $r[0]['id'];
633                 logger('item_store: created item ' . $current_post);
634         }
635         else {
636                 logger('item_store: could not locate created item');
637                 return 0;
638         }
639
640         if($arr['parent-uri'] === $arr['uri'])
641                 $parent_id = $current_post;
642  
643         if(strlen($allow_cid) || strlen($allow_gid) || strlen($deny_cid) || strlen($deny_gid))
644                 $private = 1;
645         else
646                 $private = $arr['private']; 
647
648         // Set parent id - and also make sure to inherit the parent's ACL's.
649
650         $r = q("UPDATE `item` SET `parent` = %d, `allow_cid` = '%s', `allow_gid` = '%s',
651                 `deny_cid` = '%s', `deny_gid` = '%s', `private` = %d WHERE `id` = %d LIMIT 1",
652                 intval($parent_id),
653                 dbesc($allow_cid),
654                 dbesc($allow_gid),
655                 dbesc($deny_cid),
656                 dbesc($deny_gid),
657                 intval($private),
658                 intval($current_post)
659         );
660
661         return $current_post;
662 }
663
664 function get_item_contact($item,$contacts) {
665         if(! count($contacts) || (! is_array($item)))
666                 return false;
667         foreach($contacts as $contact) {
668                 if($contact['id'] == $item['contact-id']) {
669                         return $contact;
670                         break; // NOTREACHED
671                 }
672         }
673         return false;
674 }
675
676
677 function dfrn_deliver($owner,$contact,$atom) {
678
679         $a = get_app();
680
681         if((! strlen($contact['dfrn-id'])) && (! $contact['duplex']) && (! ($owner['page-flags'] == PAGE_COMMUNITY)))
682                 return 3;
683
684         $idtosend = $orig_id = (($contact['dfrn-id']) ? $contact['dfrn-id'] : $contact['issued-id']);
685
686         if($contact['duplex'] && $contact['dfrn-id'])
687                 $idtosend = '0:' . $orig_id;
688         if($contact['duplex'] && $contact['issued-id'])
689                 $idtosend = '1:' . $orig_id;            
690
691         $rino = ((function_exists('mcrypt_encrypt')) ? 1 : 0);
692
693         $rino_enable = get_config('system','rino_encrypt');
694
695         if(! $rino_enable)
696                 $rino = 0;
697
698         $url = $contact['notify'] . '?dfrn_id=' . $idtosend . '&dfrn_version=' . DFRN_PROTOCOL_VERSION . (($rino) ? '&rino=1' : '');
699
700         logger('dfrn_deliver: ' . $url);
701
702         $xml = fetch_url($url);
703
704         $curl_stat = $a->get_curl_code();
705         if(! $curl_stat)
706                 return(-1); // timed out
707
708         logger('dfrn_deliver: ' . $xml);
709
710         if(! $xml)
711                 return 3;
712
713         $res = simplexml_load_string($xml);
714
715         if((intval($res->status) != 0) || (! strlen($res->challenge)) || (! strlen($res->dfrn_id)))
716                 return (($res->status) ? $res->status : 3);
717
718         $postvars     = array();
719         $sent_dfrn_id = hex2bin($res->dfrn_id);
720         $challenge    = hex2bin($res->challenge);
721         $rino_allowed = ((intval($res->rino) === 1) ? 1 : 0);
722
723         $final_dfrn_id = '';
724
725
726         if(($contact['duplex'] && strlen($contact['prvkey'])) || ($owner['page-flags'] == PAGE_COMMUNITY)) {
727                 openssl_private_decrypt($sent_dfrn_id,$final_dfrn_id,$contact['prvkey']);
728                 openssl_private_decrypt($challenge,$postvars['challenge'],$contact['prvkey']);
729         }
730         else {
731                 openssl_public_decrypt($sent_dfrn_id,$final_dfrn_id,$contact['pubkey']);
732                 openssl_public_decrypt($challenge,$postvars['challenge'],$contact['pubkey']);
733         }
734
735         $final_dfrn_id = substr($final_dfrn_id, 0, strpos($final_dfrn_id, '.'));
736
737         if(strpos($final_dfrn_id,':') == 1)
738                 $final_dfrn_id = substr($final_dfrn_id,2);
739
740         if($final_dfrn_id != $orig_id) {
741                 logger('dfrn_deliver: wrong dfrn_id.');
742                 // did not decode properly - cannot trust this site 
743                 return 3;
744         }
745
746         $postvars['dfrn_id']      = $idtosend;
747         $postvars['dfrn_version'] = DFRN_PROTOCOL_VERSION;
748
749         if(($contact['rel']) && ($contact['rel'] != REL_FAN) && (! $contact['blocked']) && (! $contact['readonly'])) {
750                 $postvars['data'] = $atom;
751         }
752         elseif($owner['page-flags'] == PAGE_COMMUNITY) {
753                 $postvars['data'] = $atom;
754         }
755         else {
756                 $postvars['data'] = str_replace('<dfrn:comment-allow>1','<dfrn:comment-allow>0',$atom);
757         }
758
759         if($rino && $rino_allowed) {
760                 $key = substr(random_string(),0,16);
761                 $data = bin2hex(aes_encrypt($postvars['data'],$key));
762                 $postvars['data'] = $data;
763                 logger('rino: sent key = ' . $key);     
764
765                 if(($contact['duplex'] && strlen($contact['prvkey'])) || ($owner['page-flags'] == PAGE_COMMUNITY)) {
766                         openssl_private_encrypt($key,$postvars['key'],$contact['prvkey']);
767                 }
768                 else {
769                         openssl_public_encrypt($key,$postvars['key'],$contact['pubkey']);
770                 }
771
772                 logger('md5 rawkey ' . md5($postvars['key']));
773
774                 $postvars['key'] = bin2hex($postvars['key']);
775         }
776
777         logger('dfrn_deliver: ' . "SENDING: " . print_r($postvars,true), LOGGER_DATA);
778
779         $xml = post_url($contact['notify'],$postvars);
780
781         logger('dfrn_deliver: ' . "RECEIVED: " . $xml, LOGGER_DATA);
782
783         $curl_stat = $a->get_curl_code();
784         if((! $curl_stat) || (! strlen($xml)))
785                 return(-1); // timed out
786
787         $res = simplexml_load_string($xml);
788
789         return $res->status;
790  
791 }
792
793
794 /*
795  *
796  * consume_feed - process atom feed and update anything/everything we might need to update
797  *
798  * $xml = the (atom) feed to consume - no RSS spoken here, it might partially work since simplepie 
799  *        handles both, but we don't claim it will work well, and are reasonably certain it won't.
800  * $importer = the contact_record (joined to user_record) of the local user who owns this relationship.
801  *             It is this person's stuff that is going to be updated.
802  * $contact =  the person who is sending us stuff. If not set, we MAY be processing a "follow" activity
803  *             from an external network and MAY create an appropriate contact record. Otherwise, we MUST 
804  *             have a contact record.
805  * $hub = should we find a hub declation in the feed, pass it back to our calling process, who might (or 
806  *        might not) try and subscribe to it.
807  *
808  */
809
810 function consume_feed($xml,$importer,$contact, &$hub, $datedir = 0) {
811
812         require_once('simplepie/simplepie.inc');
813
814         $feed = new SimplePie();
815         $feed->set_raw_data($xml);
816         if($datedir)
817                 $feed->enable_order_by_date(true);
818         else
819                 $feed->enable_order_by_date(false);
820         $feed->init();
821
822         // Check at the feed level for updated contact name and/or photo
823
824         $name_updated  = '';
825         $new_name = '';
826         $photo_timestamp = '';
827         $photo_url = '';
828
829
830         $hubs = $feed->get_links('hub');
831
832         if(count($hubs))
833                 $hub = implode(',', $hubs);
834
835         $rawtags = $feed->get_feed_tags( SIMPLEPIE_NAMESPACE_ATOM_10, 'author');
836         if($rawtags) {
837                 $elems = $rawtags[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10];
838                 if($elems['name'][0]['attribs'][NAMESPACE_DFRN]['updated']) {
839                         $name_updated = $elems['name'][0]['attribs'][NAMESPACE_DFRN]['updated'];
840                         $new_name = $elems['name'][0]['data'];
841                 } 
842                 if((x($elems,'link')) && ($elems['link'][0]['attribs']['']['rel'] === 'photo') && ($elems['link'][0]['attribs'][NAMESPACE_DFRN]['updated'])) {
843                         $photo_timestamp = datetime_convert('UTC','UTC',$elems['link'][0]['attribs'][NAMESPACE_DFRN]['updated']);
844                         $photo_url = $elems['link'][0]['attribs']['']['href'];
845                 }
846         }
847
848         if((is_array($contact)) && ($photo_timestamp) && (strlen($photo_url)) && ($photo_timestamp > $contact['avatar-date'])) {
849                 logger('Consume feed: Updating photo for ' . $contact['name']);
850                 require_once("Photo.php");
851                 $photo_failure = false;
852                 $have_photo = false;
853
854                 $r = q("SELECT `resource-id` FROM `photo` WHERE `contact-id` = %d AND `uid` = %d LIMIT 1",
855                         intval($contact['id']),
856                         intval($contact['uid'])
857                 );
858                 if(count($r)) {
859                         $resource_id = $r[0]['resource-id'];
860                         $have_photo = true;
861                 }
862                 else {
863                         $resource_id = photo_new_resource();
864                 }
865                         
866                 $img_str = fetch_url($photo_url,true);
867                 $img = new Photo($img_str);
868                 if($img->is_valid()) {
869                         if($have_photo) {
870                                 q("DELETE FROM `photo` WHERE `resource-id` = '%s' AND `contact-id` = %d AND `uid` = %d",
871                                         dbesc($resource_id),
872                                         intval($contact['id']),
873                                         intval($contact['uid'])
874                                 );
875                         }
876                                 
877                         $img->scaleImageSquare(175);
878                                 
879                         $hash = $resource_id;
880                         $r = $img->store($contact['uid'], $contact['id'], $hash, basename($photo_url), t('Contact Photos') , 4);
881                                 
882                         $img->scaleImage(80);
883                         $r = $img->store($contact['uid'], $contact['id'], $hash, basename($photo_url), t('Contact Photos') , 5);
884
885                         $img->scaleImage(48);
886                         $r = $img->store($contact['uid'], $contact['id'], $hash, basename($photo_url), t('Contact Photos') , 6);
887
888                         $a = get_app();
889
890                         q("UPDATE `contact` SET `avatar-date` = '%s', `photo` = '%s', `thumb` = '%s', `micro` = '%s'  
891                                 WHERE `uid` = %d AND `id` = %d LIMIT 1",
892                                 dbesc(datetime_convert()),
893                                 dbesc($a->get_baseurl() . '/photo/' . $hash . '-4.jpg'),
894                                 dbesc($a->get_baseurl() . '/photo/' . $hash . '-5.jpg'),
895                                 dbesc($a->get_baseurl() . '/photo/' . $hash . '-6.jpg'),
896                                 intval($contact['uid']),
897                                 intval($contact['id'])
898                         );
899                 }
900         }
901
902         if((is_array($contact)) && ($name_updated) && (strlen($new_name)) && ($name_updated > $contact['name-date'])) {
903                 q("UPDATE `contact` SET `name` = '%s', `name-date` = '%s' WHERE `uid` = %d AND `id` = %d LIMIT 1",
904                         dbesc(notags(trim($new_name))),
905                         dbesc(datetime_convert()),
906                         intval($contact['uid']),
907                         intval($contact['id'])
908                 );
909         }
910
911         // Now process the feed
912         if($feed->get_item_quantity()) {                
913                 foreach($feed->get_items() as $item) {
914
915                         $deleted = false;
916
917                         $rawdelete = $item->get_item_tags( NAMESPACE_TOMB, 'deleted-entry');
918                         if(isset($rawdelete[0]['attribs']['']['ref'])) {
919                                 $uri = $rawthread[0]['attribs']['']['ref'];
920                                 $deleted = true;
921                                 if(isset($rawdelete[0]['attribs']['']['when'])) {
922                                         $when = $rawthread[0]['attribs']['']['when'];
923                                         $when = datetime_convert('UTC','UTC', $when, 'Y-m-d H:i:s');
924                                 }
925                                 else
926                                         $when = datetime_convert('UTC','UTC','now','Y-m-d H:i:s');
927                         }
928                         if($deleted && is_array($contact)) {
929                                 $r = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `uid` = %d AND `contact-id` = %d LIMIT 1",
930                                         dbesc($uri),
931                                         intval($importer['uid']),
932                                         intval($contact['id'])
933                                 );
934                                 if(count($r)) {
935                                         $item = $r[0];
936                                         if($item['uri'] == $item['parent-uri']) {
937                                                 $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s',
938                                                         `body` = '', `title` = ''
939                                                         WHERE `parent-uri` = '%s' AND `uid` = %d",
940                                                         dbesc($when),
941                                                         dbesc(datetime_convert()),
942                                                         dbesc($item['uri']),
943                                                         intval($importer['uid'])
944                                                 );
945                                         }
946                                         else {
947                                                 $r = q("UPDATE `item` SET `deleted` = 1, `edited` = '%s', `changed` = '%s',
948                                                         `body` = '', `title` = '' 
949                                                         WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
950                                                         dbesc($when),
951                                                         dbesc(datetime_convert()),
952                                                         dbesc($uri),
953                                                         intval($importer['uid'])
954                                                 );
955                                                 if($item['last-child']) {
956                                                         // ensure that last-child is set in case the comment that had it just got wiped.
957                                                         $q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d ",
958                                                                 dbesc(datetime_convert()),
959                                                                 dbesc($item['parent-uri']),
960                                                                 intval($item['uid'])
961                                                         );
962                                                         // who is the last child now? 
963                                                         $r = q("SELECT `id` FROM `item` WHERE `parent-uri` = '%s' AND `type` != 'activity' AND `deleted` = 0 AND `uid` = %d 
964                                                                 ORDER BY `created` DESC LIMIT 1",
965                                                                         dbesc($item['parent-uri']),
966                                                                         intval($importer['uid'])
967                                                         );
968                                                         if(count($r)) {
969                                                                 q("UPDATE `item` SET `last-child` = 1 WHERE `id` = %d LIMIT 1",
970                                                                         intval($r[0]['id'])
971                                                                 );
972                                                         }
973                                                 }       
974                                         }
975                                 }       
976                                 continue;
977                         }
978
979
980                         $is_reply = false;              
981                         $item_id = $item->get_id();
982                         $rawthread = $item->get_item_tags( NAMESPACE_THREAD,'in-reply-to');
983                         if(isset($rawthread[0]['attribs']['']['ref'])) {
984                                 $is_reply = true;
985                                 $parent_uri = $rawthread[0]['attribs']['']['ref'];
986                         }
987
988
989                         if(($is_reply) && is_array($contact)) {
990         
991                                 // Have we seen it? If not, import it.
992         
993                                 $item_id = $item->get_id();
994         
995                                 $r = q("SELECT `uid`, `last-child`, `edited` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
996                                         dbesc($item_id),
997                                         intval($importer['uid'])
998                                 );
999                                 // FIXME update content if 'updated' changes
1000                                 if(count($r)) {
1001                                         $allow = $item->get_item_tags( NAMESPACE_DFRN, 'comment-allow');
1002                                         if(($allow) && ($allow[0]['data'] != $r[0]['last-child'])) {
1003                                                 $r = q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d",
1004                                                         dbesc(datetime_convert()),
1005                                                         dbesc($parent_uri),
1006                                                         intval($importer['uid'])
1007                                                 );
1008                                                 $r = q("UPDATE `item` SET `last-child` = %d , `changed` = '%s'  WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1009                                                         intval($allow[0]['data']),
1010                                                         dbesc(datetime_convert()),
1011                                                         dbesc($item_id),
1012                                                         intval($importer['uid'])
1013                                                 );
1014                                         }
1015                                         continue;
1016                                 }
1017                                 $datarray = get_atom_elements($feed,$item);
1018                                 if($contact['network'] === 'stat') {
1019                                         if(strlen($datarray['title']))
1020                                                 unset($datarray['title']);
1021                                         $r = q("UPDATE `item` SET `last-child` = 0, `changed` = '%s' WHERE `parent-uri` = '%s' AND `uid` = %d",
1022                                                 dbesc(datetime_convert()),
1023                                                 dbesc($parent_uri),
1024                                                 intval($importer['uid'])
1025                                         );
1026                                         $datarray['last-child'] = 1;
1027                                 }
1028                                 $datarray['parent-uri'] = $parent_uri;
1029                                 $datarray['uid'] = $importer['uid'];
1030                                 $datarray['contact-id'] = $contact['id'];
1031                                 if((activity_match($datarray['verb'],ACTIVITY_LIKE)) || (activity_match($datarray['verb'],ACTIVITY_DISLIKE))) {
1032                                         $datarray['type'] = 'activity';
1033                                         $datarray['gravity'] = GRAVITY_LIKE;
1034                                 }
1035
1036                                 $r = item_store($datarray);
1037                                 continue;
1038                         }
1039
1040                         else {
1041                                 // Head post of a conversation. Have we seen it? If not, import it.
1042
1043                                 $item_id = $item->get_id();
1044                                 $r = q("SELECT `uid`, `last-child`, `edited` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1045                                         dbesc($item_id),
1046                                         intval($importer['uid'])
1047                                 );
1048                                 if(count($r)) {
1049                                         $allow = $item->get_item_tags( NAMESPACE_DFRN, 'comment-allow');
1050                                         if($allow && $allow[0]['data'] != $r[0]['last-child']) {
1051                                                 $r = q("UPDATE `item` SET `last-child` = %d , `changed` = '%s' WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1052                                                         intval($allow[0]['data']),
1053                                                         dbesc(datetime_convert()),
1054                                                         dbesc($item_id),
1055                                                         intval($importer['uid'])
1056                                                 );
1057                                         }
1058                                         continue;
1059                                 }
1060                                 $datarray = get_atom_elements($feed,$item);
1061
1062                                 if(activity_match($datarray['verb'],ACTIVITY_FOLLOW)) {
1063                                         logger('consume-feed: New follower');
1064                                         new_follower($importer,$contact,$datarray,$item);
1065                                         return;
1066                                 }
1067                                 if(activity_match($datarray['verb'],ACTIVITY_UNFOLLOW))  {
1068                                         lose_follower($importer,$contact,$datarray,$item);
1069                                         return;
1070                                 }
1071                                 if(! is_array($contact))
1072                                         return;
1073
1074                                 if($contact['network'] === 'stat') {
1075                                         if(strlen($datarray['title']))
1076                                                 unset($datarray['title']);
1077                                         $datarray['last-child'] = 1;
1078                                 }
1079
1080                                 $datarray['parent-uri'] = $item_id;
1081                                 $datarray['uid'] = $importer['uid'];
1082                                 $datarray['contact-id'] = $contact['id'];
1083                                 $r = item_store($datarray);
1084                                 continue;
1085
1086                         }
1087                 }
1088         }
1089
1090 }
1091
1092 function new_follower($importer,$contact,$datarray,$item) {
1093         $url = notags(trim($datarray['author-link']));
1094         $name = notags(trim($datarray['author-name']));
1095         $photo = notags(trim($datarray['author-avatar']));
1096
1097         $rawtag = $item->get_item_tags(NAMESPACE_ACTIVITY,'actor');
1098         if($rawtag && $rawtag[0]['child'][NAMESPACE_POCO]['preferredUsername'][0]['data'])
1099                 $nick = $rawtag[0]['child'][NAMESPACE_POCO]['preferredUsername'][0]['data'];
1100
1101         if(is_array($contact)) {
1102                 if($contact['network'] == 'stat' && $contact['rel'] == REL_FAN) {
1103                         $r = q("UPDATE `contact` SET `rel` = %d WHERE `id` = %d AND `uid` = %d LIMIT 1",
1104                                 intval(REL_BUD),
1105                                 intval($contact['id']),
1106                                 intval($importer['uid'])
1107                         );
1108                 }
1109
1110                 // send email notification to owner?
1111         }
1112         else {
1113         
1114                 // create contact record - set to readonly
1115
1116                 $r = q("INSERT INTO `contact` ( `uid`, `created`, `url`, `name`, `nick`, `photo`, `network`, `rel`, 
1117                         `blocked`, `readonly`, `pending` )
1118                         VALUES ( %d, '%s', '%s', '%s', '%s', '%s', '%s', %d, 0, 1, 1 ) ",
1119                         intval($importer['uid']),
1120                         dbesc(datetime_convert()),
1121                         dbesc($url),
1122                         dbesc($name),
1123                         dbesc($nick),
1124                         dbesc($photo),
1125                         dbesc('stat'),
1126                         intval(REL_VIP)
1127                 );
1128                 $r = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND `url` = '%s' AND `pending` = 1 AND `rel` = %d LIMIT 1",
1129                                 intval($importer['uid']),
1130                                 dbesc($url),
1131                                 intval(REL_VIP)
1132                 );
1133                 if(count($r))
1134                                 $contact_record = $r[0];
1135
1136                 // create notification  
1137                 $hash = random_string();
1138
1139                 if(is_array($contact_record)) {
1140                         $ret = q("INSERT INTO `intro` ( `uid`, `contact-id`, `blocked`, `knowyou`, `hash`, `datetime`)
1141                                 VALUES ( %d, %d, 0, 0, '%s', '%s' )",
1142                                 intval($importer['uid']),
1143                                 intval($contact_record['id']),
1144                                 dbesc($hash),
1145                                 dbesc(datetime_convert())
1146                         );
1147                 }
1148                 $r = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1",
1149                         intval($importer['uid'])
1150                 );
1151                 if(count($r)) {
1152                         if(($r[0]['notify-flags'] & NOTIFY_INTRO) && ($r[0]['page-flags'] == PAGE_NORMAL)) {
1153                                 $email_tpl = load_view_file('view/follow_notify_eml.tpl');
1154                                 $email = replace_macros($email_tpl, array(
1155                                         '$requestor' => ((strlen($name)) ? $name : t('[Name Withheld]')),
1156                                         '$url' => $url,
1157                                         '$myname' => $r[0]['username'],
1158                                         '$siteurl' => $a->get_baseurl(),
1159                                         '$sitename' => $a->config['sitename']
1160                                 ));
1161                                 $res = mail($r[0]['email'], 
1162                                         t("You have a new follower at ") . $a->config['sitename'],
1163                                         $email,
1164                                         'From: ' . t('Administrator') . '@' . $_SERVER['SERVER_NAME'] );
1165                         
1166                         }
1167                 }
1168         }
1169 }
1170
1171 function lose_follower($importer,$contact,$datarray,$item) {
1172
1173         if(($contact['rel'] == REL_BUD) || ($contact['rel'] == REL_FAN)) {
1174                 q("UPDATE `contact` SET `rel` = %d WHERE `id` = %d LIMIT 1",
1175                         intval(REL_FAN),
1176                         intval($contact['id'])
1177                 );
1178         }
1179         else {
1180                 contact_remove($contact['id']);
1181         }
1182 }
1183
1184
1185 function subscribe_to_hub($url,$importer,$contact) {
1186
1187         if(is_array($importer)) {
1188                 $r = q("SELECT `nickname` FROM `user` WHERE `uid` = %d LIMIT 1",
1189                         intval($importer['uid'])
1190                 );
1191         }
1192         if(! count($r))
1193                 return;
1194
1195         $push_url = get_config('system','url') . '/pubsub/' . $r[0]['nickname'] . '/' . $contact['id'];
1196
1197         // Use a single verify token, even if multiple hubs
1198
1199         $verify_token = ((strlen($contact['hub-verify'])) ? $contact['hub-verify'] : random_string());
1200
1201         $params= 'hub.mode=subscribe&hub.callback=' . urlencode($push_url) . '&hub.topic=' . urlencode($contact['poll']) . '&hub.verify=async&hub.verify_token=' . $verify_token;
1202
1203         logger('subscribe_to_hub: subscribing ' . $contact['name'] . ' to hub ' . $url . ' with verifier ' . $verify_token);
1204
1205         if(! strlen($contact['hub-verify'])) {
1206                 $r = q("UPDATE `contact` SET `hub-verify` = '%s' WHERE `id` = %d LIMIT 1",
1207                         dbesc($verify_token),
1208                         intval($contact['id'])
1209                 );
1210         }
1211
1212         post_url($url,$params);                 
1213         return;
1214
1215 }
1216
1217
1218 function atom_author($tag,$name,$uri,$h,$w,$photo) {
1219         $o = '';
1220         if(! $tag)
1221                 return $o;
1222         $name = xmlify($name);
1223         $uri = xmlify($uri);
1224         $h = intval($h);
1225         $w = intval($w);
1226         $photo = xmlify($photo);
1227
1228
1229         $o .= "<$tag>\r\n";
1230         $o .= "<name>$name</name>\r\n";
1231         $o .= "<uri>$uri</uri>\r\n";
1232         $o .= '<link rel="photo"  type="image/jpeg" media:width="' . $w . '" media:height="' . $h . '" href="' . $photo . '" />' . "\r\n";
1233         $o .= '<link rel="avatar" type="image/jpeg" media:width="' . $w . '" media:height="' . $h . '" href="' . $photo . '" />' . "\r\n";
1234         $o .= "</$tag>\r\n";
1235         return $o;
1236 }
1237
1238 function atom_entry($item,$type,$author,$owner,$comment = false) {
1239
1240         if($item['deleted'])
1241                 return '<at:deleted-entry ref="' . xmlify($item['uri']) . '" when="' . xmlify(datetime_convert('UTC','UTC',$item['edited'] . '+00:00',ATOM_TIME)) . '" />' . "\r\n";
1242
1243         $a = get_app();
1244
1245         $o = "\r\n\r\n<entry>\r\n";
1246
1247         if(is_array($author))
1248                 $o .= atom_author('author',$author['name'],$author['url'],80,80,$author['thumb']);
1249         else
1250                 $o .= atom_author('author',$item['name'],$item['url'],80,80,$item['thumb']);
1251         if(strlen($item['owner-name']))
1252                 $o .= atom_author('dfrn:owner',$item['owner-name'],$item['owner-link'],80,80,$item['owner-avatar']);
1253
1254         if($item['parent'] != $item['id'])
1255                 $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";
1256
1257         $o .= '<id>' . xmlify($item['uri']) . '</id>' . "\r\n";
1258         $o .= '<title>' . xmlify($item['title']) . '</title>' . "\r\n";
1259         $o .= '<published>' . xmlify(datetime_convert('UTC','UTC',$item['created'] . '+00:00',ATOM_TIME)) . '</published>' . "\r\n";
1260         $o .= '<updated>' . xmlify(datetime_convert('UTC','UTC',$item['edited'] . '+00:00',ATOM_TIME)) . '</updated>' . "\r\n";
1261         $o .= '<content type="' . $type . '" >' . xmlify(($type === 'html') ? bbcode($item['body']) : $item['body']) . '</content>' . "\r\n";
1262         $o .= '<link rel="alternate" href="' . xmlify($a->get_baseurl() . '/display/' . $owner['nickname'] . '/' . $item['id']) . '" />' . "\r\n";
1263         if($comment)
1264                 $o .= '<dfrn:comment-allow>' . intval($item['last-child']) . '</dfrn:comment-allow>' . "\r\n";
1265
1266         if($item['location']) {
1267                 $o .= '<dfrn:location>' . xmlify($item['location']) . '</dfrn:location>' . "\r\n";
1268                 $o .= '<poco:address><poco:formatted>' . xmlify($item['location']) . '</poco:formatted></poco:address>' . "\r\n";
1269         }
1270
1271         if($item['coord'])
1272                 $o .= '<georss:point>' . xmlify($item['coord']) . '</georss:point>' . "\r\n";
1273
1274         if(($item['private']) || strlen($item['allow_cid']) || strlen($item['allow_gid']) || strlen($item['deny_cid']) || strlen($item['deny_gid']))
1275                 $o .= '<dfrn:private>1</dfrn:private>' . "\r\n";
1276
1277         $verb = construct_verb($item);
1278         $o .= '<as:verb>' . xmlify($verb) . '</as:verb>' . "\r\n";
1279         $actobj = construct_activity_object($item);
1280         if(strlen($actobj))
1281                 $o .= $actobj;
1282         $actarg = construct_activity_target($item);
1283         if(strlen($actarg))
1284                 $o .= $actarg;
1285
1286         $mentioned = get_mentions($item);
1287         if($mentioned)
1288                 $o .= $mentioned;
1289         
1290         $o .= '</entry>' . "\r\n";
1291         
1292         return $o;
1293 }
1294