Better typing and minor fixes to OStatus related stuff

This commit is contained in:
Mikael Nordfeldth 2013-11-01 13:20:23 +01:00
parent 810495708d
commit ca66860a4f
6 changed files with 42 additions and 36 deletions

View File

@ -353,7 +353,7 @@ abstract class MicroAppPlugin extends Plugin
$actor = $oprofile->checkAuthorship($activity); $actor = $oprofile->checkAuthorship($activity);
if (empty($actor)) { if (!$actor instanceof Ostatus_profile) {
// TRANS: Client exception thrown when no author for an activity was found. // TRANS: Client exception thrown when no author for an activity was found.
throw new ClientException(_('Cannot get author for activity.')); throw new ClientException(_('Cannot get author for activity.'));
} }

View File

@ -704,9 +704,9 @@ function common_find_mentions($text, $notice)
} catch (NoProfileException $e) { } catch (NoProfileException $e) {
common_log(LOG_WARNING, sprintf('Notice %d author profile id %d does not exist', $origNotice->id, $origNotice->profile_id)); common_log(LOG_WARNING, sprintf('Notice %d author profile id %d does not exist', $origNotice->id, $origNotice->profile_id));
} catch (ServerException $e) { } catch (ServerException $e) {
common_log(LOG_WARNING, __METHOD__ . ' got exception: ' . $e->getMessage());
} catch (Exception $e) {
// Probably just no parent. Should get a specific NoParentException // Probably just no parent. Should get a specific NoParentException
} catch (Exception $e) {
common_log(LOG_WARNING, __METHOD__ . ' got exception ' . get_class($e) . ' : ' . $e->getMessage());
} }
} }

View File

@ -551,7 +551,7 @@ class OStatusPlugin extends Plugin
function onStartFeedSubReceive($feedsub, $feed) function onStartFeedSubReceive($feedsub, $feed)
{ {
$oprofile = Ostatus_profile::getKV('feeduri', $feedsub->uri); $oprofile = Ostatus_profile::getKV('feeduri', $feedsub->uri);
if ($oprofile) { if ($oprofile instanceof Ostatus_profile) {
$oprofile->processFeed($feed, 'push'); $oprofile->processFeed($feed, 'push');
} else { } else {
common_log(LOG_DEBUG, "No ostatus profile for incoming feed $feedsub->uri"); common_log(LOG_DEBUG, "No ostatus profile for incoming feed $feedsub->uri");

View File

@ -133,7 +133,7 @@ class FeedSub extends Managed_DataObject
public static function ensureFeed($feeduri) public static function ensureFeed($feeduri)
{ {
$current = self::getKV('uri', $feeduri); $current = self::getKV('uri', $feeduri);
if ($current) { if ($current instanceof FeedSub) {
return $current; return $current;
} }
@ -154,7 +154,7 @@ class FeedSub extends Managed_DataObject
$feedsub->modified = common_sql_now(); $feedsub->modified = common_sql_now();
$result = $feedsub->insert(); $result = $feedsub->insert();
if (empty($result)) { if ($result === false) {
throw new FeedDBException($feedsub); throw new FeedDBException($feedsub);
} }

View File

@ -513,7 +513,7 @@ class Ostatus_profile extends Managed_DataObject
$oprofile = $this->checkAuthorship($activity); $oprofile = $this->checkAuthorship($activity);
if (empty($oprofile)) { if (!$oprofile instanceof Ostatus_profile) {
common_log(LOG_INFO, "No author matched share activity"); common_log(LOG_INFO, "No author matched share activity");
return null; return null;
} }
@ -534,7 +534,7 @@ class Ostatus_profile extends Managed_DataObject
$shared = $activity->objects[0]; $shared = $activity->objects[0];
if (!($shared instanceof Activity)) { if (!$shared instanceof Activity) {
// TRANS: Client exception thrown when trying to share a non-activity object. // TRANS: Client exception thrown when trying to share a non-activity object.
throw new ClientException(_m('Can only handle shared activities.')); throw new ClientException(_m('Can only handle shared activities.'));
} }
@ -543,7 +543,7 @@ class Ostatus_profile extends Managed_DataObject
if (!empty($shared->objects[0]->id)) { if (!empty($shared->objects[0]->id)) {
// Because StatusNet since commit 8cc4660 sets $shared->id to a TagURI which // Because StatusNet since commit 8cc4660 sets $shared->id to a TagURI which
// fucks up federation, because the URI is no longer recognised by the origin. // fucks up federation, because the URI is no longer recognised by the origin.
// ...but it might still be empty (not present) because $shared->id is set. // So we set it to the object ID if it exists, otherwise we trust $shared->id
$sharedId = $shared->objects[0]->id; $sharedId = $shared->objects[0]->id;
} }
if (empty($sharedId)) { if (empty($sharedId)) {
@ -554,18 +554,25 @@ class Ostatus_profile extends Managed_DataObject
// we can't use these functions to "ensureActivityObjectProfile" of a local user, // we can't use these functions to "ensureActivityObjectProfile" of a local user,
// who might be the creator of the shared activity in question. // who might be the creator of the shared activity in question.
$sharedNotice = Notice::getKV('uri', $sharedId); $sharedNotice = Notice::getKV('uri', $sharedId);
if (!($sharedNotice instanceof Notice)) { if (!$sharedNotice instanceof Notice) {
// If no local notice is found, process it! // If no locally stored notice is found, process it!
// TODO: Remember to check Deleted_notice! // TODO: Remember to check Deleted_notice!
$other = Ostatus_profile::ensureActivityObjectProfile($shared->actor); // TODO: If a post is shared that we can't retrieve - what to do?
$sharedNotice = $other->processActivity($shared, $method); try {
} $other = self::ensureActivityObjectProfile($shared->actor);
$sharedNotice = $other->processActivity($shared, $method);
if (!($sharedNotice instanceof Notice)) { if (!$sharedNotice instanceof Notice) {
// And if we apparently can't get the shared notice, we'll abort the whole thing. // And if we apparently can't get the shared notice, we'll abort the whole thing.
// TRANS: Client exception thrown when saving an activity share fails. // TRANS: Client exception thrown when saving an activity share fails.
// TRANS: %s is a share ID. // TRANS: %s is a share ID.
throw new ClientException(sprintf(_m('Failed to save activity %s.'), $sharedId)); throw new ClientException(sprintf(_m('Failed to save activity %s.'), $sharedId));
}
} catch (FeedSubException $e) {
// Remote feed could not be found or verified, should we
// transform this into an "RT @user Blah, blah, blah..."?
common_log(LOG_INFO, __METHOD__ . ' got a ' . get_class($e) . ': ' . $e->getMessage());
return null;
}
} }
// We'll want to save a web link to the original notice, if provided. // We'll want to save a web link to the original notice, if provided.
@ -658,14 +665,14 @@ class Ostatus_profile extends Managed_DataObject
if ($activity->context) { if ($activity->context) {
// TODO: context->attention // TODO: context->attention
list($options['groups'], $options['replies']) list($options['groups'], $options['replies'])
= $this->filterReplies($oprofile, $activity->context->attention); = $this->filterAttention($oprofile, $activity->context->attention);
// Maintain direct reply associations // Maintain direct reply associations
// @todo FIXME: What about conversation ID? // @todo FIXME: What about conversation ID?
if (!empty($activity->context->replyToID)) { if (!empty($activity->context->replyToID)) {
$orig = Notice::getKV('uri', $orig = Notice::getKV('uri',
$activity->context->replyToID); $activity->context->replyToID);
if (!empty($orig)) { if ($orig instanceof Notice) {
$options['reply_to'] = $orig->id; $options['reply_to'] = $orig->id;
} }
} }
@ -722,7 +729,7 @@ class Ostatus_profile extends Managed_DataObject
$oprofile = $this->checkAuthorship($activity); $oprofile = $this->checkAuthorship($activity);
if (empty($oprofile)) { if (!$oprofile instanceof Ostatus_profile) {
return null; return null;
} }
@ -730,12 +737,12 @@ class Ostatus_profile extends Managed_DataObject
$note = $activity->objects[0]; $note = $activity->objects[0];
// The id URI will be used as a unique identifier for for the notice, // The id URI will be used as a unique identifier for the notice,
// protecting against duplicate saves. It isn't required to be a URL; // protecting against duplicate saves. It isn't required to be a URL;
// tag: URIs for instance are found in Google Buzz feeds. // tag: URIs for instance are found in Google Buzz feeds.
$sourceUri = $note->id; $sourceUri = $note->id;
$dupe = Notice::getKV('uri', $sourceUri); $dupe = Notice::getKV('uri', $sourceUri);
if ($dupe) { if ($dupe instanceof Notice) {
common_log(LOG_INFO, "OStatus: ignoring duplicate post: $sourceUri"); common_log(LOG_INFO, "OStatus: ignoring duplicate post: $sourceUri");
return $dupe; return $dupe;
} }
@ -827,14 +834,13 @@ class Ostatus_profile extends Managed_DataObject
if ($activity->context) { if ($activity->context) {
// TODO: context->attention // TODO: context->attention
list($options['groups'], $options['replies']) list($options['groups'], $options['replies'])
= $this->filterReplies($oprofile, $activity->context->attention); = $this->filterAttention($oprofile, $activity->context->attention);
// Maintain direct reply associations // Maintain direct reply associations
// @todo FIXME: What about conversation ID? // @todo FIXME: What about conversation ID?
if (!empty($activity->context->replyToID)) { if (!empty($activity->context->replyToID)) {
$orig = Notice::getKV('uri', $orig = Notice::getKV('uri', $activity->context->replyToID);
$activity->context->replyToID); if ($orig instanceof Notice) {
if (!empty($orig)) {
$options['reply_to'] = $orig->id; $options['reply_to'] = $orig->id;
} }
} }
@ -875,7 +881,7 @@ class Ostatus_profile extends Managed_DataObject
$content, $content,
'ostatus', 'ostatus',
$options); $options);
if ($saved) { if ($saved instanceof Notice) {
Ostatus_source::saveNew($saved, $this, $method); Ostatus_source::saveNew($saved, $this, $method);
if (!empty($attachment)) { if (!empty($attachment)) {
File_to_post::processNew($attachment->id, $saved->id); File_to_post::processNew($attachment->id, $saved->id);
@ -906,7 +912,7 @@ class Ostatus_profile extends Managed_DataObject
* @param array in/out &$attention_uris set of URIs, will be pruned on output * @param array in/out &$attention_uris set of URIs, will be pruned on output
* @return array of group IDs * @return array of group IDs
*/ */
protected function filterReplies($sender, array $attention) protected function filterAttention($sender, array $attention)
{ {
common_log(LOG_DEBUG, "Original reply recipients: " . implode(', ', $attention)); common_log(LOG_DEBUG, "Original reply recipients: " . implode(', ', $attention));
$groups = array(); $groups = array();
@ -1461,9 +1467,9 @@ class Ostatus_profile extends Managed_DataObject
} }
$ptag = Profile_list::getKV('uri', $homeuri); $ptag = Profile_list::getKV('uri', $homeuri);
if ($ptag) { if ($ptag instanceof Profile_list) {
$local_user = User::getKV('id', $ptag->tagger); $local_user = User::getKV('id', $ptag->tagger);
if (!empty($local_user)) { if ($local_user instanceof User) {
// TRANS: Exception. // TRANS: Exception.
throw new Exception(_m('Local list cannot be referenced as remote.')); throw new Exception(_m('Local list cannot be referenced as remote.'));
} }
@ -2090,12 +2096,12 @@ class Ostatus_profile extends Managed_DataObject
switch ($protocol) { switch ($protocol) {
case 'http': case 'http':
case 'https': case 'https':
$oprofile = Ostatus_profile::ensureProfileURL($uri); $oprofile = self::ensureProfileURL($uri);
break; break;
case 'acct': case 'acct':
case 'mailto': case 'mailto':
$rest = $match[2]; $rest = $match[2];
$oprofile = Ostatus_profile::ensureWebfinger($rest); $oprofile = self::ensureWebfinger($rest);
break; break;
default: default:
// TRANS: Server exception. // TRANS: Server exception.

View File

@ -42,7 +42,7 @@ class PushInQueueHandler extends QueueHandler
$hmac = $data['hmac']; $hmac = $data['hmac'];
$feedsub = FeedSub::getKV('id', $feedsub_id); $feedsub = FeedSub::getKV('id', $feedsub_id);
if ($feedsub) { if ($feedsub instanceof FeedSub) {
try { try {
$feedsub->receive($post, $hmac); $feedsub->receive($post, $hmac);
} catch(Exception $e) { } catch(Exception $e) {