4 * Description: Synchronizes the Facebook Newsfeed
6 * Author: Michael Vogel <https://pirati.ca/profile/heluecht>
12 - B: Threading for incoming comments
13 - C: Receiving likes for comments
16 - A: Posts to pages currently have the page as sender - not the user
17 - B: Sending likes for comments
18 - C: Threading for sent comments
21 require_once("addon/fbpost/fbpost.php");
23 define('FBSYNC_DEFAULT_POLL_INTERVAL', 5); // given in minutes
25 function fbsync_install() {
26 register_hook('connector_settings', 'addon/fbsync/fbsync.php', 'fbsync_settings');
27 register_hook('connector_settings_post', 'addon/fbsync/fbsync.php', 'fbsync_settings_post');
28 register_hook('cron', 'addon/fbsync/fbsync.php', 'fbsync_cron');
29 register_hook('follow', 'addon/fbsync/fbsync.php', 'fbsync_follow');
30 register_hook('expire', 'addon/fbsync/fbsync.php', 'fbsync_expire');
33 function fbsync_uninstall() {
34 unregister_hook('connector_settings', 'addon/fbsync/fbsync.php', 'fbsync_settings');
35 unregister_hook('connector_settings_post', 'addon/fbsync/fbsync.php', 'fbsync_settings_post');
36 unregister_hook('cron', 'addon/fbsync/fbsync.php', 'fbsync_cron');
37 unregister_hook('follow', 'addon/fbsync/fbsync.php', 'fbsync_follow');
38 unregister_hook('expire', 'addon/fbsync/fbsync.php', 'fbsync_expire');
41 function fbsync_follow($a, &$contact) {
43 logger("fbsync_follow: Check if contact is facebook contact. ".$contact["url"], LOGGER_DEBUG);
45 if (!strstr($contact["url"], "://www.facebook.com") AND !strstr($contact["url"], "://facebook.com") AND !strstr($contact["url"], "@facebook.com"))
48 // contact seems to be a facebook contact, so continue
49 $nickname = preg_replace("=https?://.*facebook.com/([\w.]*).*=ism", "$1", $contact["url"]);
50 $nickname = str_replace("@facebook.com", "", $nickname);
52 $uid = $a->user["uid"];
54 $access_token = get_pconfig($uid,'facebook','access_token');
57 "profile" => "SELECT id, pic_square, url, username, name FROM profile WHERE username = '$nickname'",
58 "avatar" => "SELECT url FROM square_profile_pic WHERE id IN (SELECT id FROM #profile) AND size = 256");
60 $url = "https://graph.facebook.com/fql?q=".urlencode(json_encode($fql))."&access_token=".$access_token;
62 $feed = fetch_url($url);
63 $data = json_decode($feed);
67 logger("fbsync_follow: Query id for nickname ".$nickname, LOGGER_DEBUG);
69 if (!is_array($data->data))
72 $contactdata = new stdClass;
74 foreach($data->data AS $query) {
75 switch ($query->name) {
77 $contactdata->id = number_format($query->fql_result_set[0]->id, 0, '', '');
78 $contactdata->pic_square = $query->fql_result_set[0]->pic_square;
79 $contactdata->url = $query->fql_result_set[0]->url;
80 $contactdata->username = $query->fql_result_set[0]->username;
81 $contactdata->name = $query->fql_result_set[0]->name;
85 $contactdata->pic_square = $query->fql_result_set[0]->url;
90 logger("fbsync_follow: Got contact for nickname ".$nickname." ".print_r($contactdata, true), LOGGER_DEBUG);
93 fbsync_fetch_contact($uid, $contactdata, true);
95 $r = q("SELECT name,nick,url,addr,batch,notify,poll,request,confirm,poco,photo,priority,network,alias,pubkey
96 FROM `contact` WHERE `uid` = %d AND `alias` = '%s'",
98 dbesc("facebook::".$contactdata->id));
100 $contact["contact"] = $r[0];
104 function fbsync_settings(&$a,&$s) {
106 // Settings are done inside the fbpost addon
112 /* Add our stylesheet to the page so we can make our settings look nice */
114 $a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="' . $a->get_baseurl() . '/addon/fbsync/fbsync.css' . '" media="all" />' . "\r\n";
116 /* Get the current state of our config variables */
118 $enabled = get_pconfig(local_user(),'fbsync','sync');
120 $checked = (($enabled) ? ' checked="checked" ' : '');
122 $def_enabled = get_pconfig(local_user(),'fbsync','create_user');
124 $def_checked = (($def_enabled) ? ' checked="checked" ' : '');
126 /* Add some HTML to the existing form */
128 $s .= '<span id="settings_fbsync_inflated" class="settings-block fakelink" style="display: block;" onclick="openClose(\'settings_fbsync_expanded\'); openClose(\'settings_fbsync_inflated\');">';
129 $s .= '<img class="connector" src="images/facebook.png" /><h3 class="connector">'. t('Facebook Import').'</h3>';
131 $s .= '<div id="settings_fbsync_expanded" class="settings-block" style="display: none;">';
132 $s .= '<span class="fakelink" onclick="openClose(\'settings_fbsync_expanded\'); openClose(\'settings_fbsync_inflated\');">';
133 $s .= '<img class="connector" src="images/facebook.png" /><h3 class="connector">'. t('Facebook Import').'</h3>';
136 $s .= '<div id="fbsync-enable-wrapper">';
137 $s .= '<label id="fbsync-enable-label" for="fbsync-checkbox">' . t('Import Facebook newsfeed') . '</label>';
138 $s .= '<input id="fbsync-checkbox" type="checkbox" name="fbsync" value="1" ' . $checked . '/>';
139 $s .= '</div><div class="clear"></div>';
141 $s .= '<div id="fbsync-create_user-wrapper">';
142 $s .= '<label id="fbsync-create_user-label" for="fbsync-create_user">' . t('Automatically create contacts') . '</label>';
143 $s .= '<input id="fbsync-create_user" type="checkbox" name="create_user" value="1" ' . $def_checked . '/>';
144 $s .= '</div><div class="clear"></div>';
146 /* provide a submit button */
148 $s .= '<div class="settings-submit-wrapper" ><input type="submit" id="fbsync-submit" name="fbsync-submit" class="settings-submit" value="' . t('Save Settings') . '" /></div></div>';
152 function fbsync_settings_post(&$a,&$b) {
154 if(x($_POST,'fbsync-submit')) {
155 set_pconfig(local_user(),'fbsync','sync',intval($_POST['fbsync']));
156 set_pconfig(local_user(),'fbsync','create_user',intval($_POST['create_user']));
160 function fbsync_cron($a,$b) {
161 $last = get_config('fbsync','last_poll');
163 $poll_interval = intval(get_config('fbsync','poll_interval'));
165 $poll_interval = FBSYNC_DEFAULT_POLL_INTERVAL;
168 $next = $last + ($poll_interval * 60);
170 logger('fbsync_cron: poll intervall not reached');
174 logger('fbsync_cron: cron_start');
176 $abandon_days = intval(get_config('system','account_abandon_days'));
177 if ($abandon_days < 1)
180 $abandon_limit = date("Y-m-d H:i:s", time() - $abandon_days * 86400);
182 $r = q("SELECT * FROM `pconfig` WHERE `cat` = 'fbsync' AND `k` = 'sync' AND `v` = '1' ORDER BY RAND()");
186 if ($abandon_days != 0) {
187 $user = q("SELECT `login_date` FROM `user` WHERE uid=%d AND `login_date` >= '%s'", $rr['uid'], $abandon_limit);
189 logger('abandoned account: timeline from user '.$rr['uid'].' will not be imported');
194 fbsync_get_self($rr['uid']);
196 logger('fbsync_cron: importing timeline from user '.$rr['uid']);
197 fbsync_fetchfeed($a, $rr['uid']);
201 logger('fbsync_cron: cron_end');
203 set_config('fbsync','last_poll', time());
206 function fbsync_expire($a,$b) {
208 $days = get_config('fbsync', 'expire');
213 $r = q("DELETE FROM `item` WHERE `deleted` AND `network` = '%s'", dbesc(NETWORK_FACEBOOK));
215 require_once("include/items.php");
217 logger('fbsync_expire: expire_start');
219 $r = q("SELECT * FROM `pconfig` WHERE `cat` = 'fbsync' AND `k` = 'sync' AND `v` = '1' ORDER BY RAND()");
222 logger('fbsync_expire: user '.$rr['uid']);
223 item_expire($rr['uid'], $days, NETWORK_FACEBOOK, true);
227 logger('fbsync_expire: expire_end');
230 function fbsync_createpost($a, $uid, $self, $contacts, $applications, $post, $create_user) {
232 $access_token = get_pconfig($uid,'facebook','access_token');
234 require_once("include/oembed.php");
235 require_once("include/network.php");
236 require_once("include/items.php");
238 // check if it was already imported
239 $r = q("SELECT * FROM `item` WHERE `uid` = %d AND `uri` = '%s' LIMIT 1",
241 dbesc('fb::'.$post->post_id)
246 $postarray = array();
247 $postarray['gravity'] = 0;
248 $postarray['uid'] = $uid;
249 $postarray['wall'] = 0;
251 $postarray['verb'] = ACTIVITY_POST;
252 $postarray['object-type'] = ACTIVITY_OBJ_NOTE; // default value - is maybe changed later when media is attached
253 $postarray['network'] = dbesc(NETWORK_FACEBOOK);
255 $postarray['uri'] = "fb::".$post->post_id;
256 $postarray['thr-parent'] = $postarray['uri'];
257 $postarray['parent-uri'] = $postarray['uri'];
258 $postarray['plink'] = $post->permalink;
260 $postarray['author-name'] = $contacts[$post->actor_id]->name;
261 $postarray['author-link'] = $contacts[$post->actor_id]->url;
262 $postarray['author-avatar'] = $contacts[$post->actor_id]->pic_square;
264 $postarray['owner-name'] = $contacts[$post->source_id]->name;
265 $postarray['owner-link'] = $contacts[$post->source_id]->url;
266 $postarray['owner-avatar'] = $contacts[$post->source_id]->pic_square;
270 if (($post->parent_post_id != "") AND ($post->actor_id == $post->source_id)) {
271 $pos = strpos($post->parent_post_id, "_");
274 $user_id = substr($post->parent_post_id, 0, $pos);
276 $userdata = fbsync_fetchuser($a, $uid, $user_id);
278 $contact_id = $userdata["contact-id"];
280 $postarray['contact-id'] = $contact_id;
282 if (array_key_exists("name", $userdata) AND ($userdata["name"] != "") AND !link_compare($userdata["link"], $postarray['author-link'])) {
283 $postarray['owner-name'] = $userdata["name"];
284 $postarray['owner-link'] = $userdata["link"];
285 $postarray['owner-avatar'] = $userdata["avatar"];
287 if (!intval(get_config('system','wall-to-wall_share'))) {
289 $prebody = "[share author='".$postarray['author-name'].
290 "' profile='".$postarray['author-link'].
291 "' avatar='".$postarray['author-avatar']."']";
293 $postarray['author-name'] = $postarray['owner-name'];
294 $postarray['author-link'] = $postarray['owner-link'];
295 $postarray['author-avatar'] = $postarray['owner-avatar'];
301 if ($contact_id <= 0) {
302 if ($post->actor_id != $post->source_id) {
303 // Testing if we know the source or the actor
304 $contact_id = fbsync_fetch_contact($uid, $contacts[$post->source_id], false);
306 if (($contact_id == 0) and array_key_exists($post->actor_id, $contacts))
307 $contact_id = fbsync_fetch_contact($uid, $contacts[$post->actor_id], false);
309 // If we don't know anyone, we guess we should know the source. Could be the wrong decision
310 if ($contact_id == 0)
311 $contact_id = fbsync_fetch_contact($uid, $contacts[$post->source_id], $create_user);
313 $contact_id = fbsync_fetch_contact($uid, $contacts[$post->source_id], $create_user);
316 if ($contact_id == -1) {
317 logger('fbsync_createpost: Contact is blocked. Post not imported '.print_r($post, true), LOGGER_DEBUG);
319 } elseif (($contact_id <= 0) AND !$create_user) {
320 logger('fbsync_createpost: No matching contact found. Post not imported '.print_r($post, true), LOGGER_DEBUG);
322 } elseif ($contact_id == 0) {
323 // This case should never happen
324 logger('fbsync_createpost: No matching contact found. Using own id. (Should never happen) '.print_r($post, true), LOGGER_DEBUG);
325 $contact_id = $self[0]["id"];
328 $postarray['contact-id'] = $contact_id;
331 $postarray["body"] = (isset($post->message) ? escape_tags($post->message) : '');
333 $msgdata = fbsync_convertmsg($a, $postarray["body"]);
335 $postarray["body"] = $msgdata["body"];
336 $postarray["tag"] = $msgdata["tags"];
338 // Change the object type when an attachment is present
339 if (isset($post->attachment->fb_object_type))
340 logger('fb_object_type: '.$post->attachment->fb_object_type." ".print_r($post->attachment, true), LOGGER_DEBUG);
341 switch ($post->attachment->fb_object_type) {
343 $postarray['object-type'] = ACTIVITY_OBJ_IMAGE; // photo is deprecated: http://activitystrea.ms/head/activity-schema.html#image
346 $postarray['object-type'] = ACTIVITY_OBJ_VIDEO;
349 //$postarray['object-type'] = ACTIVITY_OBJ_BOOKMARK;
352 logger('Unknown object type '.$post->attachment->fb_object_type, LOGGER_DEBUG);
358 $pagedata["type"] = "";
360 if (isset($post->attachment->name) and isset($post->attachment->href)) {
361 $post->attachment->href = original_url($post->attachment->href);
362 $oembed_data = oembed_fetch_url($post->attachment->href);
363 $pagedata["type"] = $oembed_data->type;
364 if ($pagedata["type"] == "rich")
365 $pagedata["type"] = "link";
367 $pagedata["url"] = $post->attachment->href;
368 $pagedata["title"] = $post->attachment->name;
369 $content = "[bookmark=".$post->attachment->href."]".$post->attachment->name."[/bookmark]";
371 // If a link is not only attached but also added in the body, look if it can be removed in the body.
372 $removedlink = trim(str_replace($post->attachment->href, "", $postarray["body"]));
374 if (($removedlink == "") OR strstr($postarray["body"], $removedlink))
375 $postarray["body"] = $removedlink;
377 } elseif (isset($post->attachment->name) AND ($post->attachment->name != ""))
378 $content = "[b]" . $post->attachment->name."[/b]";
380 $pagedata["text"] = "";
381 if (isset($post->attachment->description) and ($post->attachment->fb_object_type != "photo"))
382 $pagedata["text"] = $post->attachment->description;
384 if (isset($post->attachment->caption) and ($post->attachment->fb_object_type == "photo"))
385 $pagedata["text"] = $post->attachment->caption;
387 if ($pagedata["text"].$post->attachment->href.$content.$postarray["body"] == "")
390 if (isset($post->attachment->media) AND (($pagedata["type"] == "") OR ($pagedata["type"] == "link"))) {
391 foreach ($post->attachment->media AS $media) {
393 if (isset($media->type))
394 $pagedata["type"] = $media->type;
396 if (isset($media->src))
397 $pagedata["images"][0]["src"] = $media->src;
399 if (isset($media->photo)) {
400 if (isset($media->photo->images) AND (count($media->photo->images) > 1))
401 $pagedata["images"][0]["src"] = $media->photo->images[1]->src;
403 if (isset($media->photo->fbid)) {
404 logger('fbsync_createpost: fetching fbid '.$media->photo->fbid, LOGGER_DEBUG);
405 $url = "https://graph.facebook.com/".$media->photo->fbid."?access_token=".$access_token;
406 $feed = fetch_url($url);
407 $data = json_decode($feed);
408 if (isset($data->images)) {
409 $pagedata["images"][0]["src"] = $data->images[0]->source;
410 logger('fbsync_createpost: got fbid '.$media->photo->fbid.' image '.$pagedata["images"][0]["src"], LOGGER_DEBUG);
412 logger('fbsync_createpost: error fetching fbid '.$media->photo->fbid.' '.print_r($data, true), LOGGER_DEBUG);
416 $pagedata["images"][0]["src"] = fbpost_cleanpicture($pagedata["images"][0]["src"]);
418 if (isset($media->href) AND ($pagedata["images"][0]["src"] != "") AND ($media->href != "")) {
419 $media->href = original_url($media->href);
420 $pagedata["url"] = $media->href;
421 $content .= "\n".'[url='.$media->href.'][img]'.$pagedata["images"][0]["src"].'[/img][/url]';
423 if ($pagedata["images"][0]["src"] != "")
424 $content .= "\n".'[img]'.$pagedata["images"][0]["src"].'[/img]';
426 // if just a link, it may be a wall photo - check
427 if (isset($post->link))
428 $content .= fbpost_get_photo($media->href);
433 if ($pagedata["type"] != "") {
434 if ($pagedata["type"] == "link")
435 $postarray["object-type"] = ACTIVITY_OBJ_BOOKMARK;
437 $postarray["body"] .= add_page_info_data($pagedata);
440 $postarray["body"] .= "\n".trim($content);
442 if ($pagedata["text"])
443 $postarray["body"] .= "\n[quote]".trim($pagedata["text"])."[/quote]";
445 $postarray["body"] = trim($postarray["body"]);
448 if (trim($postarray["body"]) == "")
452 $postarray["body"] = $prebody.$postarray["body"]."[/share]";
454 $postarray['created'] = datetime_convert('UTC','UTC',date("c", $post->created_time));
455 $postarray['edited'] = datetime_convert('UTC','UTC',date("c", $post->updated_time));
457 $postarray['app'] = $applications[$post->app_id]->display_name;
459 if ($postarray['app'] == "")
460 $postarray['app'] = "Facebook";
462 if(isset($post->privacy) && $post->privacy->value !== '') {
463 $postarray['private'] = 1;
464 $postarray['allow_cid'] = '<' . $self[0]['id'] . '>';
468 $postarray["location"] = $post->place->name;
469 postarray["coord"] = $post->geo->coordinates[0]." ".$post->geo->coordinates[1];
472 //$types = array(46, 80, 237, 247, 308);
473 //if (!in_array($post->type, $types))
474 // $postarray["body"] = "Type: ".$post->type."\n".$postarray["body"];
476 //print_r($postarray);
477 $item = item_store($postarray);
478 logger('fbsync_createpost: User '.$self[0]["nick"].' posted feed item '.$item, LOGGER_DEBUG);
481 function fbsync_createcomment($a, $uid, $self_id, $self, $user, $contacts, $applications, $comment) {
483 // check if it was already imported
484 $r = q("SELECT `uri` FROM `item` WHERE `uid` = %d AND `uri` = '%s' LIMIT 1",
486 dbesc('fb::'.$comment->id)
491 // check if it was an own post (separate posting for performance reasons)
492 $r = q("SELECT `uri` FROM `item` WHERE `uid` = %d AND `extid` = '%s' LIMIT 1",
494 dbesc('fb::'.$comment->id)
503 // Fetch the parent uri (Checking if the parent exists)
504 $r = q("SELECT `uri`, `contact-id` FROM `item` WHERE `uid` = %d AND `uri` = '%s' LIMIT 1",
506 dbesc('fb::'.$comment->post_id)
509 $parent_uri = $r[0]["uri"];
510 $parent_contact = $r[0]["contact-id"];
513 // check if it is a reply to an own post (separate posting for performance reasons)
514 $r = q("SELECT `uri`, `contact-id` FROM `item` WHERE `uid` = %d AND `extid` = '%s' LIMIT 1",
516 dbesc('fb::'.$comment->post_id)
519 $parent_uri = $r[0]["uri"];
520 $parent_contact = $r[0]["contact-id"];
523 // No parent? Then quit
524 if ($parent_uri == "")
527 //logger("fbsync_createcomment: Checking if parent contact is blocked: ".$parent_contact." - ".$parent_uri, LOGGER_DEBUG);
529 // Check if the contact id was blocked
530 if ($parent_contact > 0) {
531 $r = q("SELECT `blocked`, `readonly`, `nick` FROM `contact` WHERE `uid` = %d AND `id` = %d LIMIT 1",
532 intval($uid), intval($parent_contact));
534 // Should only happen if someone deleted the contact manually
536 logger("fbsync_createcomment: UID ".$uid." - Contact ".$parent_contact." doesn't seem to exist.", LOGGER_DEBUG);
540 // Is blocked? Then return
541 if ($r[0]["readonly"] OR $r[0]["blocked"]) {
542 logger("fbsync_createcomment: UID ".$uid." - Contact '".$r[0]["nick"]."' is blocked or readonly.", LOGGER_DEBUG);
546 $parent_nick = $r[0]["nick"];
547 logger("fbsync_createcomment: UID ".$uid." - Contact '".$r[0]["nick"]."' isn't blocked. ".print_r($r, true), LOGGER_DEBUG);
550 $postarray = array();
551 $postarray['gravity'] = 0;
552 $postarray['uid'] = $uid;
553 $postarray['wall'] = 0;
555 $postarray['verb'] = ACTIVITY_POST;
556 $postarray['object-type'] = ACTIVITY_OBJ_COMMENT;
557 $postarray['network'] = dbesc(NETWORK_FACEBOOK);
559 $postarray['uri'] = "fb::".$comment->id;
560 $postarray['thr-parent'] = $parent_uri;
561 $postarray['parent-uri'] = $parent_uri;
562 //$postarray['plink'] = $comment->permalink;
564 $contact_id = fbsync_fetch_contact($uid, $contacts[$comment->fromid], array(), false);
566 $contact_nick = $contacts[$comment->fromid]->name;
568 if ($contact_id == -1) {
569 logger('fbsync_createcomment: Contact was blocked. Comment not imported '.print_r($comment, true), LOGGER_DEBUG);
573 // If no contact was found, take it from the thread owner
574 if ($contact_id <= 0) {
575 $contact_id = $parent_contact;
576 $contact_nick = $parent_nick;
579 // This case here should never happen
580 if ($contact_id <= 0) {
581 $contact_id = $self[0]["id"];
582 $contact_nick = $self[0]["nick"];
585 if ($comment->fromid != $self_id) {
586 $postarray['contact-id'] = $contact_id;
587 $postarray['owner-name'] = $contacts[$comment->fromid]->name;
588 $postarray['owner-link'] = $contacts[$comment->fromid]->url;
589 $postarray['owner-avatar'] = $contacts[$comment->fromid]->pic_square;
591 $postarray['contact-id'] = $self[0]["id"];
592 $postarray['owner-name'] = $self[0]["name"];
593 $postarray['owner-link'] = $self[0]["url"];
594 $postarray['owner-avatar'] = $self[0]["photo"];
595 $contact_nick = $self[0]["nick"];
598 $postarray['author-name'] = $postarray['owner-name'];
599 $postarray['author-link'] = $postarray['owner-link'];
600 $postarray['author-avatar'] = $postarray['owner-avatar'];
602 $msgdata = fbsync_convertmsg($a, $comment->text);
604 $postarray["body"] = $msgdata["body"];
605 $postarray["tag"] = $msgdata["tags"];
607 $postarray['created'] = datetime_convert('UTC','UTC',date("c", $comment->time));
608 $postarray['edited'] = datetime_convert('UTC','UTC',date("c", $comment->time));
610 $postarray['app'] = $applications[$comment->app_id]->display_name;
612 if ($postarray['app'] == "")
613 $postarray['app'] = "Facebook";
615 if (trim($postarray["body"]) == "")
618 $item = item_store($postarray);
619 $postarray["id"] = $item;
621 logger('fbsync_createcomment: UID '.$uid.' - CID '.$postarray['contact-id'].' - Nick '.$contact_nick.' posted comment '.$item, LOGGER_DEBUG);
626 $myconv = q("SELECT `author-link`, `author-avatar`, `parent` FROM `item` WHERE `parent-uri` = '%s' AND `uid` = %d AND `parent` != 0 AND `deleted` = 0",
627 dbesc($postarray['parent-uri']),
632 $importer_url = $a->get_baseurl() . '/profile/' . $user[0]['nickname'];
634 $own_contact = q("SELECT * FROM `contact` WHERE `uid` = %d AND `alias` = '%s' LIMIT 1",
635 intval($uid), dbesc("facebook::".$self_id));
637 if (!count($own_contact))
640 foreach($myconv as $conv) {
642 // now if we find a match, it means we're in this conversation
643 if(!link_compare($conv['author-link'],$importer_url) AND !link_compare($conv['author-link'],$own_contact[0]["url"]))
646 require_once('include/enotify.php');
648 $conv_parent = $conv['parent'];
651 'type' => NOTIFY_COMMENT,
652 'notify_flags' => $user[0]['notify-flags'],
653 'language' => $user[0]['language'],
654 'to_name' => $user[0]['username'],
655 'to_email' => $user[0]['email'],
656 'uid' => $user[0]['uid'],
657 'item' => $postarray,
658 'link' => $a->get_baseurl().'/display/'.urlencode(get_item_guid($item)),
659 'source_name' => $postarray['author-name'],
660 'source_link' => $postarray['author-link'],
661 'source_photo' => $postarray['author-avatar'],
662 'verb' => ACTIVITY_POST,
664 'parent' => $conv_parent,
667 notification($notifyarr);
669 // only send one notification
675 function fbsync_createlike($a, $uid, $self_id, $self, $contacts, $like) {
677 $r = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
678 dbesc("fb::".$like->post_id),
687 // If we posted the like locally, it will be found with our url, not the FB url.
689 $second_url = (($like->user_id == $self_id) ? $self[0]["url"] : $contacts[$like->user_id]->url);
691 $r = q("SELECT * FROM `item` WHERE `parent-uri` = '%s' AND `uid` = %d AND `verb` = '%s'
692 AND (`author-link` = '%s' OR `author-link` = '%s') LIMIT 1",
693 dbesc($orig_post["uri"]),
695 dbesc(ACTIVITY_LIKE),
696 dbesc($contacts[$like->user_id]->url),
703 $contact_id = fbsync_fetch_contact($uid, $contacts[$like->user_id], array(), false);
705 if ($contact_id <= 0)
706 $contact_id = $self[0]["id"];
709 $likedata['parent'] = $orig_post['id'];
711 $likedata['verb'] = ACTIVITY_LIKE;
712 $likedata['object-type'] = ACTIVITY_OBJ_NOTE;
713 $likedate['network'] = dbesc(NETWORK_FACEBOOK);
715 $likedata['gravity'] = 3;
716 $likedata['uid'] = $uid;
717 $likedata['wall'] = 0;
718 $likedata['uri'] = item_new_uri($a->get_baseurl(), $uid);
719 $likedata['parent-uri'] = $orig_post["uri"];
720 $likedata['app'] = "Facebook";
722 if ($like->user_id != $self_id) {
723 $likedata['contact-id'] = $contact_id;
724 $likedata['author-name'] = $contacts[$like->user_id]->name;
725 $likedata['author-link'] = $contacts[$like->user_id]->url;
726 $likedata['author-avatar'] = $contacts[$like->user_id]->pic_square;
728 $likedata['contact-id'] = $self[0]["id"];
729 $likedata['author-name'] = $self[0]["name"];
730 $likedata['author-link'] = $self[0]["url"];
731 $likedata['author-avatar'] = $self[0]["photo"];
734 $author = '[url=' . $likedata['author-link'] . ']' . $likedata['author-name'] . '[/url]';
736 $objauthor = '[url=' . $orig_post['author-link'] . ']' . $orig_post['author-name'] . '[/url]';
737 $post_type = t('status');
739 $plink = '[url=' . $orig_post['plink'] . ']' . $post_type . '[/url]';
740 $likedata['object-type'] = ACTIVITY_OBJ_NOTE;
742 $likedata['body'] = sprintf( t('%1$s likes %2$s\'s %3$s'), $author, $objauthor, $plink);
744 $likedata['object'] = '<object><type>' . ACTIVITY_OBJ_NOTE . '</type><local>1</local>' .
745 '<id>' . $orig_post['uri'] . '</id><link>' . xmlify('<link rel="alternate" type="text/html" href="' . xmlify($orig_post['plink']) . '" />') . '</link><title>' . $orig_post['title'] . '</title><content>' . $orig_post['body'] . '</content></object>';
748 $r = q("SELECT * FROM `item` WHERE `parent-uri` = '%s' AND `author-link` = '%s' AND `verb` = '%s' AND `uid` = %d LIMIT 1",
749 dbesc($likedata['parent-uri']),
750 dbesc($likedata['author-link']),
751 dbesc(ACTIVITY_LIKE),
758 $item = item_store($likedata);
759 logger('fbsync_createlike: liked item '.$item.'. User '.$self[0]["nick"], LOGGER_DEBUG);
762 function fbsync_fetch_contact($uid, $contact, $create_user) {
764 if($contact->url == "")
767 // Check if the unique contact is existing
768 // To-Do: only update once a while
769 $r = q("SELECT id FROM unique_contacts WHERE url='%s' LIMIT 1",
770 dbesc(normalise_link($contact->url)));
773 q("INSERT INTO unique_contacts (url, name, nick, avatar) VALUES ('%s', '%s', '%s', '%s')",
774 dbesc(normalise_link($contact->url)),
775 dbesc($contact->name),
776 dbesc($contact->username),
777 dbesc($contact->pic_square));
779 q("UPDATE unique_contacts SET name = '%s', nick = '%s', avatar = '%s' WHERE url = '%s'",
780 dbesc($contact->name),
781 dbesc($contact->username),
782 dbesc($contact->pic_square),
783 dbesc(normalise_link($contact->url)));
785 $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `alias` = '%s' LIMIT 1",
786 intval($uid), dbesc("facebook::".$contact->id));
788 if(!count($r) AND !$create_user)
791 if (count($r) AND ($r[0]["readonly"] OR $r[0]["blocked"])) {
792 logger("fbsync_fetch_contact: Contact '".$r[0]["nick"]."' is blocked or readonly.", LOGGER_DEBUG);
796 $avatarpicture = $contact->pic_square;
799 // create contact record
800 q("INSERT INTO `contact` (`uid`, `created`, `url`, `nurl`, `addr`, `alias`, `notify`, `poll`,
801 `name`, `nick`, `photo`, `network`, `rel`, `priority`,
802 `writable`, `blocked`, `readonly`, `pending`)
803 VALUES (%d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, %d, 0, 0, 0)",
805 dbesc(datetime_convert()),
806 dbesc($contact->url),
807 dbesc(normalise_link($contact->url)),
808 dbesc($contact->username."@facebook.com"),
809 dbesc("facebook::".$contact->id),
811 dbesc("facebook::".$contact->id),
812 dbesc($contact->name),
813 dbesc($contact->username),
814 dbesc($avatarpicture),
815 dbesc(NETWORK_FACEBOOK),
816 intval(CONTACT_IS_FRIEND),
821 $r = q("SELECT * FROM `contact` WHERE `alias` = '%s' AND `uid` = %d LIMIT 1",
822 dbesc("facebook::".$contact->id),
829 $contact_id = $r[0]['id'];
831 $g = q("SELECT def_gid FROM user WHERE uid = %d LIMIT 1",
835 if($g && intval($g[0]['def_gid'])) {
836 require_once('include/group.php');
837 group_add_member($uid,'',$contact_id,$g[0]['def_gid']);
840 require_once("Photo.php");
842 $photos = import_profile_photo($avatarpicture,$uid,$contact_id);
844 q("UPDATE `contact` SET `photo` = '%s',
854 dbesc(datetime_convert()),
855 dbesc(datetime_convert()),
856 dbesc(datetime_convert()),
860 // update profile photos once every 12 hours as we have no notification of when they change.
861 $update_photo = ($r[0]['avatar-date'] < datetime_convert('','','now -12 hours'));
863 // check that we have all the photos, this has been known to fail on occasion
864 if((! $r[0]['photo']) || (! $r[0]['thumb']) || (! $r[0]['micro']) || ($update_photo)) {
866 logger("fbsync_fetch_contact: Updating contact ".$contact->username, LOGGER_DEBUG);
868 require_once("Photo.php");
870 $photos = import_profile_photo($avatarpicture, $uid, $r[0]['id']);
872 q("UPDATE `contact` SET `photo` = '%s',
877 `avatar-date` = '%s',
888 dbesc(datetime_convert()),
889 dbesc(datetime_convert()),
890 dbesc(datetime_convert()),
891 dbesc($contact->url),
892 dbesc(normalise_link($contact->url)),
893 dbesc($contact->username."@facebook.com"),
894 dbesc($contact->name),
895 dbesc($contact->username),
904 function fbsync_get_self($uid) {
905 $access_token = get_pconfig($uid,'facebook','access_token');
908 $s = fetch_url('https://graph.facebook.com/me/?access_token=' . $access_token);
910 $j = json_decode($s);
911 set_pconfig($uid,'fbsync','self_id',(string) $j->id);
915 function fbsync_convertmsg($a, $body) {
918 $tags = get_tags($body);
921 foreach($tags as $tag) {
922 if (strstr(trim($tag), " "))
925 if(strpos($tag,'#') === 0) {
926 if(strpos($tag,'[url='))
929 // don't link tags that are already embedded in links
931 if(preg_match('/\[(.*?)' . preg_quote($tag,'/') . '(.*?)\]/',$body))
933 if(preg_match('/\[(.*?)\]\((.*?)' . preg_quote($tag,'/') . '(.*?)\)/',$body))
936 $basetag = str_replace('_',' ',substr($tag,1));
937 $body = str_replace($tag,'#[url=' . $a->get_baseurl() . '/search?tag=' . rawurlencode($basetag) . ']' . $basetag . '[/url]',$body);
938 if(strlen($str_tags))
940 $str_tags .= '#[url=' . $a->get_baseurl() . '/search?tag=' . rawurlencode($basetag) . ']' . $basetag . '[/url]';
942 } elseif(strpos($tag,'@') === 0) {
943 $basetag = substr($tag,1);
944 $body = str_replace($tag,'@[url=https://twitter.com/' . rawurlencode($basetag) . ']' . $basetag . '[/url]',$body);
950 $cnt = preg_match_all('/@\[url=(.*?)\[\/url\]/ism',$body,$matches,PREG_SET_ORDER);
952 foreach($matches as $mtch) {
953 if(strlen($str_tags))
955 $str_tags .= '@[url=' . $mtch[1] . '[/url]';
959 return(array("body"=>$body, "tags"=>$str_tags));
963 function fbsync_fetchuser($a, $uid, $id) {
964 $access_token = get_pconfig($uid,'facebook','access_token');
965 $self_id = get_pconfig($uid,'fbsync','self_id');
969 $contact = q("SELECT `id`, `name`, `url`, `photo` FROM `contact` WHERE `uid` = %d AND `alias` = '%s' LIMIT 1",
970 intval($uid), dbesc("facebook::".$id));
972 if (count($contact)) {
973 if (($contact[0]["readonly"] OR $contact[0]["blocked"])) {
974 logger("fbsync_fetchuser: Contact '".$contact[0]["nick"]."' is blocked or readonly.", LOGGER_DEBUG);
975 $user["contact-id"] = -1;
977 $user["contact-id"] = $contact[0]["id"];
979 $user["name"] = $contact[0]["name"];
980 $user["link"] = $contact[0]["url"];
981 $user["avatar"] = $contact[0]["photo"];
986 $own_contact = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND `alias` = '%s' LIMIT 1",
987 intval($uid), dbesc("facebook::".$self_id));
989 if (!count($own_contact))
992 $fql = "SELECT name, url, pic_square FROM profile WHERE id = ".$id;
994 $url = "https://graph.facebook.com/fql?q=".urlencode($fql)."&access_token=".$access_token;
996 $feed = fetch_url($url);
997 $data = json_decode($feed);
999 if (is_array($data->data)) {
1000 $user["contact-id"] = $own_contact[0]["id"];
1001 $user["name"] = $data->data[0]->name;
1002 $user["link"] = $data->data[0]->url;
1003 $user["avatar"] = $data->data[0]->pic_square;
1008 function fbsync_fetchfeed($a, $uid) {
1009 $access_token = get_pconfig($uid,'facebook','access_token');
1010 $last_updated = get_pconfig($uid,'fbsync','last_updated');
1011 $self_id = get_pconfig($uid,'fbsync','self_id');
1013 $create_user = get_pconfig($uid, 'fbsync', 'create_user');
1014 $do_likes = get_config('fbsync', 'do_likes');
1016 $self = q("SELECT * FROM `contact` WHERE `self` = 1 AND `uid` = %d LIMIT 1",
1020 $user = q("SELECT * FROM `user` WHERE `uid` = %d AND `account_expired` = 0 LIMIT 1",
1026 require_once('include/items.php');
1028 if ($last_updated == "")
1031 logger("fbsync_fetchfeed: fetching content for user ".$self_id);
1034 "posts" => "SELECT action_links, actor_id, app_data, app_id, attachment, attribution, comment_info, created_time, filter_key, like_info, message, message_tags, parent_post_id, permalink, place, post_id, privacy, share_count, share_info, source_id, subscribed, tagged_ids, type, updated_time, with_tags FROM stream where filter_key in (SELECT filter_key FROM stream_filter WHERE uid=me() AND type='newsfeed') AND updated_time > $last_updated ORDER BY updated_time DESC LIMIT 500",
1035 "comments" => "SELECT app_id, attachment, post_id, id, likes, fromid, time, text, text_tags, user_likes, likes FROM comment WHERE post_id IN (SELECT post_id FROM #posts) ORDER BY time DESC LIMIT 500",
1036 "profiles" => "SELECT id, name, username, url, pic_square FROM profile WHERE id IN (SELECT actor_id FROM #posts) OR id IN (SELECT fromid FROM #comments) OR id IN (SELECT source_id FROM #posts) LIMIT 500",
1037 "applications" => "SELECT app_id, display_name FROM application WHERE app_id IN (SELECT app_id FROM #posts) OR app_id IN (SELECT app_id FROM #comments) LIMIT 500",
1038 "avatars" => "SELECT id, real_size, size, url FROM square_profile_pic WHERE id IN (SELECT id FROM #profiles) AND size = 256 LIMIT 500");
1041 $fql["likes"] = "SELECT post_id, user_id FROM like WHERE post_id IN (SELECT post_id FROM #posts)";
1042 $fql["profiles"] .= " OR id IN (SELECT user_id FROM #likes)";
1045 $url = "https://graph.facebook.com/fql?q=".urlencode(json_encode($fql))."&access_token=".$access_token;
1047 $feed = fetch_url($url);
1048 $data = json_decode($feed);
1050 if (!is_array($data->data)) {
1051 logger("fbsync_fetchfeed: Error fetching data for user ".$uid.": ".print_r($data, true));
1056 $comments = array();
1058 $profiles = array();
1059 $applications = array();
1062 foreach($data->data AS $query) {
1063 switch ($query->name) {
1065 $posts = array_reverse($query->fql_result_set);
1068 $comments = $query->fql_result_set;
1071 $likes = $query->fql_result_set;
1074 $profiles = $query->fql_result_set;
1076 case "applications":
1077 $applications = $query->fql_result_set;
1080 $avatars = $query->fql_result_set;
1085 $square_avatars = array();
1086 $contacts = array();
1087 $application_data = array();
1088 $post_data = array();
1089 $comment_data = array();
1091 foreach ($avatars AS $avatar) {
1092 $avatar->id = number_format($avatar->id, 0, '', '');
1093 $square_avatars[$avatar->id] = $avatar;
1097 foreach ($profiles AS $profile) {
1098 $profile->id = number_format($profile->id, 0, '', '');
1100 if ($square_avatars[$profile->id]->url != "")
1101 $profile->pic_square = $square_avatars[$profile->id]->url;
1103 $contacts[$profile->id] = $profile;
1106 unset($square_avatars);
1108 foreach ($applications AS $application) {
1109 $application->app_id = number_format($application->app_id, 0, '', '');
1110 $application_data[$application->app_id] = $application;
1112 unset($applications);
1114 foreach ($posts AS $post) {
1115 $post->actor_id = number_format($post->actor_id, 0, '', '');
1116 $post->source_id = number_format($post->source_id, 0, '', '');
1117 $post->app_id = number_format($post->app_id, 0, '', '');
1118 $post_data[$post->post_id] = $post;
1122 foreach($comments AS $comment) {
1123 $comment->fromid = number_format($comment->fromid, 0, '', '');
1124 $comment_data[$comment->id] = $comment;
1128 foreach ($post_data AS $post) {
1129 if ($post->updated_time > $last_updated)
1130 $last_updated = $post->updated_time;
1131 fbsync_createpost($a, $uid, $self, $contacts, $application_data, $post, $create_user);
1134 foreach ($comment_data AS $comment) {
1135 fbsync_createcomment($a, $uid, $self_id, $self, $user, $contacts, $application_data, $comment);
1138 foreach($likes AS $like) {
1139 $like->user_id = number_format($like->user_id, 0, '', '');
1141 fbsync_createlike($a, $uid, $self_id, $self, $contacts, $like);
1144 set_pconfig($uid,'fbsync','last_updated', $last_updated);