3 * Laconica - a distributed open-source microblogging tool
4 * Copyright (C) 2008, Controlez-Vous, Inc.
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.
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.
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/>.
20 if (!defined('LACONICA')) { exit(1); }
22 require_once(INSTALLDIR.'/lib/personal.php');
24 define('MESSAGES_PER_PAGE', 20);
26 class MailboxAction extends PersonalAction {
28 function handle($args) {
30 parent::handle($args);
32 $nickname = common_canonical_nickname($this->arg('nickname'));
33 $user = User::staticGet('nickname', $nickname);
36 $this->client_error(_('No such user.'), 404);
40 $cur = common_current_user();
42 if (!$cur || $cur->id != $user->id) {
43 $this->client_error(_('Only the user can read their own mailboxes.'), 403);
47 $profile = $user->getProfile();
50 $this->server_error(_('User has no profile.'));
54 $page = $this->trimmed('page');
60 $this->show_page($user, $page);
63 function get_title($user, $page) {
67 function show_page($user, $page) {
69 common_show_header($this->get_title(),
71 array($this, 'show_top'));
73 $this->show_box($user, $page);
78 function show_box($user, $page) {
80 $message = $this->get_messages($user, $page);
85 common_element_start('ul', array('id' => 'messages'));
87 while ($message->fetch() && $cnt <= MESSAGES_PER_PAGE) {
90 if ($cnt > MESSAGES_PER_PAGE) {
94 $this->show_message($message);
97 common_element_end('ul');
99 common_pagination($page > 1, $cnt > MESSAGES_PER_PAGE,
100 $page, $this->trimmed('action'),
101 array('nickname' => $user->nickname));
108 # returns the profile we want to show with the message
110 function get_message_profile($message) {
114 function show_message($message) {
116 common_element_start('li', array('class' => 'message_single',
117 'id' => 'message-' . $message->id));
119 $profile = $this->get_message_profile($message);
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,
128 ($profile->fullname) ? $profile->fullname :
129 $profile->nickname));
130 common_element_end('a');
131 common_element('a', array('href' => $profile->profileurl,
132 'class' => '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');
139 $messageurl = common_local_url('showmessage', array('message' => $message->id));
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;
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);
155 common_element_end('p');
157 common_element_end('li');