3 * StatusNet - the distributed open-source microblogging tool
4 * Copyright (C) 2011, StatusNet, Inc.
6 * Private groups for StatusNet 0.9.x
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.
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.
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/>.
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/
31 if (!defined('STATUSNET')) {
32 // This check helps protect against security problems;
33 // your code file can't be executed directly from the web.
40 * This plugin allows users to send private messages to a group.
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/
49 class GroupPrivateMessagePlugin extends Plugin
52 * Database schema setup
57 * @return boolean hook value
59 function onCheckSchema()
61 $schema = Schema::get();
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());
73 * @param Net_URL_Mapper $m path-to-action mapper
75 * @return boolean hook value
77 function onRouterInitialized($m)
79 $m->connect('group/:nickname/inbox',
80 array('action' => 'groupinbox'),
81 array('nickname' => Nickname::DISPLAY_FMT));
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}'));
87 $m->connect('group/:nickname/message/new',
88 array('action' => 'newgroupmessage'),
89 array('nickname' => Nickname::DISPLAY_FMT));
95 * Add group inbox to the menu
97 * @param Action $action The current action handler. Use this to
100 * @return boolean hook value; true means continue processing, false means stop.
104 function onEndGroupGroupNav($groupnav)
106 $action = $groupnav->action;
107 $group = $groupnav->group;
109 $action->menuItem(common_local_url('groupinbox',
110 array('nickname' => $group->nickname)),
111 // TRANS: Menu item in group page.
113 // TRANS: Menu title in group page.
114 _m('Private messages for this group.'),
115 $action->trimmed('action') == 'groupinbox',
121 * Create default group privacy settings at group create time
123 * @param User_group $group Group that was just created
125 * @result boolean hook value
127 function onEndGroupSave($group)
129 $gps = new Group_privacy_settings();
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;
137 // This will throw an exception on error
145 * Show group privacy controls on group edit form
147 * @param GroupEditForm $form form being shown
149 function onEndGroupEditFormData($form)
153 if (!empty($form->group)) {
154 $gps = Group_privacy_settings::getKV('group_id', $form->group->id);
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.'),
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.'),
185 (empty($gps)) ? Group_privacy_settings::MEMBER : $gps->allow_sender);
186 $form->out->elementEnd('li');
190 function onEndGroupSaveForm($action)
194 if (!empty($action->group)) {
195 $gps = Group_privacy_settings::getKV('group_id', $action->group->id);
201 $gps = new Group_privacy_settings();
202 $gps->group_id = $action->group->id;
207 $gps->allow_privacy = $action->trimmed('allow_privacy');
208 $gps->allow_sender = $action->trimmed('allow_sender');
211 $gps->created = common_sql_now();
221 * Overload 'd' command to send private messages to groups.
223 * 'd !group word word word' will send the private message
224 * 'word word word' to the group 'group'.
226 * @param string $cmd Command being run
227 * @param string $arg Rest of the message (including address)
228 * @param User $user User sending the message
229 * @param Command &$result The resulting command object to be run.
231 * @return boolean hook value
233 function onStartIntepretCommand($cmd, $arg, $user, &$result)
235 if ($cmd == 'd' || $cmd == 'dm') {
237 $this->debug('Got a d command');
239 // Break off the first word as the address
241 $pieces = explode(' ', $arg, 2);
243 if (count($pieces) == 1) {
247 list($addr, $msg) = $pieces;
249 if (!empty($addr) && $addr[0] == '!') {
250 $result = new GroupMessageCommand($user, substr($addr, 1), $msg);
251 Event::handle('EndInterpretCommand', array($cmd, $arg, $user, $result));
260 * To add a "Message" button to the group profile page
262 * @param Widget $widget The showgroup action being shown
263 * @param User_group $group The current group
265 * @return boolean hook value
267 function onEndGroupActionsList($widget, $group)
269 $cur = common_current_user();
270 $action = $widget->out;
277 Group_privacy_settings::ensurePost($cur, $group);
278 } catch (Exception $e) {
282 $action->elementStart('li', 'entity_send-a-message');
283 $action->element('a', array('href' => common_local_url('newgroupmessage', array('nickname' => $group->nickname)),
284 // TRANS: Title for action in group actions list.
285 'title' => _m('Send a direct message to this group.')),
286 // TRANS: Link text for action in group actions list to send a private message to a group.
287 _m('LINKTEXT','Message'));
288 // $form = new GroupMessageForm($action, $group);
289 // $form->hidden = true;
291 $action->elementEnd('li');
296 * When saving a notice, check its groups. If any of them has
297 * privacy == always, force a group private message to all mentioned groups.
298 * If any of the groups disallows private messages, skip it.
302 function onStartNoticeSave(&$notice) {
303 // Look for group tags
304 // FIXME: won't work for remote groups
305 // @fixme if Notice::saveNew is refactored so we can just pull its list
306 // of groups between processing and saving, make use of it
308 $count = preg_match_all('/(?:^|\s)!(' . Nickname::DISPLAY_FMT . ')/',
309 strtolower($notice->content),
315 $forcePrivate = false;
316 $profile = $notice->getProfile();
319 /* Add them to the database */
321 foreach (array_unique($match[1]) as $nickname) {
322 $group = User_group::getForNickname($nickname, $profile);
328 $gps = Group_privacy_settings::forGroup($group);
330 switch ($gps->allow_privacy) {
331 case Group_privacy_settings::ALWAYS:
332 $forcePrivate = true;
334 case Group_privacy_settings::SOMETIMES:
337 case Group_privacy_settings::NEVER:
344 foreach ($ignored as $group) {
345 common_log(LOG_NOTICE,
346 "Notice forced to group direct message ".
347 "but group ".$group->nickname." does not allow them.");
350 $user = User::getKV('id', $notice->profile_id);
353 common_log(LOG_WARNING,
354 "Notice forced to group direct message ".
355 "but profile ".$notice->profile_id." is not a local user.");
357 foreach ($groups as $group) {
358 Group_message::send($user, $group, $notice->content);
362 // Don't save the notice!
363 // FIXME: this is probably cheating.
364 // TRANS: Client exception thrown when a private group message has to be forced.
365 throw new ClientException(sprintf(_m('Forced notice to private group message.')),
374 * Show an indicator that the group is (essentially) private on the group page
376 * @param Action $action The action being shown
377 * @param User_group $group The group being shown
379 * @return boolean hook value
381 function onEndGroupProfileElements($action, $group)
383 $gps = Group_privacy_settings::forGroup($group);
385 if ($gps->allow_privacy == Group_privacy_settings::ALWAYS) {
386 // TRANS: Indicator on the group page that the group is (essentially) private.
387 $action->element('p', 'privategroupindicator', _m('Private'));
393 function onStartShowExportData($action)
395 if ($action instanceof ShowgroupAction) {
396 $gps = Group_privacy_settings::forGroup($action->group);
398 if ($gps->allow_privacy == Group_privacy_settings::ALWAYS) {
405 function onPluginVersion(&$versions)
407 $versions[] = array('name' => 'GroupPrivateMessage',
408 'version' => STATUSNET_VERSION,
409 'author' => 'Evan Prodromou',
410 'homepage' => 'http://status.net/wiki/Plugin:GroupPrivateMessage',
412 // TRANS: Plugin description.
413 _m('Allow posting private messages to groups.'));