]> git.mxchange.org Git - friendica.git/blob - addon/facebook/facebook.php
2aab3c5ee72691542ccae631923e0d1f28f91c99
[friendica.git] / addon / facebook / facebook.php
1 <?php
2
3 /**
4  * Installing the Friendika/Facebook connector
5  *
6  * 1. register an API key for your site from developer.facebook.com
7  *   a. We'd be very happy if you include "Friendika" in the application name
8  *      to increase name recognition. The Friendika icons are also present
9  *      in the images directory and may be uploaded as a Facebook app icon.
10  *      Use images/friendika-16.jpg for the Icon and images/friendika-128.jpg for the Logo.
11  *   b. The url should be your site URL with a trailing slash.
12  *      You may use http://portal.friendika.com/privacy as the privacy policy
13  *      URL unless your site has different requirements, and 
14  *      http://portal.friendika.com as the Terms of Service URL unless
15  *      you have different requirements. (Friendika is a software application
16  *      and does not require Terms of Service, though your installation of it might).
17  *   c. Set the following values in your .htconfig.php file
18  *         $a->config['facebook']['appid'] = 'xxxxxxxxxxx';
19  *         $a->config['facebook']['appsecret'] = 'xxxxxxxxxxxxxxx';
20  *      Replace with the settings Facebook gives you.
21  * 2. Enable the facebook plugin by including it in .htconfig.php - e.g. 
22  *     $a->config['system']['addon'] = 'plugin1,plugin2,facebook';
23  * 3. Visit the Facebook Settings section of the "Settings->Plugin Settings" page.
24  *    and click 'Install Facebook Connector'.
25  * 4. This will ask you to login to Facebook and grant permission to the 
26  *    plugin to do its stuff. Allow it to do so. 
27  * 5. You're done. To turn it off visit the Plugin Settings page again and
28  *    'Remove Facebook posting'.
29  *
30  * Vidoes and embeds will not be posted if there is no other content. Links 
31  * and images will be converted to a format suitable for the Facebook API and 
32  * long posts truncated - with a link to view the full post. 
33  *
34  * Facebook contacts will not be able to view private photos, as they are not able to
35  * authenticate to your site to establish identity. We will address this 
36  * in a future release.
37  */
38
39 define('FACEBOOK_MAXPOSTLEN', 420);
40
41 /* declare the facebook_module function so that /facebook url requests will land here */
42
43 function facebook_module() {}
44
45
46
47 /* If a->argv[1] is a nickname, this is a callback from Facebook oauth requests. */
48
49 function facebook_init(&$a) {
50
51         if($a->argc != 2)
52                 return;
53         $nick = $a->argv[1];
54         if(strlen($nick))
55                 $r = q("SELECT `uid` FROM `user` WHERE `nickname` = '%s' LIMIT 1",
56                                 dbesc($nick)
57                 );
58         if(! count($r))
59                 return;
60
61         $uid           = $r[0]['uid'];
62         $auth_code     = (($_GET['code']) ? $_GET['code'] : '');
63         $error         = (($_GET['error_description']) ? $_GET['error_description'] : '');
64
65
66         if($error)
67                 logger('facebook_init: Error: ' . $error);
68
69         if($auth_code && $uid) {
70
71                 $appid = get_config('facebook','appid');
72                 $appsecret = get_config('facebook', 'appsecret');
73
74                 $x = fetch_url('https://graph.facebook.com/oauth/access_token?client_id='
75                         . $appid . '&client_secret=' . $appsecret . '&redirect_uri='
76                         . urlencode($a->get_baseurl() . '/facebook/' . $nick) 
77                         . '&code=' . $auth_code);
78
79                 logger('facebook_init: returned access token: ' . $x, LOGGER_DATA);
80
81                 if(strpos($x,'access_token=') !== false) {
82                         $token = str_replace('access_token=', '', $x);
83                         if(strpos($token,'&') !== false)
84                                 $token = substr($token,0,strpos($token,'&'));
85                         set_pconfig($uid,'facebook','access_token',$token);
86                         set_pconfig($uid,'facebook','post','1');
87                         fb_get_self($uid);
88                         fb_get_friends($uid);
89                         fb_consume_all($uid);
90
91                 }
92
93                 // todo: is this a browser session or a server session? where do we go? 
94         }
95
96 }
97
98
99 function fb_get_self($uid) {
100         $access_token = get_pconfig($uid,'facebook','access_token');
101         if(! $access_token)
102                 return;
103         $s = fetch_url('https://graph.facebook.com/me/?access_token=' . $access_token);
104         if($s) {
105                 $j = json_decode($s);
106                 set_pconfig($uid,'facebook','self_id',(string) $j->id);
107         }
108 }
109
110
111
112 function fb_get_friends($uid) {
113
114         $access_token = get_pconfig($uid,'facebook','access_token');
115         if(! $access_token)
116                 return;
117         $s = fetch_url('https://graph.facebook.com/me/friends?access_token=' . $access_token);
118         if($s) {
119                 logger('facebook: fb_get_friends: ' . $s, LOGGER_DATA);
120                 $j = json_decode($s);
121                 logger('facebook: fb_get_friends: json: ' . print_r($j,true), LOGGER_DATA);
122                 foreach($j->data as $person) {
123                         $s = fetch_url('https://graph.facebook.com/' . $person->id . '?access_token=' . $access_token);
124                         if($s) {
125                                 $jp = json_decode($s);
126                                 logger('fb_get_friends: info: ' . print_r($jp,true), LOGGER_DATA);
127
128                                 // always use numeric link for consistency
129
130                                 $jp->link = 'http://facebook.com/profile.php?id=' . $person->id;
131
132                                 // check if we already have a contact
133
134                                 $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `url` = '%s' LIMIT 1",
135                                         intval($uid),
136                                         dbesc($jp->link)
137                                 );                      
138
139                                 if(count($r)) {
140
141                                         // check that we have all the photos, this has been known to fail on occasion
142
143                                         if((! $r[0]['photo']) || (! $r[0]['thumb']) || (! $r[0]['micro'])) {  
144                                                 require_once("Photo.php");
145
146                                                 $photos = import_profile_photo('https://graph.facebook.com/' . $jp->id . '/picture', $uid, $r[0]['id']);
147
148                                                 $r = q("UPDATE `contact` SET `photo` = '%s', 
149                                                         `thumb` = '%s',
150                                                         `micro` = '%s', 
151                                                         `name-date` = '%s', 
152                                                         `uri-date` = '%s', 
153                                                         `avatar-date` = '%s'
154                                                         WHERE `id` = %d LIMIT 1
155                                                 ",
156                                                         dbesc($photos[0]),
157                                                         dbesc($photos[1]),
158                                                         dbesc($photos[2]),
159                                                         dbesc(datetime_convert()),
160                                                         dbesc(datetime_convert()),
161                                                         dbesc(datetime_convert()),
162                                                         intval($r[0]['id'])
163                                                 );                      
164                                         }       
165                                         continue;
166                                 }
167                                 else {
168
169                                         // create contact record 
170                                         $r = q("INSERT INTO `contact` ( `uid`, `created`, `url`, `addr`, `alias`, `notify`, `poll`, 
171                                                 `name`, `nick`, `photo`, `network`, `rel`, `priority`,
172                                                 `writable`, `blocked`, `readonly`, `pending` )
173                                                 VALUES ( %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, %d, 0, 0, 0 ) ",
174                                                 intval($uid),
175                                                 dbesc(datetime_convert()),
176                                                 dbesc($jp->link),
177                                                 dbesc(''),
178                                                 dbesc(''),
179                                                 dbesc($jp->id),
180                                                 dbesc('facebook ' . $jp->id),
181                                                 dbesc($jp->name),
182                                                 dbesc(($jp->nickname) ? $jp->nickname : strtolower($jp->first_name)),
183                                                 dbesc('https://graph.facebook.com/' . $jp->id . '/picture'),
184                                                 dbesc(NETWORK_FACEBOOK),
185                                                 intval(REL_BUD),
186                                                 intval(1),
187                                                 intval(1)
188                                         );
189                                 }
190
191                                 $r = q("SELECT * FROM `contact` WHERE `url` = '%s' AND `uid` = %d LIMIT 1",
192                                         dbesc($jp->link),
193                                         intval($uid)
194                                 );
195
196                                 if(! count($r)) {
197                                         continue;
198                                 }
199
200                                 $contact = $r[0];
201                                 $contact_id  = $r[0]['id'];
202
203                                 require_once("Photo.php");
204
205                                 $photos = import_profile_photo($r[0]['photo'],$uid,$contact_id);
206
207                                 $r = q("UPDATE `contact` SET `photo` = '%s', 
208                                         `thumb` = '%s',
209                                         `micro` = '%s', 
210                                         `name-date` = '%s', 
211                                         `uri-date` = '%s', 
212                                         `avatar-date` = '%s'
213                                         WHERE `id` = %d LIMIT 1
214                                 ",
215                                         dbesc($photos[0]),
216                                         dbesc($photos[1]),
217                                         dbesc($photos[2]),
218                                         dbesc(datetime_convert()),
219                                         dbesc(datetime_convert()),
220                                         dbesc(datetime_convert()),
221                                         intval($contact_id)
222                                 );                      
223
224                         }
225                 }
226         }
227 }
228
229
230 function facebook_post(&$a) {
231
232         if(local_user()){
233                 $value = ((x($_POST,'post_by_default')) ? intval($_POST['post_by_default']) : 0);
234                 set_pconfig(local_user(),'facebook','post_by_default', $value);
235         } 
236         return;         
237 }
238
239 function facebook_content(&$a) {
240
241         if(! local_user()) {
242                 notice( t('Permission denied.') . EOL);
243                 return '';
244         }
245
246         if($a->argc > 1 && $a->argv[1] === 'remove') {
247                 del_pconfig(local_user(),'facebook','post');
248                 notice( t('Facebook disabled') . EOL);
249         }
250
251         if($a->argc > 1 && $a->argv[1] === 'friends') {
252                 fb_get_friends(local_user());
253                 notice( t('Updating contacts') . EOL);
254         }
255
256
257         $fb_installed = get_pconfig(local_user(),'facebook','post');
258
259         $appid = get_config('facebook','appid');
260
261         if(! $appid) {
262                 notice( t('Facebook API key is missing.') . EOL);
263                 return '';
264         }
265
266         $a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="' 
267                 . $a->get_baseurl() . '/addon/facebook/facebook.css' . '" media="all" />' . "\r\n";
268
269         $o .= '<h3>' . t('Facebook Connect') . '</h3>';
270
271         if(! $fb_installed) { 
272                 $o .= '<div id="facebook-enable-wrapper">';
273
274                 $o .= '<a href="https://www.facebook.com/dialog/oauth?client_id=' . $appid . '&redirect_uri=' 
275                         . $a->get_baseurl() . '/facebook/' . $a->user['nickname'] . '&scope=publish_stream,read_stream,offline_access">' . t('Install Facebook connector for this account.') . '</a>';
276                 $o .= '</div>';
277         }
278
279         if($fb_installed) {
280                 $o .= '<div id="facebook-disable-wrapper">';
281
282                 $o .= '<a href="' . $a->get_baseurl() . '/facebook/remove' . '">' . t('Remove Facebook connector') . '</a></div>';
283         
284                 $o .= '<div id="facebook-post-default-form">';
285                 $o .= '<form action="facebook" method="post" >';
286                 $post_by_default = get_pconfig(local_user(),'facebook','post_by_default');
287                 $checked = (($post_by_default) ? ' checked="checked" ' : '');
288                 $o .= '<input type="checkbox" name="post_by_default" value="1"' . $checked . '/>' . ' ' . t('Post to Facebook by default') . '<br />';
289                 $o .= '<input type="submit" name="submit" value="' . t('Submit') . '" /></form></div>';
290         }
291
292         return $o;
293 }
294
295 function facebook_install() {
296         register_hook('post_local_end',  'addon/facebook/facebook.php', 'facebook_post_hook');
297         register_hook('jot_networks',    'addon/facebook/facebook.php', 'facebook_jot_nets');
298         register_hook('plugin_settings', 'addon/facebook/facebook.php', 'facebook_plugin_settings');
299         register_hook('cron',            'addon/facebook/facebook.php', 'facebook_cron');
300 }
301
302
303 function facebook_uninstall() {
304         unregister_hook('post_local_end',  'addon/facebook/facebook.php', 'facebook_post_hook');
305         unregister_hook('jot_networks',    'addon/facebook/facebook.php', 'facebook_jot_nets');
306         unregister_hook('plugin_settings', 'addon/facebook/facebook.php', 'facebook_plugin_settings');
307         unregister_hook('cron',            'addon/facebook/facebook.php', 'facebook_cron');
308 }
309
310
311 function facebook_cron($a,$b) {
312
313         $last = get_config('facebook','last_poll');
314         
315         $poll_interval = intval(get_config('facebook','poll_interval'));
316         if(! $poll_interval)
317                 $poll_interval = 3600;
318
319         if($last) {
320                 $next = $last + $poll_interval;
321                 if($next > time()) 
322                         return;
323         }
324
325         logger('facebook_cron');
326
327         set_config('facebook','last_poll', time());
328
329         $r = q("SELECT * FROM `pconfig` WHERE `cat` = 'facebook' AND `k` = 'post' AND `v` = '1' ");
330         if(count($r)) {
331                 foreach($r as $rr) {
332                         // check for new friends once a day
333                         $last_friend_check = get_pconfig($rr['uid'],'facebook','friend_check');
334                         if($last_friend_check) 
335                                 $next_friend_check = $last_friend_check + 86400;
336                         if($next_friend_check <= time()) {
337                                 fb_get_friends($rr['uid']);
338                                 set_pconfig($rr['uid'],'facebook','friend_check',time());
339                         }
340                         fb_consume_all($rr['uid']);
341                 }
342         }       
343 }
344
345
346
347 function facebook_plugin_settings(&$a,&$b) {
348
349         $b .= '<div class="settings-block">';
350         $b .= '<h3>' . t('Facebook') . '</h3>';
351         $b .= '<a href="facebook">' . t('Facebook Connector Settings') . '</a><br />';
352         $b .= '</div>';
353
354 }
355
356 function facebook_jot_nets(&$a,&$b) {
357         if(! local_user())
358                 return;
359
360         $fb_post = get_pconfig(local_user(),'facebook','post');
361         if(intval($fb_post) == 1) {
362                 $fb_defpost = get_pconfig(local_user(),'facebook','post_by_default');
363                 $selected = ((intval($fb_defpost) == 1) ? ' checked="checked" ' : '');
364                 $b .= '<div class="profile-jot-net"><input type="checkbox" name="facebook_enable"' . $selected . 'value="1" /> ' 
365                         . t('Post to Facebook') . '</div>';     
366         }
367 }
368
369
370 function facebook_post_hook(&$a,&$b) {
371
372         /**
373          * Post to Facebook stream
374          */
375
376         require_once('include/group.php');
377
378         logger('Facebook post');
379
380         $reply = false;
381         $likes = false;
382
383         if((local_user()) && (local_user() == $b['uid'])) {
384
385                 if($b['parent']) {
386                         $r = q("SELECT * FROM `item` WHERE `id` = %d AND `uid` = %d LIMIT 1",
387                                 intval($b['parent']),
388                                 intval(local_user())
389                         );
390                         if(count($r) && substr($r[0]['uri'],0,4) === 'fb::')
391                                 $reply = substr($r[0]['uri'],4);
392                         elseif(count($r) && substr($r[0]['extid'],0,4) === 'fb::')
393                                 $reply = substr($r[0]['extid'],4);
394                         else
395                                 return;
396                         logger('facebook reply id=' . $reply);
397                 }
398
399                 if($b['private'] && $reply == false) {
400                         $allow_people = expand_acl($b['allow_cid']);
401                         $allow_groups = expand_groups(expand_acl($b['allow_gid']));
402                         $deny_people  = expand_acl($b['deny_cid']);
403                         $deny_groups  = expand_groups(expand_acl($b['deny_gid']));
404
405                         $recipients = array_unique(array_merge($allow_people,$allow_groups));
406                         $deny = array_unique(array_merge($deny_people,$deny_groups));
407
408                         $allow_str = dbesc(implode(', ',$recipients));
409                         if($allow_str) {
410                                 $r = q("SELECT `notify` FROM `contact` WHERE `id` IN ( $allow_str ) AND `network` = 'face'"); 
411                                 $allow_arr = array();
412                                 if(count($r)) 
413                                         foreach($r as $rr)
414                                                 $allow_arr[] = $rr['notify'];
415                         }
416
417                         $deny_str = dbesc(implode(', ',$deny));
418                         if($deny_str) {
419                                 $r = q("SELECT `notify` FROM `contact` WHERE `id` IN ( $deny_str ) AND `network` = 'face'"); 
420                                 $deny_arr = array();
421                                 if(count($r)) 
422                                         foreach($r as $rr)
423                                                 $deny_arr[] = $rr['notify'];
424                         }
425
426                         if(count($deny_arr) && (! count($allow_arr))) {
427
428                                 // One or more FB folks were denied access but nobody on FB was specifically allowed access.
429                                 // This might cause the post to be open to public on Facebook, but only to selected members
430                                 // on another network. Since this could potentially leak a post to somebody who was denied, 
431                                 // we will skip posting it to Facebook with a slightly vague but relevant message that will 
432                                 // hopefully lead somebody to this code comment for a better explanation of what went wrong.
433
434                                 notice( t('Post to Facebook cancelled because of multi-network access permission conflict.') . EOL);
435                                 return;
436                         }
437
438
439                         // if it's a private message but no Facebook members are allowed or denied, skip Facebook post
440
441                         if((! count($allow_arr)) && (! count($deny_arr)))
442                                 return;
443                 }
444
445                 if($b['verb'] == ACTIVITY_LIKE)
446                         $likes = true;                          
447
448
449                 $appid  = get_config('facebook', 'appid'  );
450                 $secret = get_config('facebook', 'appsecret' );
451
452                 if($appid && $secret) {
453
454                         logger('facebook: have appid+secret');
455
456                         $fb_post   = intval(get_pconfig(local_user(),'facebook','post'));
457                         $fb_enable = (($fb_post && x($_POST,'facebook_enable')) ? intval($_POST['facebook_enable']) : 0);
458                         $fb_token  = get_pconfig(local_user(),'facebook','access_token');
459
460                         logger('facebook: $fb_post: ' . $fb_post . ' $fb_enable: ' . $fb_enable . ' $fb_token: ' . $fb_token,LOGGER_DEBUG); 
461
462                         // post to facebook if it's a public post and we've ticked the 'post to Facebook' box, 
463                         // or it's a private message with facebook participants
464                         // or it's a reply or likes action to an existing facebook post                 
465
466                         if($fb_post && $fb_token && ($fb_enable || $b['private'] || $reply)) {
467                                 logger('facebook: able to post');
468                                 require_once('library/facebook.php');
469                                 require_once('include/bbcode.php');     
470
471                                 $msg = $b['body'];
472
473                                 logger('Facebook post: original msg=' . $msg, LOGGER_DATA);
474
475                                 // make links readable before we strip the code
476
477                                 if(preg_match("/\[url=(.+?)\](.+?)\[\/url\]/is",$msg,$matches)) {
478
479                                         $link = $matches[1];
480                                         if(substr($matches[2],0,5) != '[img]' )
481                                                 $linkname = $matches[2];
482                                 }
483
484                                 $msg = preg_replace("/\[url=(.+?)\](.+?)\[\/url\]/is",'$2 $1',$msg);
485
486                                 if(preg_match("/\[img\](.+?)\[\/img\]/is",$msg,$matches))
487                                         $image = $matches[1];
488
489                                 $msg = preg_replace("/\[img\](.+?)\[\/img\]/is", t('Image: ') . '$1', $msg);
490
491
492
493                                 $msg = trim(strip_tags(bbcode($msg)));
494                                 $msg = html_entity_decode($msg,ENT_QUOTES,'UTF-8');
495
496                                 if (strlen($msg) > FACEBOOK_MAXPOSTLEN) {
497                                         $shortlink = "";
498                                         require_once('library/slinky.php');
499
500                                         $display_url = $a->get_baseurl() . '/display/' . $a->user['nickname'] . '/' . $b['id'];
501                                         $slinky = new Slinky( $display_url );
502                                         // setup a cascade of shortening services
503                                         // try to get a short link from these services
504                                         // in the order ur1.ca, trim, id.gd, tinyurl
505                                         $slinky->set_cascade( array( new Slinky_UR1ca(), new Slinky_Trim(), new Slinky_IsGd(), new Slinky_TinyURL() ) );
506                                         $shortlink = $slinky->short();
507                                         // the new message will be shortened such that "... $shortlink"
508                                         // will fit into the character limit
509                                         $msg = substr($msg, 0, FACEBOOK_MAXPOSTLEN - strlen($shortlink) - 4);
510                                         $msg .= '... ' . $shortlink;
511                                 }
512                                 if(! strlen($msg))
513                                         return;
514
515                                 logger('Facebook post: msg=' . $msg, LOGGER_DATA);
516
517                                 if($likes) { 
518                                         $postvars = array('access_token' => $fb_token);
519                                 }
520                                 else {
521                                         $postvars = array(
522                                                 'access_token' => $fb_token, 
523                                                 'message' => $msg
524                                         );
525                                         if(isset($image))
526                                                 $postvars['picture'] = $image;
527                                         if(isset($link))
528                                                 $postvars['link'] = $link;
529                                         if(isset($linkname))
530                                                 $postvars['name'] = $linkname;
531                                 }
532
533                                 if(($b['private']) && (! $b['parent'])) {
534                                         $postvars['privacy'] = '{"value": "CUSTOM", "friends": "SOME_FRIENDS"';
535                                         if(count($allow_arr))
536                                                 $postvars['privacy'] .= ',"allow": "' . implode(',',$allow_arr) . '"';
537                                         if(count($deny_arr))
538                                                 $postvars['privacy'] .= ',"deny": "' . implode(',',$deny_arr) . '"';
539                                         $postvars['privacy'] .= '}';
540
541                                 }
542
543                                 if($reply) {
544                                         $url = 'https://graph.facebook.com/' . $reply . '/' . (($likes) ? 'likes' : 'comments');
545                                 }
546                                 else { 
547                                         $url = 'https://graph.facebook.com/me/feed';
548                                         if($b['plink'])
549                                                 $postvars['actions'] = '{"name": "' . t('View on Friendika') . '", "link": "' .  $b['plink'] . '"}';
550                                 }
551
552                                 logger('facebook: post to ' . $url);
553                                 logger('facebook: postvars: ' . print_r($postvars,true));
554
555                                 // "test_mode" prevents anything from actually being posted.
556                                 // Otherwise, let's do it. 
557
558                                 if(! get_config('facebook','test_mode'))
559                                         $x = post_url($url, $postvars);
560
561                                 $retj = json_decode($x);
562                                 if($retj->id) {
563                                         q("UPDATE `item` SET `extid` = '%s' WHERE `id` = %d LIMIT 1",
564                                                 dbesc('fb::' . $retj->id),
565                                                 intval($b['id'])
566                                         );
567                                 }
568                                 
569                                 logger('Facebook post returns: ' . $x, LOGGER_DEBUG);
570
571                         }
572                 }
573         }
574 }
575
576
577 function fb_consume_all($uid) {
578
579         require_once('include/items.php');
580
581         $access_token = get_pconfig($uid,'facebook','access_token');
582         if(! $access_token)
583                 return;
584         $s = fetch_url('https://graph.facebook.com/me/feed?access_token=' . $access_token);
585         if($s) {
586                 $j = json_decode($s);
587                 logger('fb_consume_stream: wall: ' . print_r($j,true), LOGGER_DATA);
588                 fb_consume_stream($uid,$j,true);
589         }
590         $s = fetch_url('https://graph.facebook.com/me/home?access_token=' . $access_token);
591         if($s) {
592                 $j = json_decode($s);
593                 logger('fb_consume_stream: feed: ' . print_r($j,true), LOGGER_DATA);
594                 fb_consume_stream($uid,$j,false);
595         }
596
597 }
598
599 function fb_consume_stream($uid,$j,$wall = false) {
600         $a = get_app();
601
602         $self = q("SELECT * FROM `contact` WHERE `self` = 1 AND `uid` = %d LIMIT 1",
603                 intval($uid)
604         );
605
606         $user = q("SELECT `nickname` FROM `user` WHERE `uid` = %d LIMIT 1",
607                 intval($uid)
608         );
609         if(count($user))
610                 $my_local_url = $a->get_baseurl() . '/profile/' . $user[0]['nickname'];
611
612
613         $self_id = get_pconfig($uid,'facebook','self_id');
614         if(! count($j->data) || (! strlen($self_id)))
615                 return;
616
617         foreach($j->data as $entry) {
618                 logger('fb_consume: entry: ' . print_r($entry,true), LOGGER_DATA);
619                 $datarray = array();
620                 $we_posted = false;
621                 $app = $entry->application;
622                 if($app->id == get_config('facebook','appid') && $wall)
623                         $we_posted = true;
624
625                 $r = q("SELECT * FROM `item` WHERE ( `uri` = '%s' OR `extid` = '%s') AND `uid` = %d LIMIT 1",
626                                 dbesc('fb::' . $entry->id),
627                                 dbesc('fb::' . $entry->id),
628                                 intval($uid)
629                 );
630                 if(count($r)) {
631                         $post_exists = true;
632                         $orig_post = $r[0];
633                         $top_item = $r[0]['id'];
634                 }
635                 else {
636                         $post_exists = false;
637                         $orig_post = null;
638                 }
639
640                 if(! $orig_post) {
641                         $datarray['gravity'] = 0;
642                         $datarray['uid'] = $uid;
643                         $datarray['wall'] = (($wall) ? 1 : 0);
644                         $datarray['uri'] = $datarray['parent-uri'] = 'fb::' . $entry->id;
645                         $from = $entry->from;
646                         if($from->id == $self_id)
647                                 $datarray['contact-id'] = $self[0]['id'];
648                         else {
649                                 $r = q("SELECT * FROM `contact` WHERE `notify` = '%s' AND `uid` = %d AND `blocked` = 0 AND `readonly` = 0 LIMIT 1",
650                                         dbesc($from->id),
651                                         intval($uid)
652                                 );
653                                 if(count($r))
654                                         $datarray['contact-id'] = $r[0]['id'];
655                         }
656
657                         // don't store post if we don't have a contact
658
659                         if(! x($datarray,'contact-id'))
660                                 continue; 
661
662                         $datarray['verb'] = ACTIVITY_POST;                                              
663                         if($wall) {
664                                 $datarray['owner-name'] = $self[0]['name'];
665                                 $datarray['owner-link'] = $self[0]['url'];
666                                 $datarray['owner-avatar'] = $self[0]['thumb'];
667                         }
668                         $datarray['author-name'] = $from->name;
669                         $datarray['author-link'] = 'http://facebook.com/profile.php?id=' . $from->id;
670                         $datarray['author-avatar'] = 'https://graph.facebook.com/' . $from->id . '/picture';
671                         $datarray['plink'] = $datarray['author-link'] . '&v=wall&story_fbid=' . substr($entry->id,strpos($entry->id,'_') + 1);
672
673                         $datarray['body'] = $entry->message;
674                         if($entry->picture)
675                                 $datarray['body'] .= "\n\n" . '[img]' . $entry->picture . '[/img]';
676                         if($entry->link)
677                                 $datarray['body'] .= "\n" . linkify($entry->link);
678                         if($entry->name)
679                                 $datarray['body'] .= "\n" . $entry->name;
680                         if($entry->caption)
681                                 $datarray['body'] .= "\n" . $entry->caption;
682                         if($entry->description)
683                                 $datarray['body'] .= "\n" . $entry->description;
684                         $datarray['created'] = datetime_convert('UTC','UTC',$entry->created_time);
685                         $datarray['edited'] = datetime_convert('UTC','UTC',$entry->updated_time);
686                         if($entry->privacy && $entry->privacy->value !== 'EVERYONE')
687                                 $datarray['private'] = 1;                       
688                         $top_item = item_store($datarray);
689                         $r = q("SELECT * FROM `item` WHERE `id` = %d AND `uid` = %d LIMIT 1",
690                                 intval($top_item),
691                                 intval($uid)
692                         );                      
693                         if(count($r))
694                                 $orig_post = $r[0];
695
696                 }
697                 $likers = $entry->likes->data;
698                 $comments = $entry->comments->data;
699
700                 if(is_array($likers)) {
701                         foreach($likers as $likes) {
702
703                                 if(! $orig_post)
704                                         continue;
705
706                                 $r = q("SELECT * FROM `item` WHERE `parent-uri` = '%s' AND `uid` = %d AND `verb` = '%s' AND `author-link` = '%s' LIMIT 1",
707                                         dbesc($orig_post['uri']),
708                                         intval($uid),
709                                         dbesc(ACTIVITY_LIKE),
710                                         dbesc('http://facebook.com/profile.php?id=' . $likes->id)
711                                 );
712
713                                 if(count($r))
714                                         continue;
715                                         
716                                 $likedata = array();
717                                 $likedata['parent'] = $top_item;
718                                 $likedata['verb'] = ACTIVITY_LIKE;
719                                 $likedata['gravity'] = 3;
720                                 $likedata['uid'] = $uid;
721                                 $likedata['wall'] = (($wall) ? 1 : 0);
722                                 $likedata['uri'] = item_new_uri($a->get_baseurl(), $uid);
723                                 $likedata['parent-uri'] = $orig_post['uri'];
724                                 if($likes->id == $self_id)
725                                         $likedata['contact-id'] = $self[0]['id'];
726                                 else {
727                                         $r = q("SELECT * FROM `contact` WHERE `notify` = '%s' AND `uid` = %d AND `blocked` = 0 AND `readonly` = 0 LIMIT 1",
728                                                 dbesc($likes->id),
729                                                 intval($uid)
730                                         );
731                                         if(count($r))
732                                                 $likedata['contact-id'] = $r[0]['id'];
733                                 }
734                                 if(! x($likedata,'contact-id'))
735                                         $likedata['contact-id'] = $orig_post['contact-id'];
736
737                                 $likedata['verb'] = ACTIVITY_LIKE;                                              
738                                 $likedata['author-name'] = $likes->name;
739                                 $likedata['author-link'] = 'http://facebook.com/profile.php?id=' . $likes->id;
740                                 $likedata['author-avatar'] = 'https://graph.facebook.com/' . $likes->id . '/picture';
741                                 
742                                 $author  = '[url=' . $likedata['author-link'] . ']' . $likedata['author-name'] . '[/url]';
743                                 $objauthor =  '[url=' . $orig_post['author-link'] . ']' . $orig_post['author-name'] . '[/url]';
744                                 $post_type = t('status');
745                         $plink = '[url=' . $orig_post['plink'] . ']' . $post_type . '[/url]';
746                                 $likedata['object-type'] = ACTIVITY_OBJ_NOTE;
747
748                                 $likedata['body'] = sprintf( t('%1$s likes %2$s\'s %3$s'), $author, $objauthor, $plink);
749                                 $likedata['object'] = '<object><type>' . ACTIVITY_OBJ_NOTE . '</type><local>1</local>' . 
750                                         '<id>' . $orig_post['uri'] . '</id><link>' . xmlify('<link rel="alternate" type="text/html" href="' . $orig_post['plink'] . '">') . '</link><title>' . $orig_post['title'] . '</title><content>' . $orig_post['body'] . '</content></object>';  
751
752                                 $item = item_store($likedata);                  
753                         }
754                 }
755                 if(is_array($comments)) {
756                         foreach($comments as $cmnt) {
757
758                                 if(! $orig_post)
759                                         continue;
760
761                                 $r = q("SELECT * FROM `item` WHERE `uid` = %d AND ( `uri` = '%s' OR `extid` = '%s' ) LIMIT 1",
762                                         intval($uid),
763                                         dbesc('fb::' . $cmnt->id),
764                                         dbesc('fb::' . $cmnt->id)
765                                 );
766                                 if(count($r))
767                                         continue;
768
769                                 $cmntdata = array();
770                                 $cmntdata['parent'] = $top_item;
771                                 $cmntdata['verb'] = ACTIVITY_POST;
772                                 $cmntdata['gravity'] = 6;
773                                 $cmntdata['uid'] = $uid;
774                                 $cmntdata['wall'] = (($wall) ? 1 : 0);
775                                 $cmntdata['uri'] = 'fb::' . $cmnt->id;
776                                 $cmntdata['parent-uri'] = $orig_post['uri'];
777                                 if($cmnt->from->id == $self_id) {
778                                         $cmntdata['contact-id'] = $self[0]['id'];
779                                 }
780                                 else {
781                                         $r = q("SELECT * FROM `contact` WHERE `notify` = '%s' AND `uid` = %d AND `blocked` = 0 AND `readonly` = 0 LIMIT 1",
782                                                 dbesc($cmnt->from->id),
783                                                 intval($uid)
784                                         );
785                                         if(count($r))
786                                                 $cmntdata['contact-id'] = $r[0]['id'];
787                                 }
788                                 if(! x($cmntdata,'contact-id'))
789                                         $cmntdata['contact-id'] = $orig_post['contact-id'];
790
791                                 $cmntdata['created'] = datetime_convert('UTC','UTC',$cmnt->created_time);
792                                 $cmntdata['edited']  = datetime_convert('UTC','UTC',$cmnt->created_time);
793                                 $cmntdata['verb'] = ACTIVITY_POST;                                              
794                                 $cmntdata['author-name'] = $cmnt->from->name;
795                                 $cmntdata['author-link'] = 'http://facebook.com/profile.php?id=' . $cmnt->from->id;
796                                 $cmntdata['author-avatar'] = 'https://graph.facebook.com/' . $cmnt->from->id . '/picture';
797                                 $cmntdata['body'] = $cmnt->message;
798                                 $item = item_store($cmntdata);                  
799                         }
800                 }
801         }
802 }
803