123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230 |
- <?php
- if (!defined('GNUSOCIAL')) { exit(1); }
- class UsersalmonAction extends SalmonAction
- {
- protected function prepare(array $args=array())
- {
- parent::prepare($args);
- $this->user = User::getByID($this->trimmed('id'));
- $this->target = $this->user->getProfile();
-
-
-
-
- $notice = null;
- if (!empty($this->activity->context->replyToID)) {
- try {
- $notice = Notice::getByUri($this->activity->context->replyToID);
- common_debug('Referenced Notice object found with URI: '.$notice->getUri());
- } catch (NoResultException $e) {
- common_debug('Referenced Notice object NOT found with URI: '.$this->activity->context->replyToID);
- $notice = false;
- }
- }
- if ($notice instanceof Notice &&
- ($this->target->sameAs($notice->getProfile())
- || in_array($this->target->getID(), $notice->getAttentionProfileIDs())
- )) {
-
- common_debug('User is the owner or was in the attention list of thr:in-reply-to activity.');
- } elseif (!empty($this->activity->context->attention) &&
- array_key_exists($this->target->getUri(), $this->activity->context->attention)) {
-
- common_debug('User was in attention list of salmon slap.');
- } elseif (!empty($this->activity->objects) && $this->activity->objects[0]->id === $this->target->getUri()) {
-
- common_debug('User URI was the id of the salmon slap object.');
- } else {
- common_debug('User was NOT found in salmon slap context.');
-
- throw new ClientException(_m('The owner of this salmon endpoint was not in the context of the carried slap.'));
- }
- return true;
- }
-
- function handlePost()
- {
- common_log(LOG_INFO, "Received post of '{$this->activity->objects[0]->id}' from '{$this->activity->actor->id}'");
-
- switch ($this->activity->objects[0]->type) {
- case ActivityObject::ARTICLE:
- case ActivityObject::BLOGENTRY:
- case ActivityObject::NOTE:
- case ActivityObject::STATUS:
- case ActivityObject::COMMENT:
- break;
- default:
-
- throw new ClientException(_m('Cannot handle that kind of post.'));
- }
- try {
- $this->saveNotice();
- } catch (AlreadyFulfilledException $e) {
- return;
- }
- }
-
- 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);
- }
-
- 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) {
-
- throw new ClientException(_m('Not a person object.'));
- }
-
- $tagged = User::getKV('uri', $this->activity->objects[0]->id);
- if (!$tagged instanceof User) {
-
- throw new ClientException(_m('Unidentified profile being listed.'));
- }
- if ($tagged->id !== $this->target->id) {
-
- throw new ClientException(_m('This user is not the one being listed.'));
- }
-
- $list = Ostatus_profile::ensureActivityObjectProfile($this->activity->target);
- $ptag = $list->localPeopletag();
- $result = Profile_tag::setTag($ptag->tagger, $tagged->id, $ptag->tag);
- if (!$result) {
-
- 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) {
-
- throw new ClientException(_m('Not a person object.'));
- }
-
- $tagged = User::getKV('uri', $this->activity->objects[0]->id);
- if (!$tagged instanceof User) {
-
- throw new ClientException(_m('Unidentified profile being unlisted.'));
- }
- if ($tagged->id !== $this->target->id) {
-
- throw new ClientException(_m('This user is not the one being unlisted.'));
- }
-
- $list = Ostatus_profile::ensureActivityObjectProfile($this->activity->target);
- $ptag = $list->localPeopletag();
- $result = Profile_tag::unTag($ptag->tagger, $tagged->id, $ptag->tag);
- if (!$result) {
-
- throw new ClientException(_m('The listing could not be deleted.'));
- }
- }
- }
-
- function getNotice(ActivityObject $object)
- {
- switch ($object->type) {
- case ActivityObject::ARTICLE:
- case ActivityObject::BLOGENTRY:
- case ActivityObject::NOTE:
- case ActivityObject::STATUS:
- case ActivityObject::COMMENT:
- break;
- default:
-
- throw new ClientException(_m('Cannot handle that kind of object for liking/faving.'));
- }
- $notice = Notice::getKV('uri', $object->id);
- if (!$notice instanceof Notice) {
-
- throw new ClientException(sprintf(_m('Notice with ID %s unknown.'),$object->id));
- }
- if ($notice->profile_id != $this->target->id) {
-
- throw new ClientException(sprintf(_m('Notice with ID %1$s not posted by %2$s.'), $object->id, $this->target->id));
- }
- return $notice;
- }
- }
|