]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/OStatus/actions/groupsalmon.php
Merge branch 'master' of https://git.gnu.io/aroque/gnu-social into social-master
[quix0rs-gnu-social.git] / plugins / OStatus / actions / groupsalmon.php
1 <?php
2 /*
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2010, StatusNet, Inc.
5  *
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.
10  *
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.
15  *
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/>.
18  */
19
20 if (!defined('GNUSOCIAL')) { exit(1); }
21
22 /**
23  * @package OStatusPlugin
24  * @author James Walker <james@status.net>
25  */
26 class GroupsalmonAction extends SalmonAction
27 {
28     var $group = null;
29
30     protected function prepare(array $args=array())
31     {
32         parent::prepare($args);
33
34         $id = $this->trimmed('id');
35
36         if (!$id) {
37             // TRANS: Client error.
38             $this->clientError(_m('No ID.'));
39         }
40
41         $this->group = User_group::getKV('id', $id);
42
43         if (!$this->group instanceof User_group) {
44             // TRANS: Client error.
45             $this->clientError(_m('No such group.'));
46         }
47
48
49         $this->target = $this->group;
50
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.'));
55         }
56
57         return true;
58     }
59
60     /**
61      * We've gotten a post event on the Salmon backchannel, probably a reply.
62      */
63     function handlePost()
64     {
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:
72             break;
73         default:
74             // TRANS: Client exception.
75             throw new ClientException('Cannot handle that kind of post.');
76         }
77
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.");
82         } else {
83             $uri = common_local_url('groupbyid', array('id' => $this->group->id));
84
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.");
88             }
89         }
90
91         $this->saveNotice();
92     }
93
94     /**
95      * We've gotten a follow/subscribe notification from a remote user.
96      * Save a subscription relationship for them.
97      */
98
99     /**
100      * Postel's law: consider a "follow" notification as a "join".
101      */
102     function handleFollow()
103     {
104         $this->handleJoin();
105     }
106
107     /**
108      * Postel's law: consider an "unfollow" notification as a "leave".
109      */
110     function handleUnfollow()
111     {
112         $this->handleLeave();
113     }
114
115     /**
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.
120      */
121     function handleJoin()
122     {
123         if ($this->oprofile->isGroup()) {
124             // TRANS: Client error.
125             $this->clientError(_m('Groups cannot join groups.'));
126         }
127
128         common_log(LOG_INFO, sprintf('Remote profile %s joining local group %s', $this->oprofile->getUri(), $this->group->getNickname()));
129
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.
133             return true;
134         }
135
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);
139         }
140
141         try {
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()));
147         }
148     }
149
150     /**
151      * A remote user left our group.
152      */
153     function handleLeave()
154     {
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'));
158         }
159
160         common_log(LOG_INFO, sprintf('Remote profile %s leaving local group %s', $this->oprofile->getUri(), $this->group->getNickname()));
161
162         try {
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()));
168         }
169     }
170 }