]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/mailbox.php
Script to update laconica.pot from source, and the results of running it
[quix0rs-gnu-social.git] / lib / mailbox.php
1 <?php
2 /*
3  * Laconica - a distributed open-source microblogging tool
4  * Copyright (C) 2008, Controlez-Vous, Inc.
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU Affero General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU Affero General Public License for more details.
15  *
16  * You should have received a copy of the GNU Affero General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 if (!defined('LACONICA')) { exit(1); }
21
22 require_once(INSTALLDIR.'/lib/personal.php');
23
24 define('MESSAGES_PER_PAGE', 20);
25
26 class MailboxAction extends PersonalAction {
27         
28         function handle($args) {
29
30                 parent::handle($args);
31
32                 $nickname = common_canonical_nickname($this->arg('nickname'));
33                 $user = User::staticGet('nickname', $nickname);
34
35                 if (!$user) {
36                         $this->client_error(_('No such user.'), 404);
37                         return;
38                 }
39
40                 $cur = common_current_user();
41                 
42                 if (!$cur || $cur->id != $user->id) {
43                         $this->client_error(_('Only the user can read their own mailboxes.'), 403);
44                         return;
45                 }
46                 
47                 $profile = $user->getProfile();
48
49                 if (!$profile) {
50                         $this->server_error(_('User has no profile.'));
51                         return;
52                 }
53
54                 $page = $this->trimmed('page');
55                 
56                 if (!$page) {
57                         $page = 1;
58                 }
59                 
60                 $this->show_page($user, $page);
61         }
62
63         function get_title($user, $page) {
64                 return '';
65         }
66
67         function get_instructions() {
68                 return '';
69         }
70
71         function show_top() {
72
73                 $cur = common_current_user();
74                 
75                 common_message_form(NULL, $cur, NULL);
76                 
77                 $this->views_menu();
78         }
79         
80         function show_page($user, $page) {
81
82                 common_show_header($this->get_title($user, $page),
83                                                    NULL, NULL,
84                                                    array($this, 'show_top'));
85                 
86                 $this->show_box($user, $page);
87                 
88                 common_show_footer();
89         }
90         
91         function show_box($user, $page) {
92                 
93                 $message = $this->get_messages($user, $page);
94                 
95                 if ($message) {
96                         
97                         $cnt = 0;
98                         common_element_start('ul', array('id' => 'messages'));
99                 
100                         while ($message->fetch() && $cnt <= MESSAGES_PER_PAGE) {
101                                 $cnt++;
102                                 
103                                 if ($cnt > MESSAGES_PER_PAGE) {
104                                         break;
105                                 }
106                                 
107                                 $this->show_message($message);
108                         }
109
110                         common_element_end('ul');
111                         
112                         common_pagination($page > 1, $cnt > MESSAGES_PER_PAGE,
113                                                           $page, $this->trimmed('action'),
114                                                           array('nickname' => $user->nickname));
115                         
116                         $message->free();
117                         unset($message);
118                 }
119         }
120
121         # returns the profile we want to show with the message
122         
123         function get_message_profile($message) {
124                 return NULL;
125         }
126         
127         function show_message($message) {
128
129                 common_element_start('li', array('class' => 'message_single',
130                                                                                   'id' => 'message-' . $message->id));
131
132                 $profile = $this->get_message_profile($message);
133                 
134                 $avatar = $profile->getAvatar(AVATAR_STREAM_SIZE);
135                 common_element_start('a', array('href' => $profile->profileurl));
136                 common_element('img', array('src' => ($avatar) ? common_avatar_display_url($avatar) : common_default_avatar(AVATAR_STREAM_SIZE),
137                                                                         'class' => 'avatar stream',
138                                                                         'width' => AVATAR_STREAM_SIZE,
139                                                                         'height' => AVATAR_STREAM_SIZE,
140                                                                         'alt' =>
141                                                                         ($profile->fullname) ? $profile->fullname :
142                                                                         $profile->nickname));
143                 common_element_end('a');
144                 common_element('a', array('href' => $profile->profileurl,
145                                                                   'class' => 'nickname'),
146                                            $profile->nickname);
147                 # FIXME: URL, image, video, audio
148                 common_element_start('p', array('class' => 'content'));
149                 common_raw($message->rendered);
150                 common_element_end('p');
151                 
152                 $messageurl = common_local_url('showmessage', array('message' => $message->id));
153                 
154                 # XXX: we need to figure this out better. Is this right?
155                 if (strcmp($message->uri, $messageurl) != 0 && preg_match('/^http/', $message->uri)) {
156                         $messageurl = $message->uri;
157                 }
158                 common_element_start('p', 'time');
159                 common_element('a', array('class' => 'permalink',
160                                                                   'href' => $messageurl,
161                                                                   'title' => common_exact_date($message->created)),
162                                            common_date_string($message->created));
163                 if ($message->source) {
164                         common_text(_(' from '));
165                         $this->source_link($message->source);
166                 }
167                 
168                 common_element_end('p');
169                 
170                 common_element_end('li');
171         }
172 }