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