aboutsummaryrefslogtreecommitdiffstats
path: root/addon/facebook/facebook.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-05-14 00:47:00 -0700
committerFriendika <info@friendika.com>2011-05-14 00:47:00 -0700
commit2b720b5b7c36fe55adc2e5a6d64711597ca917f7 (patch)
tree73ac4a56bf2828b0ca2da8ba7cd8acdd27a978c5 /addon/facebook/facebook.php
parent7942192e2089224544c6fa55f64a77fbbf1e6281 (diff)
downloadvolse-hubzilla-2b720b5b7c36fe55adc2e5a6d64711597ca917f7.tar.gz
volse-hubzilla-2b720b5b7c36fe55adc2e5a6d64711597ca917f7.tar.bz2
volse-hubzilla-2b720b5b7c36fe55adc2e5a6d64711597ca917f7.zip
fix a couple of FB issues, wrong comment author, perhaps fix some missing entries
Diffstat (limited to 'addon/facebook/facebook.php')
-rw-r--r--addon/facebook/facebook.php24
1 files changed, 14 insertions, 10 deletions
diff --git a/addon/facebook/facebook.php b/addon/facebook/facebook.php
index ab4827e6e..440f0e349 100644
--- a/addon/facebook/facebook.php
+++ b/addon/facebook/facebook.php
@@ -700,26 +700,27 @@ function fb_consume_stream($uid,$j,$wall = false) {
if(is_array($likers)) {
foreach($likers as $likes) {
- $r = q("SELECT * FROM `item` WHERE `parent-uri` = '%s' AND `uid` = %d AND `verb` = '%s' AND `author-link` = '%s'
- LIMIT 1",
- dbesc('fb::' . $entry->id),
+ if(! $orig_post)
+ continue;
+
+ $r = q("SELECT * FROM `item` WHERE `parent-uri` = '%s' AND `uid` = %d AND `verb` = '%s' AND `author-link` = '%s' LIMIT 1",
+ dbesc($orig_post['uri']),
intval($uid),
dbesc(ACTIVITY_LIKE),
dbesc('http://facebook.com/profile.php?id=' . $likes->id)
);
+
if(count($r))
continue;
$likedata = array();
$likedata['parent'] = $top_item;
$likedata['verb'] = ACTIVITY_LIKE;
-
-
$likedata['gravity'] = 3;
$likedata['uid'] = $uid;
$likedata['wall'] = (($wall) ? 1 : 0);
$likedata['uri'] = item_new_uri($a->get_baseurl(), $uid);
- $likedata['parent-uri'] = 'fb::' . $entry->id;
+ $likedata['parent-uri'] = $orig_post['uri'];
if($likes->id == $self_id)
$likedata['contact-id'] = $self[0]['id'];
else {
@@ -754,6 +755,9 @@ function fb_consume_stream($uid,$j,$wall = false) {
if(is_array($comments)) {
foreach($comments as $cmnt) {
+ if(! $orig_post)
+ continue;
+
$r = q("SELECT * FROM `item` WHERE `uid` = %d AND ( `uri` = '%s' OR `extid` = '%s' ) LIMIT 1",
intval($uid),
dbesc('fb::' . $cmnt->id),
@@ -769,12 +773,10 @@ function fb_consume_stream($uid,$j,$wall = false) {
$cmntdata['uid'] = $uid;
$cmntdata['wall'] = (($wall) ? 1 : 0);
$cmntdata['uri'] = 'fb::' . $cmnt->id;
- $cmntdata['parent-uri'] = 'fb::' . $entry->id;
+ $cmntdata['parent-uri'] = $orig_post['uri'];
if($cmnt->from->id == $self_id) {
$cmntdata['contact-id'] = $self[0]['id'];
}
- elseif(is_array($orig_post) && (x($orig_post,'contact-id')))
- $cmntdata['contact-id'] = $orig_post['contact-id'];
else {
$r = q("SELECT * FROM `contact` WHERE `notify` = '%s' AND `uid` = %d AND `blocked` = 0 AND `readonly` = 0 LIMIT 1",
dbesc($cmnt->from->id),
@@ -783,8 +785,10 @@ function fb_consume_stream($uid,$j,$wall = false) {
if(count($r))
$cmntdata['contact-id'] = $r[0]['id'];
}
- if(! x($cmntdata,'contact-id'))
+ if(! x($cmntdata,'contact-id')) {
+ logger('fb_consume: comment: no contact-id available');
return;
+ }
$cmntdata['created'] = datetime_convert('UTC','UTC',$cmnt->created_time);
$cmntdata['edited'] = datetime_convert('UTC','UTC',$cmnt->created_time);
$cmntdata['verb'] = ACTIVITY_POST;