if something's a retweet, save it as a repeat in bridge

This commit is contained in:
Evan Prodromou 2010-09-03 17:51:28 -04:00
parent d6719760d6
commit 5651f79466

View File

@ -231,14 +231,14 @@ class TwitterStatusFetcher extends ParallelizingDaemon
$flink->update(); $flink->update();
} }
function saveStatus($status, $flink) function saveStatus($status, $flink=null)
{ {
$profile = $this->ensureProfile($status->user); $profile = $this->ensureProfile($status->user);
if (empty($profile)) { if (empty($profile)) {
common_log(LOG_ERR, $this->name() . common_log(LOG_ERR, $this->name() .
' - Problem saving notice. No associated Profile.'); ' - Problem saving notice. No associated Profile.');
return; return null;
} }
$statusUri = $this->makeStatusURI($status->user->screen_name, $status->id); $statusUri = $this->makeStatusURI($status->user->screen_name, $status->id);
@ -253,7 +253,14 @@ class TwitterStatusFetcher extends ParallelizingDaemon
$this->name() . $this->name() .
" - Ignoring duplicate import: $statusUri" " - Ignoring duplicate import: $statusUri"
); );
return; return $dupe;
}
// If it's a retweet, save it as a repeat!
if (!empty($status->retweeted_status)) {
$original = $this->saveStatus($status->retweeted_status);
return $original->repeat($profile->id, 'twitter');
} }
$notice = new Notice(); $notice = new Notice();
@ -305,7 +312,9 @@ class TwitterStatusFetcher extends ParallelizingDaemon
Event::handle('EndNoticeSave', array($notice)); Event::handle('EndNoticeSave', array($notice));
} }
Inbox::insertNotice($flink->user_id, $notice->id); if (!empty($flink)) {
Inbox::insertNotice($flink->user_id, $notice->id);
}
$notice->blowOnInsert(); $notice->blowOnInsert();
return $notice; return $notice;