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