]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/mailbox.php
correctly show the source of messages in a message list
[quix0rs-gnu-social.git] / lib / mailbox.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * common superclass for direct messages inbox and outbox
6  *
7  * PHP version 5
8  *
9  * LICENCE: This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU Affero General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU Affero General Public License for more details.
18  *
19  * You should have received a copy of the GNU Affero General Public License
20  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21  *
22  * @category  Message
23  * @package   StatusNet
24  * @author    Evan Prodromou <evan@status.net>
25  * @copyright 2008 StatusNet, Inc.
26  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
27  * @link      http://status.net/
28  */
29
30 if (!defined('STATUSNET') && !defined('LACONICA')) {
31     exit(1);
32 }
33
34 /**
35  * common superclass for direct messages inbox and outbox
36  *
37  * @category Message
38  * @package  StatusNet
39  * @author   Evan Prodromou <evan@status.net>
40  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
41  * @link     http://status.net/
42  * @see      InboxAction
43  * @see      OutboxAction
44  */
45
46 class MailboxAction extends CurrentUserDesignAction
47 {
48     var $page = null;
49
50     function prepare($args)
51     {
52         parent::prepare($args);
53
54         $nickname   = common_canonical_nickname($this->arg('nickname'));
55         $this->user = User::staticGet('nickname', $nickname);
56         $this->page = $this->trimmed('page');
57
58         if (!$this->page) {
59             $this->page = 1;
60         }
61
62         common_set_returnto($this->selfUrl());
63
64         return true;
65     }
66
67     /**
68      * output page based on arguments
69      *
70      * @param array $args HTTP arguments (from $_REQUEST)
71      *
72      * @return void
73      */
74
75     function handle($args)
76     {
77         parent::handle($args);
78
79         if (!$this->user) {
80             $this->clientError(_('No such user.'), 404);
81             return;
82         }
83
84         $cur = common_current_user();
85
86         if (!$cur || $cur->id != $this->user->id) {
87             $this->clientError(_('Only the user can read their own mailboxes.'),
88                 403);
89             return;
90         }
91
92         $this->showPage();
93     }
94
95     function showLocalNav()
96     {
97         $nav = new PersonalGroupNav($this);
98         $nav->show();
99     }
100
101     function showNoticeForm()
102     {
103         $message_form = new MessageForm($this);
104         $message_form->show();
105     }
106
107     function showContent()
108     {
109         $message = $this->getMessages();
110
111         if ($message) {
112
113             $ml = $this->getMessageList($message);
114
115             $cnt = $ml->show();
116
117             $this->pagination($this->page > 1,
118                               $cnt > MESSAGES_PER_PAGE,
119                               $this->page,
120                               $this->trimmed('action'),
121                               array('nickname' => $this->user->nickname));
122         } else {
123             $this->element('p', 
124                            'guide', 
125                            _('You have no private messages. '.
126                              'You can send private message to engage other users in conversation. '.
127                              'People can send you messages for your eyes only.'));
128         }
129     }
130
131     function getMessages()
132     {
133         return null;
134     }
135
136     function getMessageList($message)
137     {
138         return null;
139     }
140
141     /**
142      * Show the page notice
143      *
144      * Shows instructions for the page
145      *
146      * @return void
147      */
148
149     function showPageNotice()
150     {
151         $instr  = $this->getInstructions();
152         $output = common_markup_to_html($instr);
153
154         $this->elementStart('div', 'instructions');
155         $this->raw($output);
156         $this->elementEnd('div');
157     }
158
159     /**
160      * Mailbox actions are read only
161      *
162      * @param array $args other arguments
163      *
164      * @return boolean
165      */
166
167     function isReadOnly($args)
168     {
169          return true;
170     }
171 }