]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/GroupPrivateMessage/GroupPrivateMessagePlugin.php
Merge branch 'fixes/type-hints' into social-master
[quix0rs-gnu-social.git] / plugins / GroupPrivateMessage / GroupPrivateMessagePlugin.php
1 <?php
2 /**
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2011, StatusNet, Inc.
5  *
6  * Private groups for StatusNet 0.9.x
7  *
8  * PHP version 5
9  *
10  * This program is free software: you can redistribute it and/or modify
11  * it under the terms of the GNU Affero General Public License as published by
12  * the Free Software Foundation, either version 3 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU Affero General Public License for more details.
19  *
20  * You should have received a copy of the GNU Affero General Public License
21  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
22  *
23  * @category  Privacy
24  * @package   StatusNet
25  * @author    Evan Prodromou <evan@status.net>
26  * @copyright 2011 StatusNet, Inc.
27  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
28  * @link      http://status.net/
29  */
30
31 if (!defined('STATUSNET')) {
32     // This check helps protect against security problems;
33     // your code file can't be executed directly from the web.
34     exit(1);
35 }
36
37 /**
38  * Private groups
39  *
40  * This plugin allows users to send private messages to a group.
41  *
42  * @category  Privacy
43  * @package   StatusNet
44  * @author    Evan Prodromou <evan@status.net>
45  * @copyright 2011 StatusNet, Inc.
46  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
47  * @link      http://status.net/
48  */
49 class GroupPrivateMessagePlugin extends Plugin
50 {
51     /**
52      * Database schema setup
53      *
54      * @see Schema
55      * @see ColumnDef
56      *
57      * @return boolean hook value
58      */
59     function onCheckSchema()
60     {
61         $schema = Schema::get();
62
63         // For storing user-submitted flags on profiles
64         $schema->ensureTable('group_privacy_settings', Group_privacy_settings::schemaDef());
65         $schema->ensureTable('group_message', Group_message::schemaDef());
66         $schema->ensureTable('group_message_profile', Group_message_profile::schemaDef());
67         return true;
68     }
69
70     /**
71      * Map URLs to actions
72      *
73      * @param URLMapper $m path-to-action mapper
74      *
75      * @return boolean hook value
76      */
77     function onRouterInitialized(URLMapper $m)
78     {
79         $m->connect('group/:nickname/inbox',
80                     array('action' => 'groupinbox'),
81                     array('nickname' => Nickname::DISPLAY_FMT));
82
83         $m->connect('group/message/:id',
84                     array('action' => 'showgroupmessage'),
85                     array('id' => '[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}'));
86
87         $m->connect('group/:nickname/message/new',
88                     array('action' => 'newgroupmessage'),
89                     array('nickname' => Nickname::DISPLAY_FMT));
90
91         return true;
92     }
93
94     /**
95      * Add group inbox to the menu
96      *
97      * @param Action $action The current action handler. Use this to
98      *                       do any output.
99      *
100      * @return boolean hook value; true means continue processing, false means stop.
101      *
102      * @see Action
103      */
104     function onEndGroupGroupNav(Menu $groupnav)
105     {
106         $action = $groupnav->action;
107         $group  = $groupnav->group;
108
109         $action->menuItem(common_local_url('groupinbox',
110                                            array('nickname' => $group->nickname)),
111                           // TRANS: Menu item in group page.
112                           _m('MENU','Inbox'),
113                           // TRANS: Menu title in group page.
114                           _m('Private messages for this group.'),
115                           $action->trimmed('action') == 'groupinbox',
116                           'nav_group_inbox');
117         return true;
118     }
119
120     /**
121      * Create default group privacy settings at group create time
122      *
123      * @param User_group $group Group that was just created
124      *
125      * @result boolean hook value
126      */
127     function onEndGroupSave(User_group $group)
128     {
129         $gps = new Group_privacy_settings();
130
131         $gps->group_id      = $group->id;
132         $gps->allow_privacy = Group_privacy_settings::SOMETIMES;
133         $gps->allow_sender  = Group_privacy_settings::MEMBER;
134         $gps->created       = common_sql_now();
135         $gps->modified      = $gps->created;
136
137         // This will throw an exception on error
138
139         $gps->insert();
140
141         return true;
142     }
143
144     /**
145      * Show group privacy controls on group edit form
146      *
147      * @param GroupEditForm $form form being shown
148      */
149     function onEndGroupEditFormData(GroupEditForm $form)
150     {
151         $gps = null;
152
153         if (!empty($form->group)) {
154             $gps = Group_privacy_settings::getKV('group_id', $form->group->id);
155         }
156
157         $form->out->elementStart('li');
158         $form->out->dropdown('allow_privacy',
159                              // TRANS: Dropdown label in group settings page for if group allows private messages.
160                              _m('Private messages'),
161                              // TRANS: Dropdown option in group settings page for allowing private messages.
162                              array(Group_privacy_settings::SOMETIMES => _m('Sometimes'),
163                                    // TRANS: Dropdown option in group settings page for allowing private messages.
164                                    Group_privacy_settings::ALWAYS => _m('Always'),
165                                    // TRANS: Dropdown option in group settings page for allowing private messages.
166                                    Group_privacy_settings::NEVER => _m('Never')),
167                              // TRANS: Dropdown title in group settings page for if group allows private messages.
168                              _m('Whether to allow private messages to this group.'),
169                              false,
170                              (empty($gps)) ? Group_privacy_settings::SOMETIMES : $gps->allow_privacy);
171         $form->out->elementEnd('li');
172         $form->out->elementStart('li');
173         $form->out->dropdown('allow_sender',
174                              // TRANS: Dropdown label in group settings page for who can send private messages to the group.
175                              _m('Private senders'),
176                              // TRANS: Dropdown option in group settings page for who can send private messages.
177                              array(Group_privacy_settings::EVERYONE => _m('Everyone'),
178                                    // TRANS: Dropdown option in group settings page for who can send private messages.
179                                    Group_privacy_settings::MEMBER => _m('Member'),
180                                    // TRANS: Dropdown option in group settings page for who can send private messages.
181                                    Group_privacy_settings::ADMIN => _m('Admin')),
182                              // TRANS: Dropdown title in group settings page for who can send private messages to the group.
183                              _m('Who can send private messages to the group.'),
184                              false,
185                              (empty($gps)) ? Group_privacy_settings::MEMBER : $gps->allow_sender);
186         $form->out->elementEnd('li');
187         return true;
188     }
189
190     function onEndGroupSaveForm(GroupAction $action)
191     {
192         $gps = null;
193         $group = $action->getGroup();
194
195         if ($group instanceof User_group) {
196             $gps = Group_privacy_settings::getKV('group_id', $group->id);
197         }
198
199         $orig = null;
200
201         if (empty($gps)) {
202             $gps = new Group_privacy_settings();
203             $gps->group_id = $action->getGroup()->id;
204         } else {
205             $orig = clone($gps);
206         }
207
208         $gps->allow_privacy = $action->trimmed('allow_privacy');
209         $gps->allow_sender  = $action->trimmed('allow_sender');
210
211         if (empty($orig)) {
212             $gps->created = common_sql_now();
213             $gps->insert();
214         } else {
215             $gps->update($orig);
216         }
217
218         return true;
219     }
220
221     /**
222      * Overload 'd' command to send private messages to groups.
223      *
224      * 'd !group word word word' will send the private message
225      * 'word word word' to the group 'group'.
226      *
227      * @param string  $cmd     Command being run
228      * @param string  $arg     Rest of the message (including address)
229      * @param User    $user    User sending the message
230      * @param Command &$result The resulting command object to be run.
231      *
232      * @return boolean hook value
233      */
234     function onStartInterpretCommand($cmd, $arg, User $user, &$result)
235     {
236         if ($cmd == 'd' || $cmd == 'dm') {
237
238             $this->debug('Got a d command');
239
240             // Break off the first word as the address
241
242             $pieces = explode(' ', $arg, 2);
243
244             if (count($pieces) == 1) {
245                 $pieces[] = null;
246             }
247
248             list($addr, $msg) = $pieces;
249
250             if (!empty($addr) && $addr[0] == '!') {
251                 $result = new GroupMessageCommand($user, substr($addr, 1), $msg);
252                 Event::handle('EndInterpretCommand', array($cmd, $arg, $user, $result));
253                 return false;
254             }
255         }
256
257         return true;
258     }
259
260     /**
261      * To add a "Message" button to the group profile page
262      *
263      * @param Widget     $widget The showgroup action being shown
264      * @param User_group $group  The current group
265      *
266      * @return boolean hook value
267      */
268     function onEndGroupActionsList(Widget $widget, User_group $group)
269     {
270         $cur = common_current_user();
271         $action = $widget->out;
272
273         if (empty($cur)) {
274             return true;
275         }
276
277         try {
278             Group_privacy_settings::ensurePost($cur, $group);
279         } catch (Exception $e) {
280             return true;
281         }
282
283         $action->elementStart('li', 'entity_send-a-message');
284         $action->element('a', array('href' => common_local_url('newgroupmessage', array('nickname' => $group->nickname)),
285                                     // TRANS: Title for action in group actions list.
286                                     'title' => _m('Send a direct message to this group.')),
287                          // TRANS: Link text for action in group actions list to send a private message to a group.
288                          _m('LINKTEXT','Message'));
289         // $form = new GroupMessageForm($action, $group);
290         // $form->hidden = true;
291         // $form->show();
292         $action->elementEnd('li');
293         return true;
294     }
295
296     /**
297      * When saving a notice, check its groups. If any of them has
298      * privacy == always, force a group private message to all mentioned groups.
299      * If any of the groups disallows private messages, skip it.
300      *
301      * @param
302      */
303     function onStartNoticeSave(Notice &$notice) {
304         // Look for group tags
305         // FIXME: won't work for remote groups
306         // @fixme if Notice::saveNew is refactored so we can just pull its list
307         // of groups between processing and saving, make use of it
308
309         $count = preg_match_all('/(?:^|\s)!(' . Nickname::DISPLAY_FMT . ')/',
310                                 strtolower($notice->content),
311                                 $match);
312
313         $groups = array();
314         $ignored = array();
315
316         $forcePrivate = false;
317         $profile = $notice->getProfile();
318
319         if ($count > 0) {
320             /* Add them to the database */
321
322             foreach (array_unique($match[1]) as $nickname) {
323                 $group = User_group::getForNickname($nickname, $profile);
324
325                 if (!$group instanceof User_group) {
326                     continue;
327                 }
328
329                 $gps = Group_privacy_settings::forGroup($group);
330
331                 switch ($gps->allow_privacy) {
332                 case Group_privacy_settings::ALWAYS:
333                     $forcePrivate = true;
334                     // fall through
335                 case Group_privacy_settings::SOMETIMES:
336                     $groups[] = $group;
337                     break;
338                 case Group_privacy_settings::NEVER:
339                     $ignored[] = $group;
340                     break;
341                 }
342             }
343
344             if ($forcePrivate) {
345                 foreach ($ignored as $group) {
346                     common_log(LOG_NOTICE,
347                                "Notice forced to group direct message ".
348                                "but group ".$group->nickname." does not allow them.");
349                 }
350
351                 $user = User::getKV('id', $notice->profile_id);
352
353                 if (empty($user)) {
354                     common_log(LOG_WARNING,
355                                "Notice forced to group direct message ".
356                                "but profile ".$notice->profile_id." is not a local user.");
357                 } else {
358                     foreach ($groups as $group) {
359                         Group_message::send($user, $group, $notice->content);
360                     }
361                 }
362
363                 // Don't save the notice!
364                 // FIXME: this is probably cheating.
365                 // TRANS: Client exception thrown when a private group message has to be forced.
366                 throw new ClientException(sprintf(_m('Forced notice to private group message.')),
367                                           200);
368             }
369         }
370
371         return true;
372     }
373
374     /**
375      * Show an indicator that the group is (essentially) private on the group page
376      *
377      * @param Action     $action The action being shown
378      * @param User_group $group  The group being shown
379      *
380      * @return boolean hook value
381      */
382     function onEndGroupProfileElements(Action $action, User_group $group)
383     {
384         $gps = Group_privacy_settings::forGroup($group);
385
386         if ($gps->allow_privacy == Group_privacy_settings::ALWAYS) {
387             // TRANS: Indicator on the group page that the group is (essentially) private.
388             $action->element('p', 'privategroupindicator', _m('Private'));
389         }
390
391         return true;
392     }
393
394     function onStartShowExportData(GroupAction $action)
395     {
396         if ($action instanceof ShowgroupAction) {
397             $gps = Group_privacy_settings::forGroup($action->getGroup());
398
399             if ($gps->allow_privacy == Group_privacy_settings::ALWAYS) {
400                 return false;
401             }
402         }
403         return true;
404     }
405
406     function onPluginVersion(array &$versions)
407     {
408         $versions[] = array('name' => 'GroupPrivateMessage',
409                             'version' => GNUSOCIAL_VERSION,
410                             'author' => 'Evan Prodromou',
411                             'homepage' => 'http://status.net/wiki/Plugin:GroupPrivateMessage',
412                             'rawdescription' =>
413                             // TRANS: Plugin description.
414                             _m('Allow posting private messages to groups.'));
415         return true;
416     }
417 }