3 * StatusNet - the distributed open-source microblogging tool
4 * Copyright (C) 2010, StatusNet, Inc.
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU Affero General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Affero General Public License for more details.
16 * You should have received a copy of the GNU Affero General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 if (!defined('GNUSOCIAL')) { exit(1); }
23 * @package OStatusPlugin
24 * @author James Walker <james@status.net>
26 class UsersalmonAction extends SalmonAction
28 protected function prepare(array $args=array())
30 parent::prepare($args);
32 $id = $this->trimmed('id');
35 // TRANS: Client error displayed trying to perform an action without providing an ID.
36 $this->clientError(_m('No ID.'));
39 $this->user = User::getKV('id', $id);
41 if (!$this->user instanceof User) {
42 // TRANS: Client error displayed when referring to a non-existing user.
43 $this->clientError(_m('No such user.'));
46 $this->target = $this->user->getProfile();
52 * We've gotten a post event on the Salmon backchannel, probably a reply.
54 * @todo validate if we need to handle this post, then call into
55 * ostatus_profile's general incoming-post handling.
59 common_log(LOG_INFO, "Received post of '{$this->activity->objects[0]->id}' from '{$this->activity->actor->id}'");
61 // @fixme: process all activity objects?
62 switch ($this->activity->objects[0]->type) {
63 case ActivityObject::ARTICLE:
64 case ActivityObject::BLOGENTRY:
65 case ActivityObject::NOTE:
66 case ActivityObject::STATUS:
67 case ActivityObject::COMMENT:
70 // TRANS: Client exception thrown when an undefied activity is performed.
71 throw new ClientException(_m('Cannot handle that kind of post.'));
74 // Notice must either be a) in reply to a notice by this user
75 // or b) in reply to a notice to the attention of this user
76 // or c) to the attention of this user
78 $context = $this->activity->context;
81 if (!empty($context->replyToID)) {
82 $notice = Notice::getKV('uri', $context->replyToID);
85 if ($notice instanceof Notice &&
86 ($notice->profile_id == $this->target->id ||
87 array_key_exists($this->target->id, $notice->getReplies())))
89 // In reply to a notice either from or mentioning this user.
90 } elseif (!empty($context->attention) &&
91 array_key_exists($this->target->getUri(), $context->attention)) {
92 // To the attention of this user.
94 // TRANS: Client exception.
95 throw new ClientException(_m('Not to anyone in reply to anything.'));
98 $existing = Notice::getKV('uri', $this->activity->objects[0]->id);
99 if ($existing instanceof Notice) {
100 common_log(LOG_ERR, "Not saving notice with duplicate URI '".$existing->getUri()."' (seems it already exists).");
108 * We've gotten a follow/subscribe notification from a remote user.
109 * Save a subscription relationship for them.
111 function handleFollow()
113 common_log(LOG_INFO, sprintf('Setting up subscription from remote %s to local %s', $this->oprofile->getUri(), $this->target->getNickname()));
114 Subscription::start($this->actor, $this->target);
118 * We've gotten an unfollow/unsubscribe notification from a remote user.
119 * Check if we have a subscription relationship for them and kill it.
121 * @fixme probably catch exceptions on fail?
123 function handleUnfollow()
125 common_log(LOG_INFO, sprintf('Canceling subscription from remote %s to local %s', $this->oprofile->getUri(), $this->target->getNickname()));
127 Subscription::cancel($this->actor, $this->target);
128 } catch (NoProfileException $e) {
129 common_debug('Could not find profile for Subscription: '.$e->getMessage());
135 if ($this->activity->target->type == ActivityObject::_LIST) {
136 if ($this->activity->objects[0]->type != ActivityObject::PERSON) {
137 // TRANS: Client exception.
138 throw new ClientException(_m('Not a person object.'));
140 // this is a peopletag
141 $tagged = User::getKV('uri', $this->activity->objects[0]->id);
143 if (!$tagged instanceof User) {
144 // TRANS: Client exception.
145 throw new ClientException(_m('Unidentified profile being listed.'));
148 if ($tagged->id !== $this->target->id) {
149 // TRANS: Client exception.
150 throw new ClientException(_m('This user is not the one being listed.'));
154 $list = Ostatus_profile::ensureActivityObjectProfile($this->activity->target);
156 $ptag = $list->localPeopletag();
157 $result = Profile_tag::setTag($ptag->tagger, $tagged->id, $ptag->tag);
159 // TRANS: Client exception.
160 throw new ClientException(_m('The listing could not be saved.'));
165 function handleUntag()
167 if ($this->activity->target->type == ActivityObject::_LIST) {
168 if ($this->activity->objects[0]->type != ActivityObject::PERSON) {
169 // TRANS: Client exception.
170 throw new ClientException(_m('Not a person object.'));
172 // this is a peopletag
173 $tagged = User::getKV('uri', $this->activity->objects[0]->id);
175 if (!$tagged instanceof User) {
176 // TRANS: Client exception.
177 throw new ClientException(_m('Unidentified profile being unlisted.'));
180 if ($tagged->id !== $this->target->id) {
181 // TRANS: Client exception.
182 throw new ClientException(_m('This user is not the one being unlisted.'));
186 $list = Ostatus_profile::ensureActivityObjectProfile($this->activity->target);
188 $ptag = $list->localPeopletag();
189 $result = Profile_tag::unTag($ptag->tagger, $tagged->id, $ptag->tag);
192 // TRANS: Client exception.
193 throw new ClientException(_m('The listing could not be deleted.'));
199 * @param ActivityObject $object
201 * @throws ClientException on invalid input
203 function getNotice(ActivityObject $object)
205 switch ($object->type) {
206 case ActivityObject::ARTICLE:
207 case ActivityObject::BLOGENTRY:
208 case ActivityObject::NOTE:
209 case ActivityObject::STATUS:
210 case ActivityObject::COMMENT:
213 // TRANS: Client exception.
214 throw new ClientException(_m('Cannot handle that kind of object for liking/faving.'));
217 $notice = Notice::getKV('uri', $object->id);
219 if (!$notice instanceof Notice) {
220 // TRANS: Client exception. %s is an object ID.
221 throw new ClientException(sprintf(_m('Notice with ID %s unknown.'),$object->id));
224 if ($notice->profile_id != $this->target->id) {
225 // TRANS: Client exception. %1$s is a notice ID, %2$s is a user ID.
226 throw new ClientException(sprintf(_m('Notice with ID %1$s not posted by %2$s.'), $object->id, $this->target->id));