. */ if (!defined('GNUSOCIAL')) { exit(1); } /** * @package OStatusPlugin * @author James Walker */ class UsersalmonAction extends SalmonAction { protected function prepare(array $args=array()) { parent::prepare($args); $id = $this->trimmed('id'); if (!$id) { // TRANS: Client error displayed trying to perform an action without providing an ID. $this->clientError(_m('No ID.')); } $this->user = User::getKV('id', $id); if (!$this->user instanceof User) { // TRANS: Client error displayed when referring to a non-existing user. $this->clientError(_m('No such user.')); } $this->target = $this->user->getProfile(); return true; } /** * We've gotten a post event on the Salmon backchannel, probably a reply. * * @todo validate if we need to handle this post, then call into * ostatus_profile's general incoming-post handling. */ function handlePost() { common_log(LOG_INFO, "Received post of '{$this->activity->objects[0]->id}' from '{$this->activity->actor->id}'"); // @fixme: process all activity objects? switch ($this->activity->objects[0]->type) { case ActivityObject::ARTICLE: case ActivityObject::BLOGENTRY: case ActivityObject::NOTE: case ActivityObject::STATUS: case ActivityObject::COMMENT: break; default: // TRANS: Client exception thrown when an undefied activity is performed. throw new ClientException(_m('Cannot handle that kind of post.')); } // Notice must either be a) in reply to a notice by this user // or b) in reply to a notice to the attention of this user // or c) to the attention of this user $context = $this->activity->context; $notice = false; if (!empty($context->replyToID)) { $notice = Notice::getKV('uri', $context->replyToID); } if ($notice instanceof Notice && ($notice->profile_id == $this->target->id || array_key_exists($this->target->id, $notice->getReplies()))) { // In reply to a notice either from or mentioning this user. } elseif (!empty($context->attention) && array_key_exists($this->target->getUri(), $context->attention)) { // To the attention of this user. } else { // TRANS: Client exception. throw new ClientException(_m('Not to anyone in reply to anything.')); } $existing = Notice::getKV('uri', $this->activity->objects[0]->id); if ($existing instanceof Notice) { common_log(LOG_ERR, "Not saving notice with duplicate URI '".$existing->getUri()."' (seems it already exists)."); return; } $this->saveNotice(); } /** * We've gotten a follow/subscribe notification from a remote user. * Save a subscription relationship for them. */ function handleFollow() { common_log(LOG_INFO, sprintf('Setting up subscription from remote %s to local %s', $this->oprofile->getUri(), $this->target->getNickname())); Subscription::start($this->actor, $this->target); } /** * We've gotten an unfollow/unsubscribe notification from a remote user. * Check if we have a subscription relationship for them and kill it. * * @fixme probably catch exceptions on fail? */ function handleUnfollow() { common_log(LOG_INFO, sprintf('Canceling subscription from remote %s to local %s', $this->oprofile->getUri(), $this->target->getNickname())); try { Subscription::cancel($this->actor, $this->target); } catch (NoProfileException $e) { common_debug('Could not find profile for Subscription: '.$e->getMessage()); } } function handleTag() { if ($this->activity->target->type == ActivityObject::_LIST) { if ($this->activity->objects[0]->type != ActivityObject::PERSON) { // TRANS: Client exception. throw new ClientException(_m('Not a person object.')); } // this is a peopletag $tagged = User::getKV('uri', $this->activity->objects[0]->id); if (!$tagged instanceof User) { // TRANS: Client exception. throw new ClientException(_m('Unidentified profile being listed.')); } if ($tagged->id !== $this->target->id) { // TRANS: Client exception. throw new ClientException(_m('This user is not the one being listed.')); } // save the list $list = Ostatus_profile::ensureActivityObjectProfile($this->activity->target); $ptag = $list->localPeopletag(); $result = Profile_tag::setTag($ptag->tagger, $tagged->id, $ptag->tag); if (!$result) { // TRANS: Client exception. throw new ClientException(_m('The listing could not be saved.')); } } } function handleUntag() { if ($this->activity->target->type == ActivityObject::_LIST) { if ($this->activity->objects[0]->type != ActivityObject::PERSON) { // TRANS: Client exception. throw new ClientException(_m('Not a person object.')); } // this is a peopletag $tagged = User::getKV('uri', $this->activity->objects[0]->id); if (!$tagged instanceof User) { // TRANS: Client exception. throw new ClientException(_m('Unidentified profile being unlisted.')); } if ($tagged->id !== $this->target->id) { // TRANS: Client exception. throw new ClientException(_m('This user is not the one being unlisted.')); } // save the list $list = Ostatus_profile::ensureActivityObjectProfile($this->activity->target); $ptag = $list->localPeopletag(); $result = Profile_tag::unTag($ptag->tagger, $tagged->id, $ptag->tag); if (!$result) { // TRANS: Client exception. throw new ClientException(_m('The listing could not be deleted.')); } } } /** * @param ActivityObject $object * @return Notice * @throws ClientException on invalid input */ function getNotice(ActivityObject $object) { switch ($object->type) { case ActivityObject::ARTICLE: case ActivityObject::BLOGENTRY: case ActivityObject::NOTE: case ActivityObject::STATUS: case ActivityObject::COMMENT: break; default: // TRANS: Client exception. throw new ClientException(_m('Cannot handle that kind of object for liking/faving.')); } $notice = Notice::getKV('uri', $object->id); if (!$notice instanceof Notice) { // TRANS: Client exception. %s is an object ID. throw new ClientException(sprintf(_m('Notice with ID %s unknown.'),$object->id)); } if ($notice->profile_id != $this->target->id) { // TRANS: Client exception. %1$s is a notice ID, %2$s is a user ID. throw new ClientException(sprintf(_m('Notice with ID %1$s not posted by %2$s.'), $object->id, $this->target->id)); } return $notice; } }