|
|
@ -128,8 +128,10 @@ function fb_get_friends($uid) { |
|
|
|
if($s) { |
|
|
|
$jp = json_decode($s); |
|
|
|
logger('fb_get_friends: info: ' . print_r($jp,true)); |
|
|
|
if(! $jp->link) |
|
|
|
$jp->link = 'http://facebook.com/profile.php?id=' . $person->id; |
|
|
|
|
|
|
|
// always use numeric link for consistency
|
|
|
|
|
|
|
|
$jp->link = 'http://facebook.com/profile.php?id=' . $person->id; |
|
|
|
|
|
|
|
// check if we already have a contact
|
|
|
|
|
|
|
@ -267,6 +269,7 @@ function facebook_install() { |
|
|
|
register_hook('post_local_end', 'addon/facebook/facebook.php', 'facebook_post_hook'); |
|
|
|
register_hook('jot_networks', 'addon/facebook/facebook.php', 'facebook_jot_nets'); |
|
|
|
register_hook('plugin_settings', 'addon/facebook/facebook.php', 'facebook_plugin_settings'); |
|
|
|
register_hook('cron', 'addon/facebook/facebook.php', 'facebook_cron'); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -274,9 +277,42 @@ function facebook_uninstall() { |
|
|
|
unregister_hook('post_local_end', 'addon/facebook/facebook.php', 'facebook_post_hook'); |
|
|
|
unregister_hook('jot_networks', 'addon/facebook/facebook.php', 'facebook_jot_nets'); |
|
|
|
unregister_hook('plugin_settings', 'addon/facebook/facebook.php', 'facebook_plugin_settings'); |
|
|
|
unregister_hook('cron', 'addon/facebook/facebook.php', 'facebook_cron'); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
function facebook_cron($a,$b) { |
|
|
|
|
|
|
|
$last = get_config('facebook','last_poll'); |
|
|
|
|
|
|
|
if($last) { |
|
|
|
$next = $last + 3600; |
|
|
|
if($next > time()) |
|
|
|
return; |
|
|
|
} |
|
|
|
|
|
|
|
logger('facebook_cron'); |
|
|
|
|
|
|
|
set_config('facebook','last_poll', time()); |
|
|
|
|
|
|
|
$r = q("SELECT * FROM `pconfig` WHERE `cat` = 'facebook' AND `k` = 'post' AND `v` = '1' "); |
|
|
|
if(count($r)) { |
|
|
|
foreach($r as $rr) { |
|
|
|
// check for new friends once a day
|
|
|
|
$last_friend_check = get_pconfig($uid,'facebook','friend_check'); |
|
|
|
if($last_friend_check) |
|
|
|
$next_friend_check = $last_friend_check + 86400; |
|
|
|
if($next_friend_check <= time()) { |
|
|
|
fb_get_friends($uid); |
|
|
|
set_pconfig($uid,'facebook','friend_check',time()); |
|
|
|
} |
|
|
|
fb_consume_all($rr['uid']); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function facebook_plugin_settings(&$a,&$b) { |
|
|
|
|
|
|
|
$b .= '<div class="settings-block">'; |
|
|
@ -306,9 +342,55 @@ function facebook_post_hook(&$a,&$b) { |
|
|
|
* Post to Facebook stream |
|
|
|
*/ |
|
|
|
|
|
|
|
require_once('include/group.php'); |
|
|
|
|
|
|
|
logger('Facebook post'); |
|
|
|
|
|
|
|
if((local_user()) && (local_user() == $b['uid']) && (! $b['private']) && (! $b['parent'])) { |
|
|
|
$reply = false; |
|
|
|
$likes = false; |
|
|
|
|
|
|
|
if((local_user()) && (local_user() == $b['uid'])) { |
|
|
|
|
|
|
|
if($b['parent']) { |
|
|
|
$r = q("SELECT * FROM `item` WHERE `id` = %d AND `uid` = %d LIMIT 1", |
|
|
|
intval($b['parent']), |
|
|
|
intval(local_user()) |
|
|
|
); |
|
|
|
if(count($r) && substr($r[0]['uri'],0,4) === 'fb::') |
|
|
|
$reply = substr($r[0]['uri'],4); |
|
|
|
else |
|
|
|
return; |
|
|
|
logger('facebook reply id=' . $reply); |
|
|
|
} |
|
|
|
|
|
|
|
if($b['private'] && $reply == false) { |
|
|
|
$allow_people = expand_acl($b['allow_cid']); |
|
|
|
$allow_groups = expand_groups(expand_acl($b['allow_gid'])); |
|
|
|
$deny_people = expand_acl($b['deny_cid']); |
|
|
|
$deny_groups = expand_groups(expand_acl($b['deny_gid'])); |
|
|
|
|
|
|
|
$recipients = array_unique(array_merge($allow_people,$allow_groups)); |
|
|
|
$deny = array_unique(array_merge($deny_people,$deny_groups)); |
|
|
|
|
|
|
|
$allow_str = dbesc(implode(', ',$recipients)); |
|
|
|
$r = q("SELECT `notify` FROM `contact` WHERE `id` IN ( $allow_str ) AND `network` = 'face'"); |
|
|
|
$allow_arr = array(); |
|
|
|
if(count($r)) |
|
|
|
foreach($r as $rr) |
|
|
|
$allow_arr[] = $rr['notify']; |
|
|
|
|
|
|
|
$deny_str = dbesc(implode(', ',$deny)); |
|
|
|
$r = q("SELECT `notify` FROM `contact` WHERE `id` IN ( $deny_str ) AND `network` = 'face'"); |
|
|
|
$deny_arr = array(); |
|
|
|
if(count($r)) |
|
|
|
foreach($r as $rr) |
|
|
|
$deny_arr[] = $rr['notify']; |
|
|
|
if((! count($allow_arr)) && (! count($deny_arr))) |
|
|
|
return; |
|
|
|
} |
|
|
|
|
|
|
|
if($b['verb'] == ACTIVITY_LIKE) |
|
|
|
$likes = true; |
|
|
|
|
|
|
|
|
|
|
|
$appid = get_config('facebook', 'appid' ); |
|
|
@ -323,7 +405,7 @@ function facebook_post_hook(&$a,&$b) { |
|
|
|
$fb_token = get_pconfig(local_user(),'facebook','access_token'); |
|
|
|
|
|
|
|
logger('facebook: $fb_post: ' . $fb_post . ' $fb_enable: ' . $fb_enable . ' $fb_token: ' . $fb_token,LOGGER_DEBUG); |
|
|
|
if($fb_post && $fb_token && $fb_enable) { |
|
|
|
if($fb_post && $fb_token && ($fb_enable || $b['private'])) { |
|
|
|
logger('facebook: able to post'); |
|
|
|
require_once('library/facebook.php'); |
|
|
|
require_once('include/bbcode.php'); |
|
|
@ -366,11 +448,32 @@ function facebook_post_hook(&$a,&$b) { |
|
|
|
'access_token' => $fb_token, |
|
|
|
'message' => $msg |
|
|
|
); |
|
|
|
|
|
|
|
if($b['plink']) |
|
|
|
$postvars['actions'] = '{"name": "' . t('View on Friendika') . '", "link": "' . $b['plink'] . '"}'; |
|
|
|
|
|
|
|
$x = post_url('https://graph.facebook.com/me/feed', $postvars); |
|
|
|
if(($b['private']) && (! $b['parent'])) { |
|
|
|
$postvars['privacy'] = '{"value": "CUSTOM", "friends": "SOME_FRIENDS"'; |
|
|
|
if(count($allow_arr)) |
|
|
|
$postvars['privacy'] .= ',"allow": "' . implode(',',$allow_arr) . '"'; |
|
|
|
if(count($deny_arr)) |
|
|
|
$postvars['privacy'] .= ',"deny": "' . implode(',',$deny_arr) . '"'; |
|
|
|
$postvars['privacy'] .= '}'; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
if(! $reply) { |
|
|
|
if($b['plink']) |
|
|
|
$postvars['actions'] = '{"name": "' . t('View on Friendika') . '", "link": "' . $b['plink'] . '"}'; |
|
|
|
} |
|
|
|
|
|
|
|
if($reply) { |
|
|
|
$url = 'https://graph.facebook.com/' . $reply . '/' . (($likes) ? 'likes' : 'comments'); |
|
|
|
} |
|
|
|
else { |
|
|
|
$url = 'https://graph.facebook.com/me/feed'; |
|
|
|
} |
|
|
|
logger('facebook: post to ' . $url); |
|
|
|
logger('facebook: postvars: ' . print_r($postvars,true)); |
|
|
|
|
|
|
|
$x = post_url($url, $postvars); |
|
|
|
|
|
|
|
logger('Facebook post returns: ' . $x, LOGGER_DEBUG); |
|
|
|
|
|
|
@ -390,14 +493,13 @@ function fb_consume_all($uid) { |
|
|
|
$s = fetch_url('https://graph.facebook.com/me/feed?access_token=' . $access_token); |
|
|
|
if($s) { |
|
|
|
$j = json_decode($s); |
|
|
|
logger('fb_consume_stream: wall: ' . print_r($j,true)); |
|
|
|
logger('fb_consume_stream: wall: ' . print_r($j,true), LOGGER_DATA); |
|
|
|
fb_consume_stream($uid,$j,true); |
|
|
|
} |
|
|
|
$s = fetch_url('https://graph.facebook.com/me/home?access_token=' . $access_token); |
|
|
|
if($s) { |
|
|
|
logger('fb_consume_stream: raw feed: ' . $s); |
|
|
|
$j = json_decode($s); |
|
|
|
logger('fb_consume_stream: feed: ' . print_r($j,true)); |
|
|
|
logger('fb_consume_stream: feed: ' . print_r($j,true), LOGGER_DATA); |
|
|
|
fb_consume_stream($uid,$j,false); |
|
|
|
} |
|
|
|
|
|
|
@ -410,14 +512,19 @@ function fb_consume_stream($uid,$j,$wall = false) { |
|
|
|
intval($uid) |
|
|
|
); |
|
|
|
|
|
|
|
$user = q("SELECT `nickname` FROM `user` WHERE `uid` = %d LIMIT 1", |
|
|
|
intval($uid) |
|
|
|
); |
|
|
|
if(count($user)) |
|
|
|
$my_local_url = $a->get_baseurl() . '/profile/' . $user[0]['nickname']; |
|
|
|
|
|
|
|
|
|
|
|
$self_id = get_pconfig($uid,'facebook','self_id'); |
|
|
|
logger('fb_consume'); |
|
|
|
if(! count($j->data) || (! strlen($self_id))) |
|
|
|
return; |
|
|
|
|
|
|
|
foreach($j->data as $entry) { |
|
|
|
logger('fb_consume: entry: ' . print_r($entry,true)); |
|
|
|
logger('fb_consume: entry: ' . print_r($entry,true), LOGGER_DATA); |
|
|
|
$datarray = array(); |
|
|
|
$we_posted = false; |
|
|
|
$app = $entry->application; |
|
|
@ -425,7 +532,7 @@ logger('fb_consume: entry: ' . print_r($entry,true)); |
|
|
|
$we_posted = true; |
|
|
|
|
|
|
|
if($we_posted) { |
|
|
|
$r = q("SELECT * FROM `item` WHERE `uid` = %d AND `created` > '%s' AND `created` < '%s' AND `deleted` = 0 LIMIT 1", |
|
|
|
$r = q("SELECT * FROM `item` WHERE `wall` = 1 AND `uid` = %d AND `created` > '%s' AND `created` < '%s' AND `deleted` = 0 LIMIT 1", |
|
|
|
intval($uid), |
|
|
|
dbesc(datetime_convert('UTC','UTC',$entry->created_time . ' - 1 minute')), |
|
|
|
dbesc(datetime_convert('UTC','UTC',$entry->created_time . ' + 1 minute')) |
|
|
@ -446,6 +553,7 @@ logger('fb_consume: entry: ' . print_r($entry,true)); |
|
|
|
$post_exists = false; |
|
|
|
$orig_post = null; |
|
|
|
} |
|
|
|
|
|
|
|
if(! $orig_post) { |
|
|
|
$datarray['gravity'] = 0; |
|
|
|
$datarray['uid'] = $uid; |
|
|
@ -463,6 +571,11 @@ logger('fb_consume: entry: ' . print_r($entry,true)); |
|
|
|
$datarray['contact-id'] = $r[0]['id']; |
|
|
|
} |
|
|
|
$datarray['verb'] = ACTIVITY_POST; |
|
|
|
if($wall) { |
|
|
|
$datarray['owner-name'] = $self[0]['name']; |
|
|
|
$datarray['author-link'] = $self[0]['url']; |
|
|
|
$datarray['author-avatar'] = $self[0]['thumb']; |
|
|
|
} |
|
|
|
$datarray['author-name'] = $from->name; |
|
|
|
$datarray['author-link'] = 'http://facebook.com/profile.php?id=' . $from->id; |
|
|
|
$datarray['author-avatar'] = 'https://graph.facebook.com/' . $from->id . '/picture'; |
|
|
@ -479,9 +592,10 @@ logger('fb_consume: entry: ' . print_r($entry,true)); |
|
|
|
$datarray['body'] .= "\n" . $entry->description; |
|
|
|
$datarray['created'] = datetime_convert('UTC','UTC',$entry->created_time); |
|
|
|
$datarray['edited'] = datetime_convert('UTC','UTC',$entry->updated_time); |
|
|
|
|
|
|
|
if($entry->privacy && $entry->privacy->value !== 'EVERYONE') |
|
|
|
$datarray['private'] = 1; |
|
|
|
$top_item = item_store($datarray); |
|
|
|
$r = q("SELECT * FROM `item` WHERE `uid` = %d AND `uid` = %d LIMIT 1", |
|
|
|
$r = q("SELECT * FROM `item` WHERE `id` = %d AND `uid` = %d LIMIT 1", |
|
|
|
intval($top_item), |
|
|
|
intval($uid) |
|
|
|
); |
|
|
@ -554,8 +668,20 @@ logger('fb_consume: entry: ' . print_r($entry,true)); |
|
|
|
$cmntdata['wall'] = (($wall) ? 1 : 0); |
|
|
|
$cmntdata['uri'] = 'fb::' . $cmnt->id; |
|
|
|
$cmntdata['parent-uri'] = 'fb::' . $entry->id; |
|
|
|
if($cmnt->from->id == $self_id) |
|
|
|
if($cmnt->from->id == $self_id) { |
|
|
|
$cmntdata['contact-id'] = $self[0]['id']; |
|
|
|
// see if I already posted it here locally and we're now getting it back from FB
|
|
|
|
$r = q("SELECT * FROM `item` WHERE `uid` = %d AND `created` > '%s' AND `created` < '%s'
|
|
|
|
AND `parent-uri` = '%s' AND `author-link` = '%s' LIMIT 1",
|
|
|
|
intval($uid), |
|
|
|
dbesc(datetime_convert('UTC','UTC',$cmnt->created_time . ' - 1 minute')), |
|
|
|
dbesc(datetime_convert('UTC','UTC',$cmnt->created_time . ' + 1 minute')), |
|
|
|
dbesc('fb::' . $entry->id), |
|
|
|
dbesc($my_local_url) |
|
|
|
); |
|
|
|
if(count($r)) |
|
|
|
continue; |
|
|
|
} |
|
|
|
elseif(is_array($orig_post) && (x($orig_post,'contact-id'))) |
|
|
|
$cmntdata['contact-id'] = $orig_post['contact-id']; |
|
|
|
else { |
|
|
|