]> git.mxchange.org Git - friendica-addons.git/blob - fbpost/fbpost.php
Added function "bb_CleanPictureLinks" ro all connectors
[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                 //read_stream,publish_stream,manage_pages,photo_upload,user_groups,offline_access
216
217                 $o .= '<a href="https://www.facebook.com/dialog/oauth?client_id=' . $appid . '&redirect_uri=' 
218                         . $a->get_baseurl() . '/fbpost/' . $a->user['nickname'] . '&scope=export_stream,read_stream,publish_stream,manage_pages,photo_upload,user_groups,publish_actions,user_friends,create_note,share_item,video_upload,status_update">' . t('Install Facebook Post connector for this account.') . '</a>';
219                 $o .= '</div>';
220         }
221
222         if($fb_installed) {
223                 $o .= '<div id="fbpost-disable-wrapper">';
224
225                 $o .= '<a href="' . $a->get_baseurl() . '/fbpost/remove' . '">' . t('Remove Facebook Post connector') . '</a></div>';
226
227                 $o .= '<div id="fbpost-enable-wrapper">';
228
229                 $o .= '<a href="https://www.facebook.com/dialog/oauth?client_id=' . $appid . '&redirect_uri=' 
230                         . $a->get_baseurl() . '/fbpost/' . $a->user['nickname'] . '&scope=export_stream,read_stream,publish_stream,manage_pages,photo_upload,user_groups,publish_actions,user_friends,create_note,share_item,video_upload,status_update">' . t('Re-authenticate [This is necessary whenever your Facebook password is changed.]') . '</a>';
231                 $o .= '</div>';
232
233                 $o .= '<div id="fbpost-post-default-form">';
234                 $o .= '<form action="fbpost" method="post" >';
235                 $post_by_default = get_pconfig(local_user(),'facebook','post_by_default');
236                 $checked = (($post_by_default) ? ' checked="checked" ' : '');
237                 $o .= '<input type="checkbox" name="post_by_default" value="1"' . $checked . '/>' . ' ' . t('Post to Facebook by default') . EOL;
238
239                 $suppress_view_on_friendica = get_pconfig(local_user(),'facebook','suppress_view_on_friendica');
240                 $checked = (($suppress_view_on_friendica) ? ' checked="checked" ' : '');
241                 $o .= '<input type="checkbox" name="suppress_view_on_friendica" value="1"' . $checked . '/>' . ' ' . t('Suppress "View on friendica"') . EOL;
242
243                 $mirror_posts = get_pconfig(local_user(),'facebook','mirror_posts');
244                 $checked = (($mirror_posts) ? ' checked="checked" ' : '');
245                 $o .= '<input type="checkbox" name="mirror_posts" value="1"' . $checked . '/>' . ' ' . t('Mirror wall posts from facebook to friendica.') . EOL;
246
247                 // List all pages
248                 $post_to_page = get_pconfig(local_user(),'facebook','post_to_page');
249                 $page_access_token = get_pconfig(local_user(),'facebook','page_access_token');
250                 $fb_token  = get_pconfig($a->user['uid'],'facebook','access_token');
251                 $url = 'https://graph.facebook.com/me/accounts';
252                 $x = fetch_url($url."?access_token=".$fb_token);
253                 $accounts = json_decode($x);
254
255                 $o .= t("Post to page/group:")."<select name='post_to_page'>";
256                 if (intval($post_to_page) == 0)
257                         $o .= "<option value='0-0' selected>".t('None')."</option>";
258                 else
259                         $o .= "<option value='0-0'>".t('None')."</option>";
260
261                 foreach($accounts->data as $account) {
262                         if (is_array($account->perms))
263                                 if ($post_to_page == $account->id)
264                                         $o .= "<option value='".$account->id."-".$account->access_token."' selected>".$account->name."</option>";
265                                 else
266                                         $o .= "<option value='".$account->id."-".$account->access_token."'>".$account->name."</option>";
267                 }
268
269                 $url = 'https://graph.facebook.com/me/groups';
270                 $x = fetch_url($url."?access_token=".$fb_token);
271                 $groups = json_decode($x);
272
273                 foreach($groups->data as $group) {
274                         if ($post_to_page == $group->id)
275                                 $o .= "<option value='".$group->id."-0' selected>".$group->name."</option>";
276                         else
277                                 $o .= "<option value='".$group->id."-0'>".$group->name."</option>";
278                 }
279
280                 $o .= "</select>";
281
282                 $o .= '<p><input type="submit" name="submit" value="' . t('Save Settings') . '" /></form></div>';
283
284         }
285
286         return $o;
287 }
288
289 /**
290  * @param App $a
291  * @param null|object $b
292  */
293 function fbpost_plugin_settings(&$a,&$b) {
294
295         $b .= '<div class="settings-block">';
296         //$b .= '<h3>' . t('Facebook Post Settings') . '</h3>';
297         $b .= '<a href="fbpost"><h3>' . t('Facebook Post Settings') . '</a></h3>';
298         $b .= '</div>';
299
300 }
301
302
303 /**
304  * @param App $a
305  * @param null|object $o
306  */
307 function fbpost_plugin_admin(&$a, &$o){
308
309
310         $o = '<input type="hidden" name="form_security_token" value="' . get_form_security_token("fbsave") . '">';
311
312         $o .= '<h4>' . t('Facebook API Key') . '</h4>';
313
314         $appid  = get_config('facebook', 'appid'  );
315         $appsecret = get_config('facebook', 'appsecret' );
316
317         $ret1 = q("SELECT `v` FROM `config` WHERE `cat` = 'facebook' AND `k` = 'appid' LIMIT 1");
318         $ret2 = q("SELECT `v` FROM `config` WHERE `cat` = 'facebook' AND `k` = 'appsecret' LIMIT 1");
319         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>');
320
321         $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;">';
322         $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;">';
323
324         $o .= '<input type="submit" name="fb_save_keys" value="' . t('Save') . '">';
325
326 }
327
328 /**
329  * @param App $a
330  */
331
332 function fbpost_plugin_admin_post(&$a){
333         check_form_security_token_redirectOnErr('/admin/plugins/fbpost', 'fbsave');
334
335         if (x($_REQUEST,'fb_save_keys')) {
336                 set_config('facebook', 'appid', $_REQUEST['appid']);
337                 set_config('facebook', 'appsecret', $_REQUEST['appsecret']);
338
339                 info(t('The new values have been saved.'));
340         }
341
342 }
343
344 /**
345  * @param App $a
346  * @param object $b
347  * @return mixed
348  */
349 function fbpost_jot_nets(&$a,&$b) {
350         if(! local_user())
351                 return;
352
353         $fb_post = get_pconfig(local_user(),'facebook','post');
354         if(intval($fb_post) == 1) {
355                 $fb_defpost = get_pconfig(local_user(),'facebook','post_by_default');
356                 $selected = ((intval($fb_defpost) == 1) ? ' checked="checked" ' : '');
357                 $b .= '<div class="profile-jot-net"><input type="checkbox" name="facebook_enable"' . $selected . ' value="1" /> ' 
358                         . t('Post to Facebook') . '</div>';
359         }
360 }
361
362 function fbpost_createmsg($b) {
363         require_once("include/bbcode.php");
364         require_once("include/html2plain.php");
365
366         $b['body'] = bb_CleanPictureLinks($b['body']);
367
368         // Looking for the first image
369         $image = '';
370         if(preg_match("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/is",$b['body'],$matches))
371                 $image = $matches[3];
372
373         if ($image == '')
374                 if(preg_match("/\[img\](.*?)\[\/img\]/is",$b['body'],$matches))
375                         $image = $matches[1];
376
377         $multipleimages = (strpos($b['body'], "[img") != strrpos($b['body'], "[img"));
378
379         // When saved into the database the content is sent through htmlspecialchars
380         // That means that we have to decode all image-urls
381         $image = htmlspecialchars_decode($image);
382
383         $body = $b["body"];
384         if ($b["title"] != "")
385                 $body = $b["title"]."\n\n".$body;
386
387         if (strpos($body, "[bookmark") !== false) {
388                 // splitting the text in two parts:
389                 // before and after the bookmark
390                 $pos = strpos($body, "[bookmark");
391                 $body1 = substr($body, 0, $pos);
392                 $body2 = substr($body, $pos);
393
394                 // Removing all quotes after the bookmark
395                 // they are mostly only the content after the bookmark.
396                 $body2 = preg_replace("/\[quote\=([^\]]*)\](.*?)\[\/quote\]/ism",'',$body2);
397                 $body2 = preg_replace("/\[quote\](.*?)\[\/quote\]/ism",'',$body2);
398
399                 $pos2 = strpos($body2, "[/bookmark]");
400                 if ($pos2)
401                         $body2 = substr($body2, $pos2 + 11);
402
403                 $body = $body1.$body2;
404         }
405
406         // Add some newlines so that the message could be cut better
407         $body = str_replace(array("[quote", "[bookmark", "[/bookmark]", "[/quote]"),
408                                 array("\n[quote", "\n[bookmark", "[/bookmark]\n", "[/quote]\n"), $body);
409
410         // remove the recycle signs and the names since they aren't helpful on twitter
411         // $recycle = html_entity_decode("&#x2672; ", ENT_QUOTES, 'UTF-8');
412         // $body = preg_replace( '/'.$recycle.'\[url\=(\w+.*?)\](\w+.*?)\[\/url\]/i', "\n", $body);
413
414         // At first convert the text to html
415         $html = bbcode($body, false, false, 2);
416
417         // Then convert it to plain text
418         //$msg = trim($b['title']." \n\n".html2plain($html, 0, true));
419         $msg = trim(html2plain($html, 0, true));
420         $msg = html_entity_decode($msg,ENT_QUOTES,'UTF-8');
421
422         // Removing multiple newlines
423         while (strpos($msg, "\n\n\n") !== false)
424                 $msg = str_replace("\n\n\n", "\n\n", $msg);
425
426         // Removing multiple spaces
427         while (strpos($msg, "  ") !== false)
428                 $msg = str_replace("  ", " ", $msg);
429
430         // Removing URLs
431         $msg = preg_replace('/(https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\%\$\!\+\,]+)/i', "", $msg);
432
433         $msg = trim($msg);
434
435         $link = '';
436         $linkname = '';
437         // look for bookmark-bbcode and handle it with priority
438         if(preg_match("/\[bookmark\=([^\]]*)\](.*?)\[\/bookmark\]/is",$b['body'],$matches)) {
439                 $link = $matches[1];
440                 $linkname = $matches[2];
441         }
442
443         $multiplelinks = (strpos($b['body'], "[bookmark") != strrpos($b['body'], "[bookmark"));
444
445         if ($multiplelinks)
446                 $linkname = '';
447
448         // If there is no bookmark element then take the first link
449         if ($link == '') {
450                 $links = collecturls($html);
451                 if (sizeof($links) > 0) {
452                         reset($links);
453                         $link = current($links);
454                 }
455                 $multiplelinks = (sizeof($links) > 1);
456         }
457
458         $msglink = "";
459         if ($multiplelinks)
460                 $msglink = $b["plink"];
461         else if ($link != "")
462                 $msglink = $link;
463         else if ($multipleimages)
464                 $msglink = $b["plink"];
465         else if ($image != "")
466                 $msglink = $image;
467
468         // Removing multiple spaces - again
469         while (strpos($msg, "  ") !== false)
470                 $msg = str_replace("  ", " ", $msg);
471
472         if ($msglink != "") {
473                 // Looking if the link points to an image
474                 $img_str = fetch_url($msglink);
475
476                 $tempfile = tempnam(get_config("system","temppath"), "cache");
477                 file_put_contents($tempfile, $img_str);
478                 $mime = image_type_to_mime_type(exif_imagetype($tempfile));
479                 unlink($tempfile);
480         } else
481                 $mime = "";
482
483         if (($image == $msglink) OR (substr($mime, 0, 6) == "image/"))
484                 return(array("msg"=>trim($msg), "link"=>"", "linkname"=>$linkname, "image"=>$msglink));
485         else
486                 return(array("msg"=>trim($msg), "link"=>$msglink, "linkname"=>$linkname,"image"=>$image));
487 }
488
489 /**
490  * @param App $a
491  * @param object $b
492  * @return mixed
493  */
494 function fbpost_post_hook(&$a,&$b) {
495
496         logger('fbpost_post_hook: Facebook post invoked', LOGGER_DEBUG);
497
498         if($b['deleted'] || ($b['created'] !== $b['edited']))
499                 return;
500
501         logger('fbpost_post_hook: Facebook post first check successful', LOGGER_DEBUG);
502
503         // if post comes from facebook don't send it back
504         if(($b['app'] == "Facebook") AND ($b['verb'] != ACTIVITY_LIKE))
505                 return;
506
507         logger('fbpost_post_hook: Facebook post accepted', LOGGER_DEBUG);
508
509         /**
510          * Post to Facebook stream
511          */
512
513         require_once('include/group.php');
514         require_once('include/html2plain.php');
515
516
517         $reply = false;
518         $likes = false;
519
520         $deny_arr = array();
521         $allow_arr = array();
522
523         $toplevel = (($b['id'] == $b['parent']) ? true : false);
524
525
526         $linking = ((get_pconfig($b['uid'],'facebook','no_linking')) ? 0 : 1);
527
528         if((!$toplevel) && ($linking)) {
529                 $r = q("SELECT * FROM `item` WHERE `id` = %d AND `uid` = %d LIMIT 1",
530                         intval($b['parent']),
531                         intval($b['uid'])
532                 );
533                 //$r = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
534                 //      dbesc($b['parent-uri']),
535                 //      intval($b['uid'])
536                 //);
537
538                 // is it a reply to a facebook post?
539                 // A reply to a toplevel post is only allowed for "real" facebook posts
540                 if(count($r) && substr($r[0]['uri'],0,4) === 'fb::')
541                         $reply = substr($r[0]['uri'],4);
542                 elseif(count($r) && (substr($r[0]['extid'],0,4) === 'fb::') AND ($r[0]['id'] != $r[0]['parent']))
543                         $reply = substr($r[0]['extid'],4);
544                 else
545                         return;
546
547                 $u = q("SELECT * FROM user where uid = %d limit 1",
548                         intval($b['uid'])
549                 );
550                 if(! count($u))
551                         return;
552
553                 // only accept comments from the item owner. Other contacts are unknown to FB.
554
555                 if(! link_compare($b['author-link'], $a->get_baseurl() . '/profile/' . $u[0]['nickname']))
556                         return;
557
558
559                 logger('fbpost_post_hook: facebook reply id=' . $reply);
560         }
561
562         if(strstr($b['postopts'],'facebook') || ($b['private']) || ($reply)) {
563
564                 if($b['private'] && $reply === false) {
565                         $allow_people = expand_acl($b['allow_cid']);
566                         $allow_groups = expand_groups(expand_acl($b['allow_gid']));
567                         $deny_people  = expand_acl($b['deny_cid']);
568                         $deny_groups  = expand_groups(expand_acl($b['deny_gid']));
569
570                         $recipients = array_unique(array_merge($allow_people,$allow_groups));
571                         $deny = array_unique(array_merge($deny_people,$deny_groups));
572
573                         $allow_str = dbesc(implode(', ',$recipients));
574                         if($allow_str) {
575                                 $r = q("SELECT `notify` FROM `contact` WHERE `id` IN ( $allow_str ) AND `network` = 'face'"); 
576                                 if(count($r))
577                                         foreach($r as $rr)
578                                                 $allow_arr[] = $rr['notify'];
579                         }
580
581                         $deny_str = dbesc(implode(', ',$deny));
582                         if($deny_str) {
583                                 $r = q("SELECT `notify` FROM `contact` WHERE `id` IN ( $deny_str ) AND `network` = 'face'"); 
584                                 if(count($r))
585                                         foreach($r as $rr)
586                                                 $deny_arr[] = $rr['notify'];
587                         }
588
589                         if(count($deny_arr) && (! count($allow_arr))) {
590
591                                 // One or more FB folks were denied access but nobody on FB was specifically allowed access.
592                                 // This might cause the post to be open to public on Facebook, but only to selected members
593                                 // on another network. Since this could potentially leak a post to somebody who was denied, 
594                                 // we will skip posting it to Facebook with a slightly vague but relevant message that will 
595                                 // hopefully lead somebody to this code comment for a better explanation of what went wrong.
596
597                                 notice( t('Post to Facebook cancelled because of multi-network access permission conflict.') . EOL);
598                                 return;
599                         }
600
601
602                         // if it's a private message but no Facebook members are allowed or denied, skip Facebook post
603
604                         if((! count($allow_arr)) && (! count($deny_arr)))
605                                 return;
606                 }
607
608                 if($b['verb'] == ACTIVITY_LIKE) {
609                         $likes = true;
610                         logger('fbpost_post_hook: liking '.print_r($b, true), LOGGER_DEBUG);
611                 }
612
613
614                 $appid  = get_config('facebook', 'appid'  );
615                 $secret = get_config('facebook', 'appsecret' );
616
617                 if($appid && $secret) {
618
619                         logger('fbpost_post_hook: have appid+secret');
620
621                         $fb_token  = get_pconfig($b['uid'],'facebook','access_token');
622
623
624                         // post to facebook if it's a public post and we've ticked the 'post to Facebook' box,
625                         // or it's a private message with facebook participants
626                         // or it's a reply or likes action to an existing facebook post
627
628                         if($fb_token && ($toplevel || $b['private'] || $reply)) {
629                                 logger('fbpost_post_hook: able to post');
630                                 require_once('library/facebook.php');
631                                 require_once('include/bbcode.php');
632
633                                 $msg = $b['body'];
634
635                                 logger('fbpost_post_hook: original msg=' . $msg, LOGGER_DATA);
636
637                                 // To-Do: if it is a reply, then only do a simple bbcode2plain conversion
638                                 $msgarr = fbpost_createmsg($b);
639                                 $msg = $msgarr["msg"];
640                                 $link = $msgarr["link"];
641                                 $image = $msgarr["image"];
642                                 $linkname = $msgarr["linkname"];
643
644                                 // Fallback - if message is empty
645                                 if(!strlen($msg))
646                                         $msg = $linkname;
647
648                                 if(!strlen($msg))
649                                         $msg = $link;
650
651                                 if(!strlen($msg))
652                                         $msg = $image;
653
654                                 // If there is nothing to post then exit
655                                 if(!strlen($msg))
656                                         return;
657
658                                 logger('fbpost_post_hook: msg=' . $msg, LOGGER_DATA);
659
660                                 $video = "";
661
662                                 if($likes) {
663                                         $postvars = array('access_token' => $fb_token);
664                                 } else {
665                                         // message, picture, link, name, caption, description, source, place, tags
666                                         //if(trim($link) != "")
667                                         //      if (@exif_imagetype($link) != 0) {
668                                         //              $image = $link;
669                                         //              $link = "";
670                                         //      }
671
672                                         $postvars = array(
673                                                 'access_token' => $fb_token,
674                                                 'message' => $msg
675                                         );
676                                         if(trim($image) != "")
677                                                 $postvars['picture'] = $image;
678
679                                         if(trim($link) != "") {
680                                                 $postvars['link'] = $link;
681
682                                                 if ((stristr($link,'youtube')) || (stristr($link,'youtu.be')) || (stristr($link,'vimeo'))) {
683                                                         $video = $link;
684                                                 }
685                                         }
686                                         if(trim($linkname) != "")
687                                                 $postvars['name'] = $linkname;
688                                 }
689
690                                 if(($b['private']) && ($toplevel)) {
691                                         $postvars['privacy'] = '{"value": "CUSTOM", "friends": "SOME_FRIENDS"';
692                                         if(count($allow_arr))
693                                                 $postvars['privacy'] .= ',"allow": "' . implode(',',$allow_arr) . '"';
694                                         if(count($deny_arr))
695                                                 $postvars['privacy'] .= ',"deny": "' . implode(',',$deny_arr) . '"';
696                                         $postvars['privacy'] .= '}';
697
698                                 }
699
700                                 $post_to_page = get_pconfig($b['uid'],'facebook','post_to_page');
701                                 $page_access_token = get_pconfig($b['uid'],'facebook','page_access_token');
702                                 if ((intval($post_to_page) != 0) and ($page_access_token != ""))
703                                         $target = $post_to_page;
704                                 else
705                                         $target = "me";
706
707                                 if($reply) {
708                                         $url = 'https://graph.facebook.com/' . $reply . '/' . (($likes) ? 'likes' : 'comments');
709                                 } else if (($video != "") or (($image == "") and ($link != ""))) {
710                                         // If it is a link to a video or a link without a preview picture then post it as a link
711                                         if ($video != "")
712                                                 $link = $video;
713
714                                         $postvars = array(
715                                                 'access_token' => $fb_token,
716                                                 'link' => $link,
717                                         );
718                                         if ($msg != $video)
719                                                 $postvars['message'] = $msg;
720
721                                         $url = 'https://graph.facebook.com/'.$target.'/links';
722                                 } else if (($link == "") and ($image != "")) {
723                                         // If it is only an image without a page link then post this image as a photo
724                                         $postvars = array(
725                                                 'access_token' => $fb_token,
726                                                 'url' => $image,
727                                         );
728                                         if ($msg != $image)
729                                                 $postvars['message'] = $msg;
730
731                                         $url = 'https://graph.facebook.com/'.$target.'/photos';
732                                 } else if (($link != "") or ($image != "") or ($b['title'] == '') or (strlen($msg) < 500)) {
733                                         $url = 'https://graph.facebook.com/'.$target.'/feed';
734                                         if (!get_pconfig($b['uid'],'facebook','suppress_view_on_friendica') and $b['plink'])
735                                                 $postvars['actions'] = '{"name": "' . t('View on Friendica') . '", "link": "' .  $b['plink'] . '"}';
736                                 } else {
737                                         // if its only a message and a subject and the message is larger than 500 characters then post it as note
738                                         $postvars = array(
739                                                 'access_token' => $fb_token,
740                                                 'message' => bbcode($b['body'], false, false),
741                                                 'subject' => $b['title'],
742                                         );
743                                         $url = 'https://graph.facebook.com/'.$target.'/notes';
744                                 }
745
746                                 // Post to page?
747                                 if (!$reply and ($target != "me") and $page_access_token)
748                                         $postvars['access_token'] = $page_access_token;
749
750                                 logger('fbpost_post_hook: post to ' . $url);
751                                 logger('fbpost_post_hook: postvars: ' . print_r($postvars,true));
752
753                                 // "test_mode" prevents anything from actually being posted.
754                                 // Otherwise, let's do it.
755
756                                 if(!get_config('facebook','test_mode')) {
757                                         $x = post_url($url, $postvars);
758                                         logger('fbpost_post_hook: post returns: ' . $x, LOGGER_DEBUG);
759
760                                         $retj = json_decode($x);
761                                         if($retj->id) {
762                                                 // Only set the extid when it isn't the toplevel post
763                                                 q("UPDATE `item` SET `extid` = '%s' WHERE `id` = %d AND `parent` != %d",
764                                                         dbesc('fb::' . $retj->id),
765                                                         intval($b['id']),
766                                                         intval($b['id'])
767                                                 );
768                                         } else {
769                                                 // Sometimes posts are accepted from facebook although it telling an error
770                                                 // This leads to endless comment flooding.
771
772                                                 // If it is a special kind of failure the post was receiced
773                                                 // Although facebook said it wasn't received ...
774                                                 if (!$likes AND (($retj->error->type != "OAuthException") OR ($retj->error->code != 2)) AND ($x <> "")) {
775                                                         $r = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND `self`", intval($b['uid']));
776                                                         if (count($r))
777                                                                 $a->contact = $r[0]["id"];
778
779                                                         $s = serialize(array('url' => $url, 'item' => $b['id'], 'post' => $postvars));
780                                                         require_once('include/queue_fn.php');
781                                                         add_to_queue($a->contact,NETWORK_FACEBOOK,$s);
782                                                         logger('fbpost_post_hook: Post failed, requeued.', LOGGER_DEBUG);
783                                                         notice( t('Facebook post failed. Queued for retry.') . EOL);
784                                                 }
785
786                                                 if (isset($retj->error) && $retj->error->type == "OAuthException" && $retj->error->code == 190) {
787                                                         logger('fbpost_post_hook: Facebook session has expired due to changed password.', LOGGER_DEBUG);
788
789                                                         $last_notification = get_pconfig($b['uid'], 'facebook', 'session_expired_mailsent');
790                                                         if (!$last_notification || $last_notification < (time() - FACEBOOK_SESSION_ERR_NOTIFICATION_INTERVAL)) {
791                                                                 require_once('include/enotify.php');
792
793                                                                 $r = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1", intval($b['uid']));
794                                                                 notification(array(
795                                                                         'uid' => $b['uid'],
796                                                                         'type' => NOTIFY_SYSTEM,
797                                                                         'system_type' => 'facebook_connection_invalid',
798                                                                         'language'     => $r[0]['language'],
799                                                                         'to_name'      => $r[0]['username'],
800                                                                         'to_email'     => $r[0]['email'],
801                                                                         'source_name'  => t('Administrator'),
802                                                                         'source_link'  => $a->config["system"]["url"],
803                                                                         'source_photo' => $a->config["system"]["url"] . '/images/person-80.jpg',
804                                                                 ));
805
806                                                                 set_pconfig($b['uid'], 'facebook', 'session_expired_mailsent', time());
807                                                         } else logger('fbpost_post_hook: No notification, as the last one was sent on ' . $last_notification, LOGGER_DEBUG);
808                                                 }
809                                         }
810                                 }
811                         }
812                 }
813         }
814 }
815
816 /**
817  * @param App $app
818  * @param object $data
819  */
820 function fbpost_enotify(&$app, &$data) {
821         if (x($data, 'params') && $data['params']['type'] == NOTIFY_SYSTEM && x($data['params'], 'system_type') && $data['params']['system_type'] == 'facebook_connection_invalid') {
822                 $data['itemlink'] = '/fbpost';
823                 $data['epreamble'] = $data['preamble'] = t('Your Facebook connection became invalid. Please Re-authenticate.');
824                 $data['subject'] = t('Facebook connection became invalid');
825                 $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"] . "/fbpost]", "[/url]");
826         }
827 }
828
829 /**
830  * @param App $a
831  * @param object $b
832  */
833 function fbpost_post_local(&$a,&$b) {
834
835         // Figure out if Facebook posting is enabled for this post and file it in 'postopts'
836         // where we will discover it during background delivery.
837
838         // This can only be triggered by a local user posting to their own wall.
839
840         if((local_user()) && (local_user() == $b['uid'])) {
841
842                 $fb_post   = intval(get_pconfig(local_user(),'facebook','post'));
843                 $fb_enable = (($fb_post && x($_REQUEST,'facebook_enable')) ? intval($_REQUEST['facebook_enable']) : 0);
844
845                 // if API is used, default to the chosen settings
846                 // but allow a specific override
847
848                 if($_REQUEST['api_source'] && intval(get_pconfig(local_user(),'facebook','post_by_default'))) {
849                         if(! x($_REQUEST,'facebook_enable'))
850                                 $fb_enable = 1;
851                 }
852
853                 if(! $fb_enable)
854                         return;
855
856                 if(strlen($b['postopts']))
857                         $b['postopts'] .= ',';
858                 $b['postopts'] .= 'facebook';
859         }
860 }
861
862
863 /**
864  * @param App $a
865  * @param object $b
866  */
867 function fbpost_queue_hook(&$a,&$b) {
868
869         $qi = q("SELECT * FROM `queue` WHERE `network` = '%s'",
870                 dbesc(NETWORK_FACEBOOK)
871         );
872         if(! count($qi))
873                 return;
874
875         require_once('include/queue_fn.php');
876
877         foreach($qi as $x) {
878                 if($x['network'] !== NETWORK_FACEBOOK)
879                         continue;
880
881                 logger('fbpost_queue_hook: run');
882
883                 $r = q("SELECT `user`.* FROM `user` LEFT JOIN `contact` on `contact`.`uid` = `user`.`uid` 
884                         WHERE `contact`.`self` = 1 AND `contact`.`id` = %d LIMIT 1",
885                         intval($x['cid'])
886                 );
887                 if(! count($r)) {
888                         logger('fbpost_queue_hook: no user found for entry '.print_r($x, true));
889                         update_queue_time($x['id']);
890                         continue;
891                 }
892
893                 $user = $r[0];
894
895                 $appid  = get_config('facebook', 'appid'  );
896                 $secret = get_config('facebook', 'appsecret' );
897
898                 if($appid && $secret) {
899                         $fb_post   = intval(get_pconfig($user['uid'],'facebook','post'));
900                         $fb_token  = get_pconfig($user['uid'],'facebook','access_token');
901
902                         if($fb_post && $fb_token) {
903                                 logger('fbpost_queue_hook: able to post');
904                                 require_once('library/facebook.php');
905
906                                 $z = unserialize($x['content']);
907                                 $item = $z['item'];
908                                 $j = post_url($z['url'],$z['post']);
909
910                                 $retj = json_decode($j);
911                                 if($retj->id) {
912                                         // Only set the extid when it isn't the toplevel post
913                                         q("UPDATE `item` SET `extid` = '%s' WHERE `id` = %d AND `parent` != %d",
914                                                 dbesc('fb::' . $retj->id),
915                                                 intval($item),
916                                                 intval($item)
917                                         );
918                                         logger('fbpost_queue_hook: success: ' . $j);
919                                         remove_queue_item($x['id']);
920                                 } else {
921                                         logger('fbpost_queue_hook: failed: ' . $j);
922
923                                         // If it is a special kind of failure the post was receiced
924                                         // Although facebook said it wasn't received ...
925                                         $ret = json_decode($j);
926                                         if (($ret->error->type != "OAuthException") OR ($ret->error->code != 2) AND ($j <> ""))
927                                                 update_queue_time($x['id']);
928                                         else
929                                                 logger('fbpost_queue_hook: Not requeued, since it seems to be received');
930                                 }
931                         } else {
932                                 logger('fbpost_queue_hook: No fb_post or fb_token.');
933                                 update_queue_time($x['id']);
934                         }
935                 } else {
936                         logger('fbpost_queue_hook: No appid or secret.');
937                         update_queue_time($x['id']);
938                 }
939         }
940 }
941
942
943 /**
944  * @return bool|string
945  */
946 function fbpost_get_app_access_token() {
947
948         $acc_token = get_config('facebook','app_access_token');
949
950         if ($acc_token !== false) return $acc_token;
951
952         $appid = get_config('facebook','appid');
953         $appsecret = get_config('facebook', 'appsecret');
954
955         if ($appid === false || $appsecret === false) {
956                 logger('fb_get_app_access_token: appid and/or appsecret not set', LOGGER_DEBUG);
957                 return false;
958         }
959         logger('https://graph.facebook.com/oauth/access_token?client_id=' . $appid . '&client_secret=' . $appsecret . '&grant_type=client_credentials', LOGGER_DATA);
960         $x = fetch_url('https://graph.facebook.com/oauth/access_token?client_id=' . $appid . '&client_secret=' . $appsecret . '&grant_type=client_credentials');
961
962         if(strpos($x,'access_token=') !== false) {
963                 logger('fb_get_app_access_token: returned access token: ' . $x, LOGGER_DATA);
964
965                 $token = str_replace('access_token=', '', $x);
966                 if(strpos($token,'&') !== false)
967                         $token = substr($token,0,strpos($token,'&'));
968
969                 if ($token == "") {
970                         logger('fb_get_app_access_token: empty token: ' . $x, LOGGER_DEBUG);
971                         return false;
972                 }
973                 set_config('facebook','app_access_token',$token);
974                 return $token;
975         } else {
976                 logger('fb_get_app_access_token: response did not contain an access_token: ' . $x, LOGGER_DATA);
977                 return false;
978         }
979 }
980
981 function fbpost_cron($a,$b) {
982         $last = get_config('facebook','last_poll');
983
984         $poll_interval = intval(get_config('facebook','poll_interval'));
985         if(! $poll_interval)
986                 $poll_interval = FACEBOOK_DEFAULT_POLL_INTERVAL;
987
988         if($last) {
989                 $next = $last + ($poll_interval * 60);
990                 if($next > time()) {
991                         logger('facebook: poll intervall not reached');
992                         return;
993                 }
994         }
995         logger('facebook: cron_start');
996
997         $r = q("SELECT * FROM `pconfig` WHERE `cat` = 'facebook' AND `k` = 'mirror_posts' AND `v` = '1' ORDER BY RAND() ");
998         if(count($r)) {
999                 foreach($r as $rr) {
1000                         logger('facebook: fetching for user '.$rr['uid']);
1001                         fbpost_fetchwall($a, $rr['uid']);
1002                 }
1003         }
1004
1005         logger('facebook: cron_end');
1006
1007         set_config('facebook','last_poll', time());
1008 }
1009
1010 function fbpost_fetchwall($a, $uid) {
1011         require_once("include/oembed.php");
1012
1013         $access_token = get_pconfig($uid,'facebook','access_token');
1014         $post_to_page = get_pconfig($uid,'facebook','post_to_page');
1015         $lastcreated = get_pconfig($uid,'facebook','last_created');
1016
1017         if ((int)$post_to_page == 0)
1018                 $post_to_page = "me";
1019
1020         $url = "https://graph.facebook.com/".$post_to_page."/feed?access_token=".$access_token;
1021
1022         $first_time = ($lastcreated == "");
1023
1024         if ($lastcreated != "")
1025                 $url .= "&since=".urlencode($lastcreated);
1026
1027         $feed = fetch_url($url);
1028         $data = json_decode($feed);
1029
1030         if (!is_array($data->data))
1031                 return;
1032
1033         $items = array_reverse($data->data);
1034
1035         foreach ($items as $item) {
1036                 if ($item->created_time > $lastcreated)
1037                         $lastcreated = $item->created_time;
1038
1039                 if ($first_time)
1040                         continue;
1041
1042                 if ($item->application->id == get_config('facebook','appid'))
1043                         continue;
1044
1045                 if(isset($item->privacy) && ($item->privacy->value !== 'EVERYONE') && ($item->privacy->value !== ''))
1046                         continue;
1047
1048                 if (($post_to_page != $item->from->id) AND ((int)$post_to_page != 0))
1049                         continue;
1050
1051                 if (!strstr($item->id, $item->from->id."_") AND isset($item->to) AND ((int)$post_to_page == 0))
1052                         continue;
1053
1054                 $_SESSION["authenticated"] = true;
1055                 $_SESSION["uid"] = $uid;
1056
1057                 unset($_REQUEST);
1058                 $_REQUEST["type"] = "wall";
1059                 $_REQUEST["api_source"] = true;
1060                 $_REQUEST["profile_uid"] = $uid;
1061                 $_REQUEST["source"] = "Facebook";
1062
1063                 $_REQUEST["title"] = "";
1064
1065                 $_REQUEST["body"] = (isset($item->message) ? escape_tags($item->message) : '');
1066
1067                 $content = "";
1068                 $type = "";
1069
1070                 if(isset($item->name) and isset($item->link)) {
1071                         $oembed_data = oembed_fetch_url($item->link);
1072                         $type = $oembed_data->type;
1073                         $content = "[bookmark=".$item->link."]".$item->name."[/bookmark]";
1074                 } elseif (isset($item->name))
1075                         $content .= "[b]".$item->name."[/b]";
1076
1077                 $quote = "";
1078                 if(isset($item->description) and ($item->type != "photo"))
1079                         $quote = $item->description;
1080
1081                 if(isset($item->caption) and ($item->type == "photo"))
1082                         $quote = $item->caption;
1083
1084                 // Only import the picture when the message is no video
1085                 // oembed display a picture of the video as well
1086                 //if ($item->type != "video") {
1087                 //if (($item->type != "video") and ($item->type != "photo")) {
1088                 if (($type == "") OR ($type == "link")) {
1089
1090                         $type = $item->type;
1091
1092                         if(isset($item->picture) && isset($item->link))
1093                                 $content .= "\n".'[url='.$item->link.'][img]'.fpost_cleanpicture($item->picture).'[/img][/url]';
1094                         else {
1095                                 if (isset($item->picture))
1096                                         $content .= "\n".'[img]'.fpost_cleanpicture($item->picture).'[/img]';
1097                                 // if just a link, it may be a wall photo - check
1098                                 if(isset($item->link))
1099                                         $content .= fbpost_get_photo($uid,$item->link);
1100                         }
1101                 }
1102
1103                 if(trim($_REQUEST["body"].$content.$quote) == '') {
1104                         logger('facebook: empty body '.$item->id.' '.print_r($item, true));
1105                         continue;
1106                 }
1107
1108                 if ($content)
1109                         $_REQUEST["body"] .= "\n\n";
1110
1111                 if ($type)
1112                         $_REQUEST["body"] .= "[class=type-".$type."]";
1113
1114                 if ($content)
1115                         $_REQUEST["body"] .= trim($content);
1116
1117                 if ($quote)
1118                         $_REQUEST["body"] .= "\n[quote]".$quote."[/quote]";
1119
1120                 if ($type)
1121                         $_REQUEST["body"] .= "[/class]";
1122
1123                 $_REQUEST["body"] = trim($_REQUEST["body"]);
1124
1125                 if (isset($item->place)) {
1126                         if ($item->place->name or $item->place->location->street or
1127                                 $item->place->location->city or $item->place->location->country) {
1128                                 $_REQUEST["location"] = '';
1129                                 if ($item->place->name)
1130                                         $_REQUEST["location"] .= $item->place->name;
1131                                 if ($item->place->location->street)
1132                                         $_REQUEST["location"] .= " ".$item->place->location->street;
1133                                 if ($item->place->location->city)
1134                                         $_REQUEST["location"] .= " ".$item->place->location->city;
1135                                 if ($item->place->location->country)
1136                                         $_REQUEST["location"] .= " ".$item->place->location->country;
1137
1138                                 $_REQUEST["location"] = trim($_REQUEST["location"]);
1139                         }
1140                         if ($item->place->location->latitude and $item->place->location->longitude)
1141                                 $_REQUEST["coord"] = substr($item->place->location->latitude, 0, 8)
1142                                                 .' '.substr($item->place->location->longitude, 0, 8);
1143                 }
1144
1145                 //print_r($_REQUEST);
1146                 logger('facebook: posting for user '.$uid);
1147
1148                 require_once('mod/item.php');
1149                 item_post($a);
1150         }
1151
1152         set_pconfig($uid,'facebook','last_created', $lastcreated);
1153 }
1154
1155 function fbpost_get_photo($uid,$link) {
1156         $access_token = get_pconfig($uid,'facebook','access_token');
1157         if(! $access_token || (! stristr($link,'facebook.com/photo.php')))
1158                 return "";
1159
1160         $ret = preg_match('/fbid=([0-9]*)/',$link,$match);
1161         if($ret)
1162                 $photo_id = $match[1];
1163         else
1164                 return "";
1165
1166         $x = fetch_url('https://graph.facebook.com/'.$photo_id.'?access_token='.$access_token);
1167         $j = json_decode($x);
1168         if($j->picture)
1169                 return "\n\n".'[url='.$link.'][img]'.fpost_cleanpicture($j->picture).'[/img][/url]';
1170
1171         return "";
1172 }
1173
1174 function fpost_cleanpicture($image) {
1175
1176         if (strpos($image, ".fbcdn.net/") and (substr($image, -6) == "_s.jpg"))
1177                 $image = substr($image, 0, -6)."_n.jpg";
1178
1179         $queryvar = fbpost_parse_query($image);
1180         if ($queryvar['url'] != "")
1181                 $image = urldecode($queryvar['url']);
1182
1183         return $image;
1184 }
1185
1186 function fbpost_parse_query($var) {
1187         /**
1188          *  Use this function to parse out the query array element from
1189          *  the output of parse_url().
1190         */
1191         $var  = parse_url($var, PHP_URL_QUERY);
1192         $var  = html_entity_decode($var);
1193         $var  = explode('&', $var);
1194         $arr  = array();
1195
1196         foreach($var as $val) {
1197                 $x          = explode('=', $val);
1198                 $arr[$x[0]] = $x[1];
1199         }
1200
1201         unset($val, $x, $var);
1202         return $arr;
1203 }