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 GroupsalmonAction extends SalmonAction
30 protected function prepare(array $args=array())
32 parent::prepare($args);
34 $id = $this->trimmed('id');
37 // TRANS: Client error.
38 $this->clientError(_m('No ID.'));
41 $this->group = User_group::getKV('id', $id);
43 if (!$this->group instanceof User_group) {
44 // TRANS: Client error.
45 $this->clientError(_m('No such group.'));
49 $this->target = $this->group;
51 $remote_group = Ostatus_profile::getKV('group_id', $id);
52 if ($remote_group instanceof Ostatus_profile) {
53 // TRANS: Client error.
54 $this->clientError(_m('Cannot accept remote posts for a remote group.'));
61 * We've gotten a post event on the Salmon backchannel, probably a reply.
65 // @fixme process all objects?
66 switch ($this->activity->objects[0]->type) {
67 case ActivityObject::ARTICLE:
68 case ActivityObject::BLOGENTRY:
69 case ActivityObject::NOTE:
70 case ActivityObject::STATUS:
71 case ActivityObject::COMMENT:
74 // TRANS: Client exception.
75 throw new ClientException('Cannot handle that kind of post.');
78 // Notice must be to the attention of this group
79 if (empty($this->activity->context->attention)) {
80 // TRANS: Client exception.
81 throw new ClientException("Not to the attention of anyone.");
83 $uri = common_local_url('groupbyid', array('id' => $this->group->id));
85 if (!array_key_exists($uri, $this->activity->context->attention)) {
86 // TRANS: Client exception.
87 throw new ClientException("Not to the attention of this group.");
95 * We've gotten a follow/subscribe notification from a remote user.
96 * Save a subscription relationship for them.
100 * Postel's law: consider a "follow" notification as a "join".
102 function handleFollow()
108 * Postel's law: consider an "unfollow" notification as a "leave".
110 function handleUnfollow()
112 $this->handleLeave();
116 * A remote user joined our group.
117 * @fixme move permission checks and event call into common code,
118 * currently we're doing the main logic in joingroup action
119 * and so have to repeat it here.
121 function handleJoin()
123 if ($this->oprofile->isGroup()) {
124 // TRANS: Client error.
125 $this->clientError(_m('Groups cannot join groups.'));
128 common_log(LOG_INFO, sprintf('Remote profile %s joining local group %s', $this->oprofile->getUri(), $this->group->getNickname()));
130 if ($this->actor->isMember($this->group)) {
131 // Already a member; we'll take it silently to aid in resolving
132 // inconsistencies on the other side.
136 if (Group_block::isBlocked($this->group, $this->actor)) {
137 // TRANS: Client error displayed when trying to join a group the user is blocked from by a group admin.
138 $this->clientError(_m('You have been blocked from that group by the admin.'), 403);
142 $this->actor->joinGroup($this->group);
143 } catch (Exception $e) {
144 // TRANS: Server error. %1$s is a profile URI, %2$s is a group nickname.
145 $this->serverError(sprintf(_m('Could not join remote user %1$s to group %2$s.'),
146 $this->oprofile->getUri(), $this->group->getNickname()));
151 * A remote user left our group.
153 function handleLeave()
155 if ($this->oprofile->isGroup()) {
156 // TRANS: Client error displayed when trying to have a group join another group.
157 throw new AlreadyFulfilledException(_m('Groups cannot be members of groups'));
160 common_log(LOG_INFO, sprintf('Remote profile %s leaving local group %s', $this->oprofile->getUri(), $this->group->getNickname()));
163 $this->actor->leaveGroup($this->group);
164 } catch (Exception $e) {
165 // TRANS: Server error. %1$s is a profile URI, %2$s is a group nickname.
166 $this->serverError(sprintf(_m('Could not remove remote user %1$s from group %2$s.'),
167 $this->oprofile->getUri(), $this->group->getNickname()));