]> git.mxchange.org Git - friendica-addons.git/blob - fbpost/fbpost.php
Mirroring: There was a problem that the title variable wasn't cleared so it could...
[friendica-addons.git] / fbpost / fbpost.php
1 <?php
2 /**
3  * Name: Facebook Post Connector
4  * Version: 1.3
5  * Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
6  * Author: Tobias Hößl <https://github.com/CatoTH/>
7  *
8  */
9
10 /**
11  * Installing the Friendica/Facebook connector
12  *
13  * Detailed instructions how to use this plugin can be found at
14  * https://github.com/friendica/friendica/wiki/How-to:-Friendica%E2%80%99s-Facebook-connector
15  *
16  * Vidoes and embeds will not be posted if there is no other content. Links 
17  * and images will be converted to a format suitable for the Facebook API and 
18  * long posts truncated - with a link to view the full post. 
19  *
20  * Facebook contacts will not be able to view private photos, as they are not able to
21  * authenticate to your site to establish identity. We will address this 
22  * in a future release.
23  */
24
25 define('FACEBOOK_DEFAULT_POLL_INTERVAL', 5); // given in minutes
26
27 require_once('include/security.php');
28
29 function fbpost_install() {
30         register_hook('post_local',       'addon/fbpost/fbpost.php', 'fbpost_post_local');
31         register_hook('notifier_normal',  'addon/fbpost/fbpost.php', 'fbpost_post_hook');
32         register_hook('jot_networks',     'addon/fbpost/fbpost.php', 'fbpost_jot_nets');
33         register_hook('connector_settings',  'addon/fbpost/fbpost.php', 'fbpost_plugin_settings');
34         register_hook('enotify',          'addon/fbpost/fbpost.php', 'fbpost_enotify');
35         register_hook('queue_predeliver', 'addon/fbpost/fbpost.php', 'fbpost_queue_hook');
36         register_hook('cron',             'addon/fbpost/fbpost.php', 'fbpost_cron');
37 }
38
39
40 function fbpost_uninstall() {
41         unregister_hook('post_local',       'addon/fbpost/fbpost.php', 'fbpost_post_local');
42         unregister_hook('notifier_normal',  'addon/fbpost/fbpost.php', 'fbpost_post_hook');
43         unregister_hook('jot_networks',     'addon/fbpost/fbpost.php', 'fbpost_jot_nets');
44         unregister_hook('connector_settings',  'addon/fbpost/fbpost.php', 'fbpost_plugin_settings');
45         unregister_hook('enotify',          'addon/fbpost/fbpost.php', 'fbpost_enotify');
46         unregister_hook('queue_predeliver', 'addon/fbpost/fbpost.php', 'fbpost_queue_hook');
47         unregister_hook('cron',             'addon/fbpost/fbpost.php', 'fbpost_cron');
48 }
49
50
51 /* declare the fbpost_module function so that /fbpost url requests will land here */
52
53 function fbpost_module() {}
54
55
56
57 // If a->argv[1] is a nickname, this is a callback from Facebook oauth requests.
58 // If $_REQUEST["realtime_cb"] is set, this is a callback from the Real-Time Updates API
59
60 /**
61  * @param App $a
62  */
63 function fbpost_init(&$a) {
64
65         if($a->argc != 2)
66                 return;
67
68         $nick = $a->argv[1];
69
70         if(strlen($nick))
71                 $r = q("SELECT `uid` FROM `user` WHERE `nickname` = '%s' LIMIT 1",
72                                 dbesc($nick)
73                 );
74         if(!(isset($r) && count($r)))
75                 return;
76
77         $uid           = $r[0]['uid'];
78         $auth_code     = (x($_GET, 'code') ? $_GET['code'] : '');
79         $error         = (x($_GET, 'error_description') ? $_GET['error_description'] : '');
80
81
82         if($error)
83                 logger('fbpost_init: Error: ' . $error);
84
85         if($auth_code && $uid) {
86
87                 $appid = get_config('facebook','appid');
88                 $appsecret = get_config('facebook', 'appsecret');
89
90                 $x = fetch_url('https://graph.facebook.com/oauth/access_token?client_id='
91                         . $appid . '&client_secret=' . $appsecret . '&redirect_uri='
92                         . urlencode($a->get_baseurl() . '/fbpost/' . $nick)
93                         . '&code=' . $auth_code);
94
95                 logger('fbpost_init: returned access token: ' . $x, LOGGER_DATA);
96
97                 if(strpos($x,'access_token=') !== false) {
98                         $token = str_replace('access_token=', '', $x);
99                         if(strpos($token,'&') !== false)
100                                 $token = substr($token,0,strpos($token,'&'));
101                         set_pconfig($uid,'facebook','access_token',$token);
102                         set_pconfig($uid,'facebook','post','1');
103                         fbpost_get_self($uid);
104                 }
105
106         }
107
108 }
109
110
111 /**
112  * @param int $uid
113  */
114 function fbpost_get_self($uid) {
115         $access_token = get_pconfig($uid,'facebook','access_token');
116         if(! $access_token)
117                 return;
118         $s = fetch_url('https://graph.facebook.com/me/?access_token=' . $access_token);
119         if($s) {
120                 $j = json_decode($s);
121                 set_pconfig($uid,'facebook','self_id',(string) $j->id);
122         }
123 }
124
125
126 // This is the POST method to the facebook settings page
127 // Content is posted to Facebook in the function facebook_post_hook()
128
129 /**
130  * @param App $a
131  */
132 function fbpost_post(&$a) {
133
134         $uid = local_user();
135         if($uid){
136
137
138                 $fb_limited = get_config('facebook','crestrict');
139
140
141                 $value = ((x($_POST,'post_by_default')) ? intval($_POST['post_by_default']) : 0);
142                 set_pconfig($uid,'facebook','post_by_default', $value);
143
144                 $value = ((x($_POST,'mirror_posts')) ? intval($_POST['mirror_posts']) : 0);
145                 set_pconfig($uid,'facebook','mirror_posts', $value);
146
147                 $value = ((x($_POST,'suppress_view_on_friendica')) ? intval($_POST['suppress_view_on_friendica']) : 0);
148                 set_pconfig($uid,'facebook','suppress_view_on_friendica', $value);
149
150                 $value = ((x($_POST,'post_to_page')) ? $_POST['post_to_page'] : "0-0");
151                 $values = explode("-", $value);
152                 set_pconfig($uid,'facebook','post_to_page', $values[0]);
153                 set_pconfig($uid,'facebook','page_access_token', $values[1]);
154
155                 info( t('Settings updated.') . EOL);
156         }
157
158         return;
159 }
160
161 // Facebook settings form
162
163 /**
164  * @param App $a
165  * @return string
166  */
167 function fbpost_content(&$a) {
168
169         if(! local_user()) {
170                 notice( t('Permission denied.') . EOL);
171                 return '';
172         }
173
174
175         if(! service_class_allows(local_user(),'facebook_connect')) {
176                 notice( t('Permission denied.') . EOL);
177                 return upgrade_bool_message();
178         }
179
180
181         if($a->argc > 1 && $a->argv[1] === 'remove') {
182                 del_pconfig(local_user(),'facebook','post');
183                 info( t('Facebook Post disabled') . EOL);
184         }
185
186         $o = '';
187         
188         $fb_installed = false;
189         if (get_pconfig(local_user(),'facebook','post')) {
190                 $access_token = get_pconfig(local_user(),'facebook','access_token');
191                 if ($access_token) {
192                         $s = fetch_url('https://graph.facebook.com/me/feed?access_token=' . $access_token);
193                         if($s) {
194                                 $j = json_decode($s);
195                                 if (isset($j->data)) $fb_installed = true;
196                         }
197                 }
198         }
199         
200         $appid = get_config('facebook','appid');
201
202         if(! $appid) {
203                 notice( t('Facebook API key is missing.') . EOL);
204                 return '';
205         }
206
207         $a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="'
208                 . $a->get_baseurl() . '/addon/fbpost/fbpost.css' . '" media="all" />' . "\r\n";
209
210         $o .= '<h3>' . t('Facebook Post') . '</h3>';
211
212         if(! $fb_installed) { 
213                 $o .= '<div id="fbpost-enable-wrapper">';
214
215                 $o .= '<a href="https://www.facebook.com/dialog/oauth?client_id=' . $appid . '&redirect_uri=' 
216                         . $a->get_baseurl() . '/fbpost/' . $a->user['nickname'] . '&scope=read_stream,publish_stream,manage_pages,photo_upload,user_groups,offline_access">' . t('Install Facebook Post connector for this account.') . '</a>';
217                 $o .= '</div>';
218         }
219
220         if($fb_installed) {
221                 $o .= '<div id="fbpost-disable-wrapper">';
222
223                 $o .= '<a href="' . $a->get_baseurl() . '/fbpost/remove' . '">' . t('Remove Facebook Post connector') . '</a></div>';
224
225                 $o .= '<div id="fbpost-enable-wrapper">';
226
227                 $o .= '<a href="https://www.facebook.com/dialog/oauth?client_id=' . $appid . '&redirect_uri=' 
228                         . $a->get_baseurl() . '/fbpost/' . $a->user['nickname'] . '&scope=read_stream,publish_stream,manage_pages,photo_upload,user_groups,offline_access">' . t('Re-authenticate [This is necessary whenever your Facebook password is changed.]') . '</a>';
229                 $o .= '</div>';
230
231                 $o .= '<div id="fbpost-post-default-form">';
232                 $o .= '<form action="fbpost" method="post" >';
233                 $post_by_default = get_pconfig(local_user(),'facebook','post_by_default');
234                 $checked = (($post_by_default) ? ' checked="checked" ' : '');
235                 $o .= '<input type="checkbox" name="post_by_default" value="1"' . $checked . '/>' . ' ' . t('Post to Facebook by default') . EOL;
236
237                 $suppress_view_on_friendica = get_pconfig(local_user(),'facebook','suppress_view_on_friendica');
238                 $checked = (($suppress_view_on_friendica) ? ' checked="checked" ' : '');
239                 $o .= '<input type="checkbox" name="suppress_view_on_friendica" value="1"' . $checked . '/>' . ' ' . t('Suppress "View on friendica"') . EOL;
240
241                 $mirror_posts = get_pconfig(local_user(),'facebook','mirror_posts');
242                 $checked = (($mirror_posts) ? ' checked="checked" ' : '');
243                 $o .= '<input type="checkbox" name="mirror_posts" value="1"' . $checked . '/>' . ' ' . t('Mirror wall posts from facebook to friendica.') . EOL;
244
245                 // List all pages
246                 $post_to_page = get_pconfig(local_user(),'facebook','post_to_page');
247                 $page_access_token = get_pconfig(local_user(),'facebook','page_access_token');
248                 $fb_token  = get_pconfig($a->user['uid'],'facebook','access_token');
249                 $url = 'https://graph.facebook.com/me/accounts';
250                 $x = fetch_url($url."?access_token=".$fb_token);
251                 $accounts = json_decode($x);
252
253                 $o .= t("Post to page/group:")."<select name='post_to_page'>";
254                 if (intval($post_to_page) == 0)
255                         $o .= "<option value='0-0' selected>".t('None')."</option>";
256                 else
257                         $o .= "<option value='0-0'>".t('None')."</option>";
258
259                 foreach($accounts->data as $account) {
260                         if (is_array($account->perms))
261                                 if ($post_to_page == $account->id)
262                                         $o .= "<option value='".$account->id."-".$account->access_token."' selected>".$account->name."</option>";
263                                 else
264                                         $o .= "<option value='".$account->id."-".$account->access_token."'>".$account->name."</option>";
265                 }
266
267                 $url = 'https://graph.facebook.com/me/groups';
268                 $x = fetch_url($url."?access_token=".$fb_token);
269                 $groups = json_decode($x);
270
271                 foreach($groups->data as $group) {
272                         if ($post_to_page == $group->id)
273                                 $o .= "<option value='".$group->id."-0' selected>".$group->name."</option>";
274                         else
275                                 $o .= "<option value='".$group->id."-0'>".$group->name."</option>";
276                 }
277
278                 $o .= "</select>";
279
280                 $o .= '<p><input type="submit" name="submit" value="' . t('Submit') . '" /></form></div>';
281
282         }
283
284         return $o;
285 }
286
287 /**
288  * @param App $a
289  * @param null|object $b
290  */
291 function fbpost_plugin_settings(&$a,&$b) {
292
293         $b .= '<div class="settings-block">';
294         $b .= '<h3>' . t('Facebook') . '</h3>';
295         $b .= '<a href="fbpost">' . t('Facebook Post Settings') . '</a><br />';
296         $b .= '</div>';
297
298 }
299
300
301 /**
302  * @param App $a
303  * @param null|object $o
304  */
305 function fbpost_plugin_admin(&$a, &$o){
306
307
308         $o = '<input type="hidden" name="form_security_token" value="' . get_form_security_token("fbsave") . '">';
309         
310         $o .= '<h4>' . t('Facebook API Key') . '</h4>';
311         
312         $appid  = get_config('facebook', 'appid'  );
313         $appsecret = get_config('facebook', 'appsecret' );
314         
315         $ret1 = q("SELECT `v` FROM `config` WHERE `cat` = 'facebook' AND `k` = 'appid' LIMIT 1");
316         $ret2 = q("SELECT `v` FROM `config` WHERE `cat` = 'facebook' AND `k` = 'appsecret' LIMIT 1");
317         if ((count($ret1) > 0 && $ret1[0]['v'] != $appid) || (count($ret2) > 0 && $ret2[0]['v'] != $appsecret)) $o .= t('Error: it appears that you have specified the App-ID and -Secret in your .htconfig.php file. As long as they are specified there, they cannot be set using this form.<br><br>');
318         
319         $o .= '<label for="fb_appid">' . t('App-ID / API-Key') . '</label><input id="fb_appid" name="appid" type="text" value="' . escape_tags($appid ? $appid : "") . '"><br style="clear: both;">';
320         $o .= '<label for="fb_appsecret">' . t('Application secret') . '</label><input id="fb_appsecret" name="appsecret" type="text" value="' . escape_tags($appsecret ? $appsecret : "") . '"><br style="clear: both;">';
321
322         $o .= '<input type="submit" name="fb_save_keys" value="' . t('Save') . '">';
323         
324 }
325
326 /**
327  * @param App $a
328  */
329
330 function fbpost_plugin_admin_post(&$a){
331         check_form_security_token_redirectOnErr('/admin/plugins/fbpost', 'fbsave');
332         
333         if (x($_REQUEST,'fb_save_keys')) {
334                 set_config('facebook', 'appid', $_REQUEST['appid']);
335                 set_config('facebook', 'appsecret', $_REQUEST['appsecret']);
336
337                 info(t('The new values have been saved.'));
338         }
339
340 }
341
342 /**
343  * @param App $a
344  * @param object $b
345  * @return mixed
346  */
347 function fbpost_jot_nets(&$a,&$b) {
348         if(! local_user())
349                 return;
350
351         $fb_post = get_pconfig(local_user(),'facebook','post');
352         if(intval($fb_post) == 1) {
353                 $fb_defpost = get_pconfig(local_user(),'facebook','post_by_default');
354                 $selected = ((intval($fb_defpost) == 1) ? ' checked="checked" ' : '');
355                 $b .= '<div class="profile-jot-net"><input type="checkbox" name="facebook_enable"' . $selected . ' value="1" /> ' 
356                         . t('Post to Facebook') . '</div>';
357         }
358 }
359
360 function fbpost_ShareAttributes($match) {
361
362         $attributes = $match[1];
363
364         $author = "";
365         preg_match("/author='(.*?)'/ism", $attributes, $matches);
366         if ($matches[1] != "")
367                 $author = $matches[1];
368
369         preg_match('/author="(.*?)"/ism', $attributes, $matches);
370         if ($matches[1] != "")
371                 $author = $matches[1];
372
373         $headline = '<div class="shared_header">';
374
375         $headline .= sprintf(t('%s:'), $author);
376
377         $headline .= "</div>";
378
379         //$text = "<br />".$headline."</strong><blockquote>".$match[2]."</blockquote>";
380         $text = "\n\t".$match[2].":\t";
381
382         return($text);
383 }
384
385
386 /**
387  * @param App $a
388  * @param object $b
389  * @return mixed
390  */
391 function fbpost_post_hook(&$a,&$b) {
392
393
394         if($b['deleted'] || ($b['created'] !== $b['edited']))
395                 return;
396
397         // Don't transmit answers (have to be cleaned up in the following code)
398         if($b['parent'] != $b['id'])
399                 return;
400
401         // if post comes from facebook don't send it back
402         if($b['app'] == "Facebook")
403                 return;
404
405         /**
406          * Post to Facebook stream
407          */
408
409         require_once('include/group.php');
410         require_once('include/html2plain.php');
411
412         logger('Facebook post');
413
414         $reply = false;
415         $likes = false;
416
417         $deny_arr = array();
418         $allow_arr = array();
419
420         $toplevel = (($b['id'] == $b['parent']) ? true : false);
421
422
423         $linking = ((get_pconfig($b['uid'],'facebook','no_linking')) ? 0 : 1);
424
425         if((! $toplevel) && ($linking)) {
426                 $r = q("SELECT * FROM `item` WHERE `id` = %d AND `uid` = %d LIMIT 1",
427                         intval($b['parent']),
428                         intval($b['uid'])
429                 );
430                 if(count($r) && substr($r[0]['uri'],0,4) === 'fb::')
431                         $reply = substr($r[0]['uri'],4);
432                 elseif(count($r) && substr($r[0]['extid'],0,4) === 'fb::')
433                         $reply = substr($r[0]['extid'],4);
434                 else
435                         return;
436
437                 $u = q("SELECT * FROM user where uid = %d limit 1",
438                         intval($b['uid'])
439                 );
440                 if(! count($u))
441                         return;
442
443                 // only accept comments from the item owner. Other contacts are unknown to FB.
444
445                 if(! link_compare($b['author-link'], $a->get_baseurl() . '/profile/' . $u[0]['nickname']))
446                         return;
447
448
449                 logger('facebook reply id=' . $reply);
450         }
451
452         if(strstr($b['postopts'],'facebook') || ($b['private']) || ($reply)) {
453
454                 if($b['private'] && $reply === false) {
455                         $allow_people = expand_acl($b['allow_cid']);
456                         $allow_groups = expand_groups(expand_acl($b['allow_gid']));
457                         $deny_people  = expand_acl($b['deny_cid']);
458                         $deny_groups  = expand_groups(expand_acl($b['deny_gid']));
459
460                         $recipients = array_unique(array_merge($allow_people,$allow_groups));
461                         $deny = array_unique(array_merge($deny_people,$deny_groups));
462
463                         $allow_str = dbesc(implode(', ',$recipients));
464                         if($allow_str) {
465                                 $r = q("SELECT `notify` FROM `contact` WHERE `id` IN ( $allow_str ) AND `network` = 'face'"); 
466                                 if(count($r))
467                                         foreach($r as $rr)
468                                                 $allow_arr[] = $rr['notify'];
469                         }
470
471                         $deny_str = dbesc(implode(', ',$deny));
472                         if($deny_str) {
473                                 $r = q("SELECT `notify` FROM `contact` WHERE `id` IN ( $deny_str ) AND `network` = 'face'"); 
474                                 if(count($r))
475                                         foreach($r as $rr)
476                                                 $deny_arr[] = $rr['notify'];
477                         }
478
479                         if(count($deny_arr) && (! count($allow_arr))) {
480
481                                 // One or more FB folks were denied access but nobody on FB was specifically allowed access.
482                                 // This might cause the post to be open to public on Facebook, but only to selected members
483                                 // on another network. Since this could potentially leak a post to somebody who was denied, 
484                                 // we will skip posting it to Facebook with a slightly vague but relevant message that will 
485                                 // hopefully lead somebody to this code comment for a better explanation of what went wrong.
486
487                                 notice( t('Post to Facebook cancelled because of multi-network access permission conflict.') . EOL);
488                                 return;
489                         }
490
491
492                         // if it's a private message but no Facebook members are allowed or denied, skip Facebook post
493
494                         if((! count($allow_arr)) && (! count($deny_arr)))
495                                 return;
496                 }
497
498                 if($b['verb'] == ACTIVITY_LIKE)
499                         $likes = true;
500
501
502                 $appid  = get_config('facebook', 'appid'  );
503                 $secret = get_config('facebook', 'appsecret' );
504
505                 if($appid && $secret) {
506
507                         logger('facebook: have appid+secret');
508
509                         $fb_token  = get_pconfig($b['uid'],'facebook','access_token');
510
511
512                         // post to facebook if it's a public post and we've ticked the 'post to Facebook' box,
513                         // or it's a private message with facebook participants
514                         // or it's a reply or likes action to an existing facebook post
515
516                         if($fb_token && ($toplevel || $b['private'] || $reply)) {
517                                 logger('facebook: able to post');
518                                 require_once('library/facebook.php');
519                                 require_once('include/bbcode.php');
520
521                                 $msg = $b['body'];
522
523                                 logger('Facebook post: original msg=' . $msg, LOGGER_DATA);
524
525                                 // make links readable before we strip the code
526
527                                 // unless it's a dislike - just send the text as a comment
528
529                                 // if($b['verb'] == ACTIVITY_DISLIKE)
530                                 //      $msg = trim(strip_tags(bbcode($msg)));
531
532                                 // Old code
533                                 /*$search_str = $a->get_baseurl() . '/search';
534
535                                 if(preg_match("/\[url=(.*?)\](.*?)\[\/url\]/is",$msg,$matches)) {
536
537                                         // don't use hashtags for message link
538
539                                         if(strpos($matches[2],$search_str) === false) {
540                                                 $link = $matches[1];
541                                                 if(substr($matches[2],0,5) != '[img]')
542                                                         $linkname = $matches[2];
543                                         }
544                                 }
545
546                                 // strip tag links to avoid link clutter, this really should be 
547                                 // configurable because we're losing information
548
549                                 $msg = preg_replace("/\#\[url=(.*?)\](.*?)\[\/url\]/is",'#$2',$msg);
550
551                                 // provide the link separately for normal links
552                                 $msg = preg_replace("/\[url=(.*?)\](.*?)\[\/url\]/is",'$2 $1',$msg);
553
554                                 if(preg_match("/\[img\](.*?)\[\/img\]/is",$msg,$matches))
555                                         $image = $matches[1];
556
557                                 $msg = preg_replace("/\[img\](.*?)\[\/img\]/is", t('Image: ') . '$1', $msg);
558
559                                 if((strpos($link,z_root()) !== false) && (! $image))
560                                         $image = $a->get_baseurl() . '/images/friendica-64.jpg';
561
562                                 $msg = trim(strip_tags(bbcode($msg)));*/
563
564                                 // New code
565
566                                 // Looking for the first image
567                                 $image = '';
568                                 if(preg_match("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/is",$b['body'],$matches))
569                                         $image = $matches[3];
570
571                                 if ($image == '')
572                                         if(preg_match("/\[img\](.*?)\[\/img\]/is",$b['body'],$matches))
573                                                 $image = $matches[1];
574
575                                 // When saved into the database the content is sent through htmlspecialchars
576                                 // That means that we have to decode all image-urls
577                                 $image = htmlspecialchars_decode($image);
578
579                                 // Checking for a bookmark element
580                                 $body = $b['body'];
581                                 if (strpos($body, "[bookmark") !== false) {
582                                         // splitting the text in two parts:
583                                         // before and after the bookmark
584                                         $pos = strpos($body, "[bookmark");
585                                         $body1 = substr($body, 0, $pos);
586                                         $body2 = substr($body, $pos);
587
588                                         // Removing the bookmark and all quotes after the bookmark
589                                         // they are mostly only the content after the bookmark.
590                                         $body2 = preg_replace("/\[bookmark\=([^\]]*)\](.*?)\[\/bookmark\]/ism",'',$body2);
591                                         $body2 = preg_replace("/\[quote\=([^\]]*)\](.*?)\[\/quote\]/ism",'',$body2);
592                                         $body2 = preg_replace("/\[quote\](.*?)\[\/quote\]/ism",'',$body2);
593
594                                         $body = $body1.$body2;
595                                 }
596
597                                 // Convert recycle signs
598                                 $body = str_replace("\t", " ", $body);
599                                 // recycle 1
600                                 $recycle = html_entity_decode("&#x2672; ", ENT_QUOTES, 'UTF-8');
601                                 $body = preg_replace( '/'.$recycle.'\[url\=(\w+.*?)\](\w+.*?)\[\/url\]/i', "\n\t$2:\t", $body);
602                                 // recycle 2 (Test)
603                                 $recycle = html_entity_decode("&#x25CC; ", ENT_QUOTES, 'UTF-8');
604                                 $body = preg_replace( '/'.$recycle.'\[url\=(\w+.*?)\](\w+.*?)\[\/url\]/i', "\n\t$2:\t", $body);
605
606                                 // share element
607                                 $body = preg_replace_callback("/\[share(.*?)\]\s?(.*?)\s?\[\/share\]/ism","fbpost_ShareAttributes", $body);
608
609                                 $bodyparts = explode("\t", $body);
610                                 // Doesn't help with multiple repeats - the problem has to be solved later
611                                 if (sizeof($bodyparts) == 3) {
612                                         $html = bbcode($bodyparts[2], false, false);
613                                         $test = trim(html2plain($html, 0, true));
614
615                                         if (trim($bodyparts[0]) == "")
616                                                 $body = trim($bodyparts[2]);
617                                         else if (trim($test) == "")
618                                                 $body = trim($bodyparts[0]);
619                                         else
620                                                 $body = trim($bodyparts[0])."\n\n".trim($bodyparts[1])."[quote]".trim($bodyparts[2])."[/quote]";
621                                 } else
622                                         $body = str_replace("\t", "", $body);
623
624                                 // At first convert the text to html
625                                 $html = bbcode($body, false, false);
626
627                                 // Then convert it to plain text
628                                 $msg = trim($b['title']." \n\n".html2plain($html, 0, true));
629
630                                 // Removing useless spaces
631                                 if (substr($msg, -2) == "«")
632                                         $msg = trim(substr($msg, 0, -2))."«";
633
634                                 $msg = html_entity_decode($msg,ENT_QUOTES,'UTF-8');
635
636                                 // Removing multiple newlines
637                                 while (strpos($msg, "\n\n\n") !== false)
638                                         $msg = str_replace("\n\n\n", "\n\n", $msg);
639
640                                 // add any attachments as text urls
641                                 $arr = explode(',',$b['attach']);
642
643                                 if(count($arr)) {
644                                         $msg .= "\n";
645                                         foreach($arr as $r) {
646                                                 $matches = false;
647                                                 $cnt = preg_match('|\[attach\]href=\"(.*?)\" size=\"(.*?)\" type=\"(.*?)\" title=\"(.*?)\"\[\/attach\]|',$r,$matches);
648                                                 if($cnt) {
649                                                         $msg .= "\n".$matches[1];
650                                                 }
651                                         }
652                                 }
653
654                                 $link = '';
655                                 $linkname = '';
656                                 // look for bookmark-bbcode and handle it with priority
657                                 if(preg_match("/\[bookmark\=([^\]]*)\](.*?)\[\/bookmark\]/is",$b['body'],$matches)) {
658                                         $link = $matches[1];
659                                         $linkname = $matches[2];
660                                 }
661
662                                 // If there is no bookmark element then take the first link
663                                 if ($link == '') {
664                                         $links = collecturls($html);
665                                         if (sizeof($links) > 0) {
666                                                 reset($links);
667                                                 $link = current($links);
668                                         }
669                                 }
670
671                                 // Remove trailing and leading spaces
672                                 $msg = trim($msg);
673
674
675                                 // Fallback - if message is empty
676                                 if(!strlen($msg))
677                                         $msg = $linkname;
678
679                                 if(!strlen($msg))
680                                         $msg = $link;
681
682                                 if(!strlen($msg))
683                                         $msg = $image;
684
685                                 // If there is nothing to post then exit
686                                 if(!strlen($msg))
687                                         return;
688
689                                 logger('Facebook post: msg=' . $msg, LOGGER_DATA);
690
691                                 $video = "";
692
693                                 if($likes) {
694                                         $postvars = array('access_token' => $fb_token);
695                                 } else {
696                                         // message, picture, link, name, caption, description, source, place, tags
697                                         if(trim($link) != "")
698                                                 if (@exif_imagetype($link) != 0) {
699                                                         $image = $link;
700                                                         $link = "";
701                                                 }
702
703                                         $postvars = array(
704                                                 'access_token' => $fb_token,
705                                                 'message' => $msg
706                                         );
707                                         if(trim($image) != "")
708                                                 $postvars['picture'] = $image;
709
710                                         if(trim($link) != "") {
711                                                 $postvars['link'] = $link;
712
713                                                 if ((stristr($link,'youtube')) || (stristr($link,'youtu.be')) || (stristr($link,'vimeo'))) {
714                                                         $video = $link;
715                                                 }
716                                         }
717                                         if(trim($linkname) != "")
718                                                 $postvars['name'] = $linkname;
719                                 }
720
721                                 if(($b['private']) && ($toplevel)) {
722                                         $postvars['privacy'] = '{"value": "CUSTOM", "friends": "SOME_FRIENDS"';
723                                         if(count($allow_arr))
724                                                 $postvars['privacy'] .= ',"allow": "' . implode(',',$allow_arr) . '"';
725                                         if(count($deny_arr))
726                                                 $postvars['privacy'] .= ',"deny": "' . implode(',',$deny_arr) . '"';
727                                         $postvars['privacy'] .= '}';
728
729                                 }
730
731                                 $post_to_page = get_pconfig($b['uid'],'facebook','post_to_page');
732                                 $page_access_token = get_pconfig($b['uid'],'facebook','page_access_token');
733                                 if ((intval($post_to_page) != 0) and ($page_access_token != ""))
734                                         $target = $post_to_page;
735                                 else
736                                         $target = "me";
737
738                                 if($reply) {
739                                         $url = 'https://graph.facebook.com/' . $reply . '/' . (($likes) ? 'likes' : 'comments');
740                                 } else if (($video != "") or (($image == "") and ($link != ""))) {
741                                         // If it is a link to a video or a link without a preview picture then post it as a link
742                                         if ($video != "")
743                                                 $link = $video;
744
745                                         $postvars = array(
746                                                 'access_token' => $fb_token,
747                                                 'link' => $link,
748                                         );
749                                         if ($msg != $video)
750                                                 $postvars['message'] = $msg;
751
752                                         $url = 'https://graph.facebook.com/'.$target.'/links';
753                                 } else if (($link == "") and ($image != "")) {
754                                         // If it is only an image without a page link then post this image as a photo
755                                         $postvars = array(
756                                                 'access_token' => $fb_token,
757                                                 'url' => $image,
758                                         );
759                                         if ($msg != $image)
760                                                 $postvars['message'] = $msg;
761
762                                         $url = 'https://graph.facebook.com/'.$target.'/photos';
763                                 } else if (($link != "") or ($image != "") or ($b['title'] == '') or (strlen($msg) < 500)) {
764                                         $url = 'https://graph.facebook.com/'.$target.'/feed';
765                                         if (!get_pconfig($b['uid'],'facebook','suppress_view_on_friendica') and $b['plink'])
766                                                 $postvars['actions'] = '{"name": "' . t('View on Friendica') . '", "link": "' .  $b['plink'] . '"}';
767                                 } else {
768                                         // if its only a message and a subject and the message is larger than 500 characters then post it as note
769                                         $postvars = array(
770                                                 'access_token' => $fb_token,
771                                                 'message' => bbcode($b['body'], false, false),
772                                                 'subject' => $b['title'],
773                                         );
774                                         $url = 'https://graph.facebook.com/'.$target.'/notes';
775                                 }
776
777                                 // Post to page?
778                                 if (!$reply and ($target != "me") and $page_access_token)
779                                         $postvars['access_token'] = $page_access_token;
780
781                                 logger('facebook: post to ' . $url);
782                                 logger('facebook: postvars: ' . print_r($postvars,true));
783
784                                 // "test_mode" prevents anything from actually being posted.
785                                 // Otherwise, let's do it.
786
787                                 if(! get_config('facebook','test_mode')) {
788                                         $x = post_url($url, $postvars);
789                                         logger('Facebook post returns: ' . $x, LOGGER_DEBUG);
790
791                                         $retj = json_decode($x);
792                                         if($retj->id) {
793                                                 q("UPDATE `item` SET `extid` = '%s' WHERE `id` = %d LIMIT 1",
794                                                         dbesc('fb::' . $retj->id),
795                                                         intval($b['id'])
796                                                 );
797                                         }
798                                         else {
799                                                 if(! $likes) {
800                                                         $s = serialize(array('url' => $url, 'item' => $b['id'], 'post' => $postvars));
801                                                         require_once('include/queue_fn.php');
802                                                         add_to_queue($a->contact,NETWORK_FACEBOOK,$s);
803                                                         notice( t('Facebook post failed. Queued for retry.') . EOL);
804                                                 }
805
806                                                 if (isset($retj->error) && $retj->error->type == "OAuthException" && $retj->error->code == 190) {
807                                                         logger('Facebook session has expired due to changed password.', LOGGER_DEBUG);
808
809                                                         $last_notification = get_pconfig($b['uid'], 'facebook', 'session_expired_mailsent');
810                                                         if (!$last_notification || $last_notification < (time() - FACEBOOK_SESSION_ERR_NOTIFICATION_INTERVAL)) {
811                                                                 require_once('include/enotify.php');
812
813                                                                 $r = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1", intval($b['uid']) );
814                                                                 notification(array(
815                                                                         'uid' => $b['uid'],
816                                                                         'type' => NOTIFY_SYSTEM,
817                                                                         'system_type' => 'facebook_connection_invalid',
818                                                                         'language'     => $r[0]['language'],
819                                                                         'to_name'      => $r[0]['username'],
820                                                                         'to_email'     => $r[0]['email'],
821                                                                         'source_name'  => t('Administrator'),
822                                                                         'source_link'  => $a->config["system"]["url"],
823                                                                         'source_photo' => $a->config["system"]["url"] . '/images/person-80.jpg',
824                                                                 ));
825
826                                                                 set_pconfig($b['uid'], 'facebook', 'session_expired_mailsent', time());
827                                                         } else logger('Facebook: No notification, as the last one was sent on ' . $last_notification, LOGGER_DEBUG);
828                                                 }
829                                         }
830                                 }
831                         }
832                 }
833         }
834 }
835
836 /**
837  * @param App $app
838  * @param object $data
839  */
840 function fbpost_enotify(&$app, &$data) {
841         if (x($data, 'params') && $data['params']['type'] == NOTIFY_SYSTEM && x($data['params'], 'system_type') && $data['params']['system_type'] == 'facebook_connection_invalid') {
842                 $data['itemlink'] = '/facebook';
843                 $data['epreamble'] = $data['preamble'] = t('Your Facebook connection became invalid. Please Re-authenticate.');
844                 $data['subject'] = t('Facebook connection became invalid');
845                 $data['body'] = sprintf( t("Hi %1\$s,\n\nThe connection between your accounts on %2\$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3\$sre-authenticate the Facebook-connector%4\$s."), $data['params']['to_name'], "[url=" . $app->config["system"]["url"] . "]" . $app->config["sitename"] . "[/url]", "[url=" . $app->config["system"]["url"] . "/facebook]", "[/url]");
846         }
847 }
848
849 /**
850  * @param App $a
851  * @param object $b
852  */
853 function fbpost_post_local(&$a,&$b) {
854
855         // Figure out if Facebook posting is enabled for this post and file it in 'postopts'
856         // where we will discover it during background delivery.
857
858         // This can only be triggered by a local user posting to their own wall.
859
860         if((local_user()) && (local_user() == $b['uid'])) {
861
862                 $fb_post   = intval(get_pconfig(local_user(),'facebook','post'));
863                 $fb_enable = (($fb_post && x($_REQUEST,'facebook_enable')) ? intval($_REQUEST['facebook_enable']) : 0);
864
865                 // if API is used, default to the chosen settings
866                 // but allow a specific override
867
868                 if($_REQUEST['api_source'] && intval(get_pconfig(local_user(),'facebook','post_by_default'))) {
869                         if(! x($_REQUEST,'facebook_enable'))
870                                 $fb_enable = 1;
871                 }
872
873                 if(! $fb_enable)
874                         return;
875
876                 if(strlen($b['postopts']))
877                         $b['postopts'] .= ',';
878                 $b['postopts'] .= 'facebook';
879         }
880 }
881
882
883 /**
884  * @param App $a
885  * @param object $b
886  */
887 function fbpost_queue_hook(&$a,&$b) {
888
889         $qi = q("SELECT * FROM `queue` WHERE `network` = '%s'",
890                 dbesc(NETWORK_FACEBOOK)
891         );
892         if(! count($qi))
893                 return;
894
895         require_once('include/queue_fn.php');
896
897         foreach($qi as $x) {
898                 if($x['network'] !== NETWORK_FACEBOOK)
899                         continue;
900
901                 logger('facebook_queue: run');
902
903                 $r = q("SELECT `user`.* FROM `user` LEFT JOIN `contact` on `contact`.`uid` = `user`.`uid` 
904                         WHERE `contact`.`self` = 1 AND `contact`.`id` = %d LIMIT 1",
905                         intval($x['cid'])
906                 );
907                 if(! count($r))
908                         continue;
909
910                 $user = $r[0];
911
912                 $appid  = get_config('facebook', 'appid'  );
913                 $secret = get_config('facebook', 'appsecret' );
914
915                 if($appid && $secret) {
916                         $fb_post   = intval(get_pconfig($user['uid'],'facebook','post'));
917                         $fb_token  = get_pconfig($user['uid'],'facebook','access_token');
918
919                         if($fb_post && $fb_token) {
920                                 logger('facebook_queue: able to post');
921                                 require_once('library/facebook.php');
922
923                                 $z = unserialize($x['content']);
924                                 $item = $z['item'];
925                                 $j = post_url($z['url'],$z['post']);
926
927                                 $retj = json_decode($j);
928                                 if($retj->id) {
929                                         q("UPDATE `item` SET `extid` = '%s' WHERE `id` = %d LIMIT 1",
930                                                 dbesc('fb::' . $retj->id),
931                                                 intval($item)
932                                         );
933                                         logger('facebook_queue: success: ' . $j); 
934                                         remove_queue_item($x['id']);
935                                 }
936                                 else {
937                                         logger('facebook_queue: failed: ' . $j);
938                                         update_queue_time($x['id']);
939                                 }
940                         }
941                 }
942         }
943 }
944
945
946 /**
947  * @return bool|string
948  */
949 function fbpost_get_app_access_token() {
950
951         $acc_token = get_config('facebook','app_access_token');
952
953         if ($acc_token !== false) return $acc_token;
954
955         $appid = get_config('facebook','appid');
956         $appsecret = get_config('facebook', 'appsecret');
957
958         if ($appid === false || $appsecret === false) {
959                 logger('fb_get_app_access_token: appid and/or appsecret not set', LOGGER_DEBUG);
960                 return false;
961         }
962         logger('https://graph.facebook.com/oauth/access_token?client_id=' . $appid . '&client_secret=' . $appsecret . '&grant_type=client_credentials', LOGGER_DATA);
963         $x = fetch_url('https://graph.facebook.com/oauth/access_token?client_id=' . $appid . '&client_secret=' . $appsecret . '&grant_type=client_credentials');
964
965         if(strpos($x,'access_token=') !== false) {
966                 logger('fb_get_app_access_token: returned access token: ' . $x, LOGGER_DATA);
967
968                 $token = str_replace('access_token=', '', $x);
969                 if(strpos($token,'&') !== false)
970                         $token = substr($token,0,strpos($token,'&'));
971
972                 if ($token == "") {
973                         logger('fb_get_app_access_token: empty token: ' . $x, LOGGER_DEBUG);
974                         return false;
975                 }
976                 set_config('facebook','app_access_token',$token);
977                 return $token;
978         } else {
979                 logger('fb_get_app_access_token: response did not contain an access_token: ' . $x, LOGGER_DATA);
980                 return false;
981         }
982 }
983
984 function fbpost_cron($a,$b) {
985         $last = get_config('facebook','last_poll');
986
987         $poll_interval = intval(get_config('facebook','poll_interval'));
988         if(! $poll_interval)
989                 $poll_interval = FACEBOOK_DEFAULT_POLL_INTERVAL;
990
991         if($last) {
992                 $next = $last + ($poll_interval * 60);
993                 if($next > time()) {
994                         logger('facebook: poll intervall not reached');
995                         return;
996                 }
997         }
998         logger('facebook: cron_start');
999
1000         $r = q("SELECT * FROM `pconfig` WHERE `cat` = 'facebook' AND `k` = 'mirror_posts' AND `v` = '1' ORDER BY RAND() ");
1001         if(count($r)) {
1002                 foreach($r as $rr) {
1003                         logger('facebook: fetching for user '.$rr['uid']);
1004                         fbpost_fetchwall($a, $rr['uid']);
1005                 }
1006         }
1007
1008         logger('facebook: cron_end');
1009
1010         set_config('facebook','last_poll', time());
1011 }
1012
1013 function fbpost_fetchwall($a, $uid) {
1014         $access_token = get_pconfig($uid,'facebook','access_token');
1015         $post_to_page = get_pconfig($uid,'facebook','post_to_page');
1016         $lastcreated = get_pconfig($uid,'facebook','last_created');
1017
1018         if ((int)$post_to_page == 0)
1019                 $post_to_page = "me";
1020
1021         $url = "https://graph.facebook.com/".$post_to_page."/feed?access_token=".$access_token;
1022
1023         $first_time = ($lastcreated == "");
1024
1025         if ($lastcreated != "")
1026                 $url .= "&since=".urlencode($lastcreated);
1027
1028         $feed = fetch_url($url);
1029         $data = json_decode($feed);
1030
1031         if (!is_array($data->data))
1032                 return;
1033
1034         $items = array_reverse($data->data);
1035
1036         foreach ($items as $item) {
1037                 if ($item->created_time > $lastcreated)
1038                         $lastcreated = $item->created_time;
1039
1040                 if ($first_time)
1041                         continue;
1042
1043                 if ($item->application->id == get_config('facebook','appid'))
1044                         continue;
1045
1046                 if(isset($item->privacy) && ($item->privacy->value !== 'EVERYONE') && ($item->privacy->value !== ''))
1047                         continue;
1048
1049                 if (($post_to_page != $item->from->id) AND ((int)$post_to_page != 0))
1050                         continue;
1051
1052                 $_SESSION["authenticated"] = true;
1053                 $_SESSION["uid"] = $uid;
1054
1055                 unset($_REQUEST);
1056                 $_REQUEST["type"] = "wall";
1057                 $_REQUEST["api_source"] = true;
1058                 $_REQUEST["profile_uid"] = $uid;
1059                 $_REQUEST["source"] = "Facebook";
1060
1061                 $_REQUEST["title"] = "";
1062
1063                 $_REQUEST["body"] = (isset($item->message) ? escape_tags($item->message) : '');
1064
1065                 if(isset($item->name) and isset($item->link))
1066                         $_REQUEST["body"] .= "\n\n[bookmark=".$item->link."]".$item->name."[/bookmark]";
1067                 elseif (isset($item->name))
1068                         $_REQUEST["body"] .= "\n\n[b]" . $item->name."[/b]";
1069
1070                 /*if(isset($item->caption)) {
1071                         if(!isset($item->name) and isset($item->link))
1072                                 $_REQUEST["body"] .= "\n\n[bookmark=".$item->link."]".$item->caption."[/bookmark]";
1073                         //else
1074                         //      $_REQUEST["body"] .= "[i]" . $item->caption."[/i]\n";
1075                         }
1076
1077                         if(!isset($item->caption) and !isset($item->name)) {
1078                                 if (isset($item->link))
1079                                         $_REQUEST["body"] .= "\n[url]".$item->link."[/url]\n";
1080                                 else
1081                                         $_REQUEST["body"] .= "\n";
1082                 }*/
1083
1084                 $quote = "";
1085                 if(isset($item->description) and ($item->type != "photo"))
1086                         $quote = $item->description;
1087
1088                 if(isset($item->caption) and ($item->type == "photo"))
1089                         $quote = $item->caption;
1090
1091                 //if (isset($item->properties))
1092                 //      foreach ($item->properties as $property)
1093                 //              $quote .= "\n".$property->name.": [url=".$property->href."]".$property->text."[/url]";
1094
1095                 if ($quote)
1096                         $_REQUEST["body"] .= "\n[quote]".$quote."[/quote]";
1097
1098                 // Only import the picture when the message is no video
1099                 // oembed display a picture of the video as well
1100                 if ($item->type != "video") {
1101                 //if (($item->type != "video") and ($item->type != "photo")) {
1102                         if(isset($item->picture) && isset($item->link))
1103                                 $_REQUEST["body"] .= "\n".'[url='.$item->link.'][img]'.fpost_cleanpicture($item->picture).'[/img][/url]';
1104                         else {
1105                                 if (isset($item->picture))
1106                                         $_REQUEST["body"] .= "\n".'[img]'.fpost_cleanpicture($item->picture).'[/img]';
1107                                 // if just a link, it may be a wall photo - check
1108                                 if(isset($item->link))
1109                                         $_REQUEST["body"] .= fbpost_get_photo($uid,$item->link);
1110                         }
1111                 }
1112
1113                 /*if (($datarray['app'] == "Events") and isset($item->actions))
1114                         foreach ($item->actions as $action)
1115                                 if ($action->name == "View")
1116                                         $_REQUEST["body"] .= " [url=".$action->link."]".$item->story."[/url]";
1117                 */
1118
1119                 if(trim($_REQUEST["body"]) == '') {
1120                         logger('facebook: empty body '.$item->id.' '.print_r($item, true));
1121                         continue;
1122                 }
1123
1124                 $_REQUEST["body"] = trim($_REQUEST["body"]);
1125
1126                 if (isset($item->place)) {
1127                         if ($item->place->name or $item->place->location->street or
1128                                 $item->place->location->city or $item->place->location->country) {
1129                                 $_REQUEST["location"] = '';
1130                                 if ($item->place->name)
1131                                         $_REQUEST["location"] .= $item->place->name;
1132                                 if ($item->place->location->street)
1133                                         $_REQUEST["location"] .= " ".$item->place->location->street;
1134                                 if ($item->place->location->city)
1135                                         $_REQUEST["location"] .= " ".$item->place->location->city;
1136                                 if ($item->place->location->country)
1137                                         $_REQUEST["location"] .= " ".$item->place->location->country;
1138
1139                                 $_REQUEST["location"] = trim($_REQUEST["location"]);
1140                         }
1141                         if ($item->place->location->latitude and $item->place->location->longitude)
1142                                 $_REQUEST["coord"] = substr($item->place->location->latitude, 0, 8)
1143                                                 .' '.substr($item->place->location->longitude, 0, 8);
1144                 }
1145
1146                 //print_r($_REQUEST);
1147                 logger('facebook: posting for user '.$uid);
1148
1149                 require_once('mod/item.php');
1150                 item_post($a);
1151         }
1152
1153         set_pconfig($uid,'facebook','last_created', $lastcreated);
1154 }
1155
1156 function fbpost_get_photo($uid,$link) {
1157         $access_token = get_pconfig($uid,'facebook','access_token');
1158         if(! $access_token || (! stristr($link,'facebook.com/photo.php')))
1159                 return "";
1160
1161         $ret = preg_match('/fbid=([0-9]*)/',$link,$match);
1162         if($ret)
1163                 $photo_id = $match[1];
1164         else
1165                 return "";
1166
1167         $x = fetch_url('https://graph.facebook.com/'.$photo_id.'?access_token='.$access_token);
1168         $j = json_decode($x);
1169         if($j->picture)
1170                 return "\n\n".'[url='.$link.'][img]'.fpost_cleanpicture($j->picture).'[/img][/url]';
1171
1172         return "";
1173 }
1174
1175 function fpost_cleanpicture($image) {
1176
1177         if (strpos($image, ".fbcdn.net/") and (substr($image, -6) == "_s.jpg"))
1178                 $image = substr($image, 0, -6)."_n.jpg";
1179
1180         $queryvar = fbpost_parse_query($image);
1181         if ($queryvar['url'] != "")
1182                 $image = urldecode($queryvar['url']);
1183
1184         return $image;
1185 }
1186
1187 function fbpost_parse_query($var) {
1188         /**
1189          *  Use this function to parse out the query array element from
1190          *  the output of parse_url().
1191         */
1192         $var  = parse_url($var, PHP_URL_QUERY);
1193         $var  = html_entity_decode($var);
1194         $var  = explode('&', $var);
1195         $arr  = array();
1196
1197         foreach($var as $val) {
1198                 $x          = explode('=', $val);
1199                 $arr[$x[0]] = $x[1];
1200         }
1201
1202         unset($val, $x, $var);
1203         return $arr;
1204 }