3 * StatusNet - the distributed open-source microblogging tool
4 * Copyright (C) 2011, StatusNet, Inc.
6 * List of private messages to this group
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/>.
23 * @category GroupPrivateMessage
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.
38 * Show a list of private messages to this group
40 * @category GroupPrivateMessage
42 * @author Evan Prodromou <evan@status.net>
43 * @copyright 2011 StatusNet, Inc.
44 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
45 * @link http://status.net/
48 class GroupinboxAction extends GroupDesignAction
53 * For initializing members of the class.
55 * @param array $argarray misc. arguments
57 * @return boolean true
59 function prepare($argarray)
61 parent::prepare($argarray);
63 $cur = common_current_user();
66 throw new ClientException(_('Only for logged-in users'), 403);
69 $nicknameArg = $this->trimmed('nickname');
71 $nickname = common_canonical_nickname($nicknameArg);
73 if ($nickname != $nicknameArg) {
74 $url = common_local_url('groupinbox', array('nickname' => $nickname));
75 common_redirect($url);
79 $localGroup = Local_group::staticGet('nickname', $nickname);
81 if (empty($localGroup)) {
82 throw new ClientException(_('No such group'), 404);
85 $this->group = User_group::staticGet('id', $localGroup->group_id);
87 if (empty($this->group)) {
88 throw new ClientException(_('No such group'), 404);
91 if (!$cur->isMember($this->group)) {
92 throw new ClientException(_('Only for members'), 403);
95 $this->page = $this->trimmed('page');
101 $this->gm = Group_message::forGroup($this->group,
102 ($this->page - 1) * MESSAGES_PER_PAGE,
103 MESSAGES_PER_PAGE + 1);
107 function showLocalNav()
109 $nav = new GroupNav($this, $this->group);
113 function showNoticeForm()
115 $form = new GroupMessageForm($this, $this->group);
119 function showContent()
121 $gml = new GroupMessageList($this, $this->gm);
125 $this->element('p', 'guide', _m('This group has not received any private messages.'));
127 $this->pagination($this->page > 1,
128 $cnt > MESSAGES_PER_PAGE,
131 array('nickname' => $this->group->nickname));
137 * @param array $argarray is ignored since it's now passed in in prepare()
141 function handle($argarray=null)
147 * Return true if read only.
151 * @param array $args other arguments
153 * @return boolean is read only action?
155 function isReadOnly($args)
163 * @return string page title, with page number
167 $base = $this->group->getFancyName();
169 if ($this->page == 1) {
170 return sprintf(_('%s group inbox'), $base);
172 // TRANS: Page title for any but first group page.
173 // TRANS: %1$s is a group name, $2$s is a page number.
174 return sprintf(_('%1$s group inbox, page %2$d'),
181 * Show the page notice
183 * Shows instructions for the page
188 function showPageNotice()
190 $instr = $this->getInstructions();
191 $output = common_markup_to_html($instr);
193 $this->elementStart('div', 'instructions');
195 $this->elementEnd('div');
199 * Instructions for using this page
201 * @return string localised instructions for using the page
203 function getInstructions()
205 // TRANS: Instructions for user inbox page.
206 return _m('This is the group inbox, which lists all incoming private messages for this group.');