]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/mailbox.php
5ad63cbaa1b3e479cb6420ed79b206482f8bbb1f
[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 show_page($user, $page) {
68
69                 common_show_header($this->get_title(),
70                                                    NULL, $user,
71                                                    array($this, 'show_top'));
72                 
73                 $this->show_box($user, $page);
74                 
75                 common_show_footer();
76         }
77         
78         function show_box($user, $page) {
79                 
80                 $message = $this->get_messages($user, $page);
81                 
82                 if ($message) {
83                         
84                         $cnt = 0;
85                         common_element_start('ul', array('id' => 'messages'));
86                 
87                         while ($message->fetch() && $cnt <= MESSAGES_PER_PAGE) {
88                                 $cnt++;
89                                 
90                                 if ($cnt > MESSAGES_PER_PAGE) {
91                                         break;
92                                 }
93                                 
94                                 $this->show_message($message);
95                         }
96
97                         common_element_end('ul');
98                         
99                         common_pagination($page > 1, $cnt > MESSAGES_PER_PAGE,
100                                                           $page, $this->trimmed('action'),
101                                                           array('nickname' => $user->nickname));
102                         
103                         $message->free();
104                         unset($message);
105                 }
106         }
107
108         # returns the profile we want to show with the message
109         
110         function get_message_profile($message) {
111                 return NULL;
112         }
113         
114         function show_message($message) {
115
116                 common_element_start('li', array('class' => 'message_single',
117                                                                                   'id' => 'message-' . $message->id));
118
119                 $profile = $this->get_message_profile($message);
120                 
121                 $avatar = $profile->getAvatar(AVATAR_STREAM_SIZE);
122                 common_element_start('a', array('href' => $profile->profileurl));
123                 common_element('img', array('src' => ($avatar) ? common_avatar_display_url($avatar) : common_default_avatar(AVATAR_STREAM_SIZE),
124                                                                         'class' => 'avatar stream',
125                                                                         'width' => AVATAR_STREAM_SIZE,
126                                                                         'height' => AVATAR_STREAM_SIZE,
127                                                                         'alt' =>
128                                                                         ($profile->fullname) ? $profile->fullname :
129                                                                         $profile->nickname));
130                 common_element_end('a');
131                 common_element('a', array('href' => $profile->profileurl,
132                                                                   'class' => 'nickname'),
133                                            $profile->nickname);
134                 # FIXME: URL, image, video, audio
135                 common_element_start('p', array('class' => 'content'));
136                 common_raw($message->rendered);
137                 common_element_end('p');
138                 
139                 $messageurl = common_local_url('showmessage', array('message' => $message->id));
140                 
141                 # XXX: we need to figure this out better. Is this right?
142                 if (strcmp($message->uri, $messageurl) != 0 && preg_match('/^http/', $message->uri)) {
143                         $messageurl = $message->uri;
144                 }
145                 common_element_start('p', 'time');
146                 common_element('a', array('class' => 'permalink',
147                                                                   'href' => $messageurl,
148                                                                   'title' => common_exact_date($message->created)),
149                                            common_date_string($message->created));
150                 if ($message->source) {
151                         common_text(_(' from '));
152                         $this->source_link($message->source);
153                 }
154                 
155                 common_element_end('p');
156                 
157                 common_element_end('li');
158         }
159 }