]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/GroupPrivateMessage/groupinbox.php
Merge branch 'testing' into privategroup
[quix0rs-gnu-social.git] / plugins / GroupPrivateMessage / groupinbox.php
1 <?php
2 /**
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2010, StatusNet, Inc.
5  *
6  * List of private messages to this group
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  PrivateGroup
24  * @package   StatusNet
25  * @author    Evan Prodromou <evan@status.net>
26  * @copyright 2010 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  * Show a list of private messages to this group
39  *
40  * @category  PrivateGroup
41  * @package   StatusNet
42  * @author    Evan Prodromou <evan@status.net>
43  * @copyright 2010 StatusNet, Inc.
44  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
45  * @link      http://status.net/
46  */
47
48 class GroupinboxAction extends GroupDesignAction
49 {
50     var $gm;
51
52     /**
53      * For initializing members of the class.
54      *
55      * @param array $argarray misc. arguments
56      *
57      * @return boolean true
58      */
59     function prepare($argarray)
60     {
61         parent::prepare($argarray);
62
63         $cur = common_current_user();
64
65         if (empty($cur)) {
66             throw new ClientException(_('Only for logged-in users'), 403);
67         }
68
69         $nicknameArg = $this->trimmed('nickname');
70
71         $nickname = common_canonical_nickname($nicknameArg);
72
73         if ($nickname != $nicknameArg) {
74             $url = common_local_url('groupinbox', array('nickname' => $nickname));
75             common_redirect($url);
76             return false;
77         }
78
79         $localGroup = Local_group::staticGet('nickname', $nickname);
80
81         if (empty($localGroup)) {
82             throw new ClientException(_('No such group'), 404);
83         }
84
85         $this->group = User_group::staticGet('id', $localGroup->group_id);
86
87         if (empty($this->group)) {
88             throw new ClientException(_('No such group'), 404);
89         }
90
91         if (!$cur->isMember($this->group)) {
92             throw new ClientException(_('Only for members'), 403);
93         }
94
95         $this->page = $this->trimmed('page');
96
97         if (!$this->page) {
98             $this->page = 1;
99         }
100         
101         $this->gm = Group_message::forGroup($this->group, 
102                                             ($this->page - 1) * MESSAGES_PER_PAGE,
103                                             MESSAGES_PER_PAGE + 1);
104         return true;
105     }
106
107     function showLocalNav()
108     {
109         $nav = new GroupNav($this, $this->group);
110         $nav->show();
111     }
112
113     function showNoticeForm()
114     {
115         $form = new GroupMessageForm($this, $this->group);
116         $form->show();
117     }
118
119     function showContent()
120     {
121         $gml = new GroupMessageList($this, $this->gm);
122         $cnt = $gml->show();
123
124         $this->pagination($this->page > 1,
125                           $cnt > MESSAGES_PER_PAGE,
126                           $this->page,
127                           'groupinbox',
128                           array('nickname' => $this->group->nickname));
129     }
130
131     /**
132      * Handler method
133      *
134      * @param array $argarray is ignored since it's now passed in in prepare()
135      *
136      * @return void
137      */
138     function handle($argarray=null)
139     {
140         $this->showPage();
141     }
142
143     /**
144      * Return true if read only.
145      *
146      * MAY override
147      *
148      * @param array $args other arguments
149      *
150      * @return boolean is read only action?
151      */
152     function isReadOnly($args)
153     {
154         return true;
155     }
156
157     /**
158      * Title of the page
159      *
160      * @return string page title, with page number
161      */
162     function title()
163     {
164         $base = $this->group->getFancyName();
165
166         if ($this->page == 1) {
167             return sprintf(_('%s group inbox'), $base);
168         } else {
169             // TRANS: Page title for any but first group page.
170             // TRANS: %1$s is a group name, $2$s is a page number.
171             return sprintf(_('%1$s group inbox, page %2$d'),
172                            $base,
173                            $this->page);
174         }
175     }
176 }