bring mailbox.php into line with PEAR Coding Standards (mostly)

darcs-hash:20081222195041-84dde-3cc82f6b0f3e4e753c9525aa9a881cfb0c25830c.gz
This commit is contained in:
Evan Prodromou 2008-12-22 14:50:41 -05:00
parent 9de0583196
commit 073ec99c54
5 changed files with 842 additions and 456 deletions

View File

@ -33,4 +33,6 @@ Evan Prodromou <evan@prodromou.name>**20081221005837]
[reformat lib/jabber.php for phpcs, including doc comments [reformat lib/jabber.php for phpcs, including doc comments
Evan Prodromou <evan@prodromou.name>**20081222173249] Evan Prodromou <evan@prodromou.name>**20081222173249]
[reformat lib/language.php for PEAR Coding Standards [reformat lib/language.php for PEAR Coding Standards
Evan Prodromou <evan@prodromou.name>**20081222193029] Evan Prodromou <evan@prodromou.name>**20081222193029]
[bring mailbox.php into line with PEAR Coding Standards (mostly)
Evan Prodromou <evan@prodromou.name>**20081222195041]

View File

@ -1,9 +1,12 @@
<?php <?php
/* /**
* Laconica - a distributed open-source microblogging tool * Laconica, the distributed open-source microblogging tool
* Copyright (C) 2008, Controlez-Vous, Inc.
* *
* This program is free software: you can redistribute it and/or modify * common superclass for direct messages inbox and outbox
*
* PHP version 5
*
* LICENCE: This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by * it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or * the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version. * (at your option) any later version.
@ -15,158 +18,253 @@
* *
* You should have received a copy of the GNU Affero General Public License * You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @category Action
* @package Laconica
* @author Evan Prodromou <evan@controlyourself.ca>
* @copyright 2008 Control Yourself, Inc.
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://laconi.ca/
*/ */
if (!defined('LACONICA')) { exit(1); } if (!defined('LACONICA')) {
exit(1);
}
require_once(INSTALLDIR.'/lib/personal.php'); require_once INSTALLDIR.'/lib/personal.php';
define('MESSAGES_PER_PAGE', 20); define('MESSAGES_PER_PAGE', 20);
class MailboxAction extends PersonalAction { /**
* common superclass for direct messages inbox and outbox
function handle($args) { *
* @category Action
* @package Laconica
* @author Evan Prodromou <evan@controlyourself.ca>
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://laconi.ca/
* @see InboxAction
* @see OutboxAction
*/
parent::handle($args); class MailboxAction extends PersonalAction
{
/**
* output page based on arguments
*
* @param array $args HTTP arguments (from $_REQUEST)
*
* @return void
*/
$nickname = common_canonical_nickname($this->arg('nickname')); function handle($args)
$user = User::staticGet('nickname', $nickname); {
parent::handle($args);
if (!$user) { $nickname = common_canonical_nickname($this->arg('nickname'));
$this->client_error(_('No such user.'), 404);
return;
}
$cur = common_current_user(); $user = User::staticGet('nickname', $nickname);
if (!$cur || $cur->id != $user->id) {
$this->client_error(_('Only the user can read their own mailboxes.'), 403);
return;
}
$profile = $user->getProfile();
if (!$profile) { if (!$user) {
$this->server_error(_('User has no profile.')); $this->client_error(_('No such user.'), 404);
return; return;
} }
$page = $this->trimmed('page'); $cur = common_current_user();
if (!$page) {
$page = 1;
}
$this->show_page($user, $page);
}
function get_title($user, $page) { if (!$cur || $cur->id != $user->id) {
return ''; $this->client_error(_('Only the user can read their own mailboxes.'),
} 403);
return;
}
function get_instructions() { $profile = $user->getProfile();
return '';
}
function show_top() { if (!$profile) {
$this->server_error(_('User has no profile.'));
return;
}
$cur = common_current_user(); $page = $this->trimmed('page');
common_message_form(NULL, $cur, NULL);
$this->views_menu();
}
function show_page($user, $page) {
common_show_header($this->get_title($user, $page), if (!$page) {
NULL, NULL, $page = 1;
array($this, 'show_top')); }
$this->show_box($user, $page);
common_show_footer();
}
function show_box($user, $page) {
$message = $this->get_messages($user, $page);
if ($message) {
$cnt = 0;
common_element_start('ul', array('id' => 'messages'));
while ($message->fetch() && $cnt <= MESSAGES_PER_PAGE) {
$cnt++;
if ($cnt > MESSAGES_PER_PAGE) {
break;
}
$this->show_message($message);
}
common_element_end('ul'); $this->show_page($user, $page);
}
common_pagination($page > 1, $cnt > MESSAGES_PER_PAGE,
$page, $this->trimmed('action'),
array('nickname' => $user->nickname));
$message->free();
unset($message);
}
}
# returns the profile we want to show with the message /**
* returns the title of the page
function get_message_profile($message) { *
return NULL; * @param User $user current user
} * @param int $page current page
*
function show_message($message) { * @return string localised title of the page
*/
common_element_start('li', array('class' => 'message_single', function get_title($user, $page)
'id' => 'message-' . $message->id)); {
return '';
}
$profile = $this->get_message_profile($message); /**
* instructions for using this page
$avatar = $profile->getAvatar(AVATAR_STREAM_SIZE); *
common_element_start('a', array('href' => $profile->profileurl)); * @return string localised instructions for using the page
common_element('img', array('src' => ($avatar) ? common_avatar_display_url($avatar) : common_default_avatar(AVATAR_STREAM_SIZE), */
'class' => 'avatar stream',
'width' => AVATAR_STREAM_SIZE, function get_instructions()
'height' => AVATAR_STREAM_SIZE, {
'alt' => return '';
($profile->fullname) ? $profile->fullname : }
$profile->nickname));
common_element_end('a'); /**
common_element('a', array('href' => $profile->profileurl, * do structured output for the "instructions" are of the page
'class' => 'nickname'), *
$profile->nickname); * @return void
# FIXME: URL, image, video, audio */
common_element_start('p', array('class' => 'content'));
common_raw($message->rendered); function show_top()
common_element_end('p'); {
$cur = common_current_user();
$messageurl = common_local_url('showmessage', array('message' => $message->id));
common_message_form(null, $cur, null);
# XXX: we need to figure this out better. Is this right?
if (strcmp($message->uri, $messageurl) != 0 && preg_match('/^http/', $message->uri)) { $this->views_menu();
$messageurl = $message->uri; }
}
common_element_start('p', 'time'); /**
common_element('a', array('class' => 'permalink', * show a full page of output
'href' => $messageurl, *
'title' => common_exact_date($message->created)), * @param User $user The current user
common_date_string($message->created)); * @param int $page The page the user is on
if ($message->source) { *
common_text(_(' from ')); * @return void
$this->source_link($message->source); */
}
function show_page($user, $page)
common_element_end('p'); {
common_show_header($this->get_title($user, $page),
common_element_end('li'); null, null,
} array($this, 'show_top'));
$this->show_box($user, $page);
common_show_footer();
}
/**
* show the messages for a mailbox in list format
*
* Includes the pagination links (before, after).
*
* @param User $user The current user
* @param int $page The page the user is on
*
* @return void
*/
function show_box($user, $page)
{
$message = $this->get_messages($user, $page);
if ($message) {
$cnt = 0;
common_element_start('ul', array('id' => 'messages'));
while ($message->fetch() && $cnt <= MESSAGES_PER_PAGE) {
$cnt++;
if ($cnt > MESSAGES_PER_PAGE) {
break;
}
$this->show_message($message);
}
common_element_end('ul');
common_pagination($page > 1, $cnt > MESSAGES_PER_PAGE,
$page, $this->trimmed('action'),
array('nickname' => $user->nickname));
$message->free();
unset($message);
}
}
/**
* returns the profile we want to show with the message
*
* For inboxes, we show the sender; for outboxes, the recipient.
*
* @param Message $message The message to get the profile for
*
* @return Profile The profile that matches the message
*/
function get_message_profile($message)
{
return null;
}
/**
* show a single message in the list format
*
* @param Message $message the message to show
*
* @return void
*/
function show_message($message)
{
common_element_start('li', array('class' => 'message_single',
'id' => 'message-' . $message->id));
$profile = $this->get_message_profile($message);
$avatar = $profile->getAvatar(AVATAR_STREAM_SIZE);
common_element_start('a', array('href' => $profile->profileurl));
common_element('img', array('src' => ($avatar) ?
common_avatar_display_url($avatar) :
common_default_avatar(AVATAR_STREAM_SIZE),
'class' => 'avatar stream',
'width' => AVATAR_STREAM_SIZE,
'height' => AVATAR_STREAM_SIZE,
'alt' =>
($profile->fullname) ? $profile->fullname :
$profile->nickname));
common_element_end('a');
common_element('a', array('href' => $profile->profileurl,
'class' => 'nickname'),
$profile->nickname);
// FIXME: URL, image, video, audio
common_element_start('p', array('class' => 'content'));
common_raw($message->rendered);
common_element_end('p');
$messageurl = common_local_url('showmessage',
array('message' => $message->id));
// XXX: we need to figure this out better. Is this right?
if (strcmp($message->uri, $messageurl) != 0 &&
preg_match('/^http/', $message->uri)) {
$messageurl = $message->uri;
}
common_element_start('p', 'time');
common_element('a', array('class' => 'permalink',
'href' => $messageurl,
'title' => common_exact_date($message->created)),
common_date_string($message->created));
if ($message->source) {
common_text(_(' from '));
$this->source_link($message->source);
}
common_element_end('p');
common_element_end('li');
}
} }

View File

@ -1,205 +1,393 @@
hunk ./lib/language.php 2 hunk ./lib/mailbox.php 2
-/* -/*
- * Laconica - a distributed open-source microblogging tool - * Laconica - a distributed open-source microblogging tool
- * Copyright (C) 2008, Controlez-Vous, Inc. - * Copyright (C) 2008, Controlez-Vous, Inc.
+/** +/**
+ * Laconica, the distributed open-source microblogging tool + * Laconica, the distributed open-source microblogging tool
hunk ./lib/language.php 5 hunk ./lib/mailbox.php 5
- * This program is free software: you can redistribute it and/or modify - * This program is free software: you can redistribute it and/or modify
+ * utility functions for i18n + * common superclass for direct messages inbox and outbox
+ * + *
+ * PHP version 5 + * PHP version 5
+ * + *
+ * LICENCE: This program is free software: you can redistribute it and/or modify + * LICENCE: This program is free software: you can redistribute it and/or modify
hunk ./lib/language.php 21 hunk ./lib/mailbox.php 21
+ * + *
+ * @category I18n + * @category Action
+ * @package Laconica + * @package Laconica
+ * @author Matthew Gregg <matthew.gregg@gmail.com> + * @author Evan Prodromou <evan@controlyourself.ca>
+ * @author Ciaran Gultnieks <ciaran@ciarang.com> + * @copyright 2008 Control Yourself, Inc.
+ * @author Evan Prodromou <evan@controlyourself.ca> + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
+ * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://laconi.ca/
+ * @link http://laconi.ca/ hunk ./lib/mailbox.php 30
hunk ./lib/language.php 31
-if (!defined('LACONICA')) { exit(1); } -if (!defined('LACONICA')) { exit(1); }
+if (!defined('LACONICA')) { +if (!defined('LACONICA')) {
+ exit(1); + exit(1);
+} +}
hunk ./lib/language.php 35 hunk ./lib/mailbox.php 34
-require_once(INSTALLDIR.'/lib/personal.php');
+require_once INSTALLDIR.'/lib/personal.php';
hunk ./lib/mailbox.php 38
-class MailboxAction extends PersonalAction {
-
- function handle($args) {
+/** +/**
+ * Content negotiation for language codes + * common superclass for direct messages inbox and outbox
+ * + *
+ * @param string $httplang HTTP Accept-Language header + * @category Action
+ * + * @package Laconica
+ * @return string language code for best language match + * @author Evan Prodromou <evan@controlyourself.ca>
+ * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
+ * @link http://laconi.ca/
+ * @see InboxAction
+ * @see OutboxAction
+ */ + */
hunk ./lib/language.php 43 +
+function client_prefered_language($httplang) +class MailboxAction extends PersonalAction
+{ +{
+ $client_langs = array(); + /**
hunk ./lib/language.php 47 + * output page based on arguments
-function client_prefered_language($httplang) { + *
- $client_langs = array(); + * @param array $args HTTP arguments (from $_REQUEST)
- $all_languages = common_config('site','languages'); + *
+ $all_languages = common_config('site', 'languages'); + * @return void
hunk ./lib/language.php 49 + */
- preg_match_all('"(((\S\S)-?(\S\S)?)(;q=([0-9.]+))?)\s*(,\s*|$)"',strtolower($httplang),$httplang); +
- for ($i = 0; $i < count($httplang); $i++) { + function handle($args)
- if(!empty($httplang[2][$i])) { + {
- #if no q default to 1.0 + parent::handle($args);
- $client_langs[$httplang[2][$i]] = ($httplang[6][$i]? (float) $httplang[6][$i] : 1.0); +
- } + $nickname = common_canonical_nickname($this->arg('nickname'));
- if(!empty($httplang[3][$i]) && empty($client_langs[$httplang[3][$i]])) { +
- #if a catchall default 0.01 lower + $user = User::staticGet('nickname', $nickname);
- $client_langs[$httplang[3][$i]] = ($httplang[6][$i]? (float) $httplang[6][$i]-0.01 : 0.99); +
- } + if (!$user) {
- } + $this->client_error(_('No such user.'), 404);
- #sort in decending q + return;
- arsort($client_langs);
+ preg_match_all('"(((\S\S)-?(\S\S)?)(;q=([0-9.]+))?)\s*(,\s*|$)"',
+ strtolower($httplang), $httplang);
hunk ./lib/language.php 52
- foreach ($client_langs as $lang => $q) {
- if (isset($all_languages[$lang])) {
- return($all_languages[$lang]['lang']);
- }
- }
- return FALSE;
-}
+ for ($i = 0; $i < count($httplang); $i++) {
+ if (!empty($httplang[2][$i])) {
+ // if no q default to 1.0
+ $client_langs[$httplang[2][$i]] =
+ ($httplang[6][$i]? (float) $httplang[6][$i] : 1.0);
+ } + }
+ if (!empty($httplang[3][$i]) && empty($client_langs[$httplang[3][$i]])) { +
+ // if a catchall default 0.01 lower + $cur = common_current_user();
+ $client_langs[$httplang[3][$i]] = +
+ ($httplang[6][$i]? (float) $httplang[6][$i]-0.01 : 0.99); + if (!$cur || $cur->id != $user->id) {
+ $this->client_error(_('Only the user can read their own mailboxes.'),
+ 403);
+ return;
+ }
+
+ $profile = $user->getProfile();
+
+ if (!$profile) {
+ $this->server_error(_('User has no profile.'));
+ return;
+ }
+
+ $page = $this->trimmed('page');
+
+ if (!$page) {
+ $page = 1;
+ }
+
+ $this->show_page($user, $page);
+ }
+
+ /**
+ * returns the title of the page
+ *
+ * @param User $user current user
+ * @param int $page current page
+ *
+ * @return string localised title of the page
+ */
+
+ function get_title($user, $page)
+ {
+ return '';
+ }
+
+ /**
+ * instructions for using this page
+ *
+ * @return string localised instructions for using the page
+ */
+
+ function get_instructions()
+ {
+ return '';
+ }
+
+ /**
+ * do structured output for the "instructions" are of the page
+ *
+ * @return void
+ */
+
+ function show_top()
+ {
+ $cur = common_current_user();
+
+ common_message_form(null, $cur, null);
+
+ $this->views_menu();
+ }
+
+ /**
+ * show a full page of output
+ *
+ * @param User $user The current user
+ * @param int $page The page the user is on
+ *
+ * @return void
+ */
+
+ function show_page($user, $page)
+ {
+ common_show_header($this->get_title($user, $page),
+ null, null,
+ array($this, 'show_top'));
+
+ $this->show_box($user, $page);
+
+ common_show_footer();
+ }
+
+ /**
+ * show the messages for a mailbox in list format
+ *
+ * Includes the pagination links (before, after).
+ *
+ * @param User $user The current user
+ * @param int $page The page the user is on
+ *
+ * @return void
+ */
+
+ function show_box($user, $page)
+ {
+ $message = $this->get_messages($user, $page);
+
+ if ($message) {
+
+ $cnt = 0;
+ common_element_start('ul', array('id' => 'messages'));
+
+ while ($message->fetch() && $cnt <= MESSAGES_PER_PAGE) {
+ $cnt++;
hunk ./lib/mailbox.php 180
- parent::handle($args);
+ if ($cnt > MESSAGES_PER_PAGE) {
+ break;
+ }
hunk ./lib/mailbox.php 184
- $nickname = common_canonical_nickname($this->arg('nickname'));
- $user = User::staticGet('nickname', $nickname);
+ $this->show_message($message);
+ }
hunk ./lib/mailbox.php 187
- if (!$user) {
- $this->client_error(_('No such user.'), 404);
- return;
- }
+ common_element_end('ul');
hunk ./lib/mailbox.php 189
- $cur = common_current_user();
-
- if (!$cur || $cur->id != $user->id) {
- $this->client_error(_('Only the user can read their own mailboxes.'), 403);
- return;
- }
-
- $profile = $user->getProfile();
+ common_pagination($page > 1, $cnt > MESSAGES_PER_PAGE,
+ $page, $this->trimmed('action'),
+ array('nickname' => $user->nickname));
hunk ./lib/mailbox.php 193
- if (!$profile) {
- $this->server_error(_('User has no profile.'));
- return;
- }
+ $message->free();
+ unset($message);
+ } + }
+ } + }
+ // sort in decending q hunk ./lib/mailbox.php 198
+ arsort($client_langs); - $page = $this->trimmed('page');
hunk ./lib/language.php 67 -
-function get_nice_language_list() { - if (!$page) {
- $nice_lang = array(); - $page = 1;
- $all_languages = common_config('site','languages'); - }
- foreach ($all_languages as $lang) { -
- $nice_lang = $nice_lang + array($lang['lang'] => $lang['name']); - $this->show_page($user, $page);
+ foreach ($client_langs as $lang => $q) { - }
+ if (isset($all_languages[$lang])) { + /**
+ return($all_languages[$lang]['lang']); + * returns the profile we want to show with the message
hunk ./lib/language.php 71 + *
- return $nice_lang; + * For inboxes, we show the sender; for outboxes, the recipient.
+ *
+ * @param Message $message The message to get the profile for
+ *
+ * @return Profile The profile that matches the message
+ */
hunk ./lib/mailbox.php 208
- function get_title($user, $page) {
- return '';
- }
+ function get_message_profile($message)
+ {
+ return null;
+ } + }
+ return false; hunk ./lib/mailbox.php 213
hunk ./lib/language.php 75 - function get_instructions() {
-// Get a list of all languages that are enabled in the default config. This - return '';
-// should ONLY be called when setting up the default config in common.php. - }
-// Any other attempt to get a list of lanugages should instead call + /**
-// common_config('site','languages') + * show a single message in the list format
-function get_all_languages() { + *
- return array( + * @param Message $message the message to show
- 'en-us' => array('q' => 1, 'lang' => 'en_US', 'name' => 'English (US)', 'direction' => 'ltr'), + *
- 'en-nz' => array('q' => 1, 'lang' => 'en_NZ', 'name' => 'English (NZ)', 'direction' => 'ltr'), + * @return void
- 'en-gb' => array('q' => 1, 'lang' => 'en_GB', 'name' => 'English (British)', 'direction' => 'ltr'), + */
- 'en' => array('q' => 1, 'lang' => 'en', 'name' => 'English', 'direction' => 'ltr'), hunk ./lib/mailbox.php 221
- 'da' => array('q' => 0.1, 'lang' => 'da_DK', 'name' => 'Danish', 'direction' => 'ltr'), - function show_top() {
- 'nl' => array('q' => 1, 'lang' => 'nl_NL', 'name' => 'Dutch', 'direction' => 'ltr'), + function show_message($message)
- 'eo' => array('q' => 0.1, 'lang' => 'eo', 'name' => 'Esperanto', 'direction' => 'ltr'), + {
- 'fr-fr' => array('q' => 0.9, 'lang' => 'fr_FR', 'name' => 'French', 'direction' => 'ltr'), + common_element_start('li', array('class' => 'message_single',
- 'de' => array('q' => 1, 'lang' => 'de_DE', 'name' => 'German', 'direction' => 'ltr'), + 'id' => 'message-' . $message->id));
- 'it' => array('q' => 1, 'lang' => 'it_IT', 'name' => 'Italian', 'direction' => 'ltr'), hunk ./lib/mailbox.php 226
- 'ko' => array('q' => 0.1, 'lang' => 'ko', 'name' => 'Korean', 'direction' => 'ltr'), - $cur = common_current_user();
- 'nb' => array('q' => 1, 'lang' => 'nb_NO', 'name' => 'Norwegian (bokmal)', 'direction' => 'ltr'), -
- 'pt' => array('q' => 0.2, 'lang' => 'pt', 'name' => 'Portuguese', 'direction' => 'ltr'), - common_message_form(NULL, $cur, NULL);
- 'pt-br' => array('q' => 1, 'lang' => 'pt_BR', 'name' => 'Portuguese Brazil', 'direction' => 'ltr'), -
-# 'ru' => array('q' => 0.1, 'lang' => 'ru_RU', 'name' => 'Russian', 'direction' => 'ltr'), - $this->views_menu();
- 'es' => array('q' => 1, 'lang' => 'es', 'name' => 'Spanish', 'direction' => 'ltr'), - }
- 'tr' => array('q' => 1, 'lang' => 'tr_TR', 'name' => 'Turkish', 'direction' => 'ltr'), -
- 'uk' => array('q' => 1, 'lang' => 'uk_UA', 'name' => 'Ukrainian', 'direction' => 'ltr'), - function show_page($user, $page) {
-# 'lt' => array('q' => 0.1, 'lang' => 'lt_LT', 'name' => 'Lithuanian', 'direction' => 'ltr'), + $profile = $this->get_message_profile($message);
-# 'sv' => array('q' => 1, 'lang' => 'sv_SE', 'name' => 'Swedish', 'direction' => 'ltr'), hunk ./lib/mailbox.php 228
- 'pl' => array('q' => 1, 'lang' => 'pl_PL', 'name' => 'Polish', 'direction' => 'ltr'), - common_show_header($this->get_title($user, $page),
- 'mk' => array('q' => 1, 'lang' => 'mk_MK', 'name' => 'Macedonian', 'direction' => 'ltr'), - NULL, NULL,
- 'jp' => array('q' => 0.1, 'lang' => 'ja_JP', 'name' => 'Japanese', 'direction' => 'ltr'), - array($this, 'show_top'));
- 'cs' => array('q' => 1, 'lang' => 'cs_CZ', 'name' => 'Czech', 'direction' => 'ltr'), -
- 'ca' => array('q' => 1, 'lang' => 'ca_ES', 'name' => 'Catalan', 'direction' => 'ltr'), - $this->show_box($user, $page);
-# 'hr' => array('q' => 0.1, 'lang' => 'he_IL', 'name' => 'Hebrew', 'direction' => 'ltr') -
- ); - common_show_footer();
+/** - }
+ * returns a simple code -> name mapping for languages -
+ * - function show_box($user, $page) {
+ * @return array map of available languages by code to language name. -
+ */ - $message = $this->get_messages($user, $page);
+ -
+function get_nice_language_list() - if ($message) {
+{ -
+ $nice_lang = array(); - $cnt = 0;
+ - common_element_start('ul', array('id' => 'messages'));
+ $all_languages = common_config('site', 'languages'); -
+ - while ($message->fetch() && $cnt <= MESSAGES_PER_PAGE) {
+ foreach ($all_languages as $lang) { - $cnt++;
+ $nice_lang = $nice_lang + array($lang['lang'] => $lang['name']); -
- if ($cnt > MESSAGES_PER_PAGE) {
- break;
- }
-
- $this->show_message($message);
- }
+ $avatar = $profile->getAvatar(AVATAR_STREAM_SIZE);
+ common_element_start('a', array('href' => $profile->profileurl));
+ common_element('img', array('src' => ($avatar) ?
+ common_avatar_display_url($avatar) :
+ common_default_avatar(AVATAR_STREAM_SIZE),
+ 'class' => 'avatar stream',
+ 'width' => AVATAR_STREAM_SIZE,
+ 'height' => AVATAR_STREAM_SIZE,
+ 'alt' =>
+ ($profile->fullname) ? $profile->fullname :
+ $profile->nickname));
+ common_element_end('a');
+ common_element('a', array('href' => $profile->profileurl,
+ 'class' => 'nickname'),
+ $profile->nickname);
+ // FIXME: URL, image, video, audio
+ common_element_start('p', array('class' => 'content'));
+ common_raw($message->rendered);
+ common_element_end('p');
hunk ./lib/mailbox.php 248
- common_element_end('ul');
-
- common_pagination($page > 1, $cnt > MESSAGES_PER_PAGE,
- $page, $this->trimmed('action'),
- array('nickname' => $user->nickname));
-
- $message->free();
- unset($message);
- }
- }
+ $messageurl = common_local_url('showmessage',
+ array('message' => $message->id));
hunk ./lib/mailbox.php 251
- # returns the profile we want to show with the message
-
- function get_message_profile($message) {
- return NULL;
- }
-
- function show_message($message) {
+ // XXX: we need to figure this out better. Is this right?
+ if (strcmp($message->uri, $messageurl) != 0 &&
+ preg_match('/^http/', $message->uri)) {
+ $messageurl = $message->uri;
+ }
+ common_element_start('p', 'time');
+ common_element('a', array('class' => 'permalink',
+ 'href' => $messageurl,
+ 'title' => common_exact_date($message->created)),
+ common_date_string($message->created));
+ if ($message->source) {
+ common_text(_(' from '));
+ $this->source_link($message->source);
+ }
hunk ./lib/mailbox.php 266
- common_element_start('li', array('class' => 'message_single',
- 'id' => 'message-' . $message->id));
+ common_element_end('p');
hunk ./lib/mailbox.php 268
- $profile = $this->get_message_profile($message);
-
- $avatar = $profile->getAvatar(AVATAR_STREAM_SIZE);
- common_element_start('a', array('href' => $profile->profileurl));
- common_element('img', array('src' => ($avatar) ? common_avatar_display_url($avatar) : common_default_avatar(AVATAR_STREAM_SIZE),
- 'class' => 'avatar stream',
- 'width' => AVATAR_STREAM_SIZE,
- 'height' => AVATAR_STREAM_SIZE,
- 'alt' =>
- ($profile->fullname) ? $profile->fullname :
- $profile->nickname));
- common_element_end('a');
- common_element('a', array('href' => $profile->profileurl,
- 'class' => 'nickname'),
- $profile->nickname);
- # FIXME: URL, image, video, audio
- common_element_start('p', array('class' => 'content'));
- common_raw($message->rendered);
- common_element_end('p');
-
- $messageurl = common_local_url('showmessage', array('message' => $message->id));
-
- # XXX: we need to figure this out better. Is this right?
- if (strcmp($message->uri, $messageurl) != 0 && preg_match('/^http/', $message->uri)) {
- $messageurl = $message->uri;
- }
- common_element_start('p', 'time');
- common_element('a', array('class' => 'permalink',
- 'href' => $messageurl,
- 'title' => common_exact_date($message->created)),
- common_date_string($message->created));
- if ($message->source) {
- common_text(_(' from '));
- $this->source_link($message->source);
- }
-
- common_element_end('p');
-
- common_element_end('li');
- }
+ common_element_end('li');
+ } + }
+ return $nice_lang;
+}
+
+/**
+ * Get a list of all languages that are enabled in the default config
+ *
+ * This should ONLY be called when setting up the default config in common.php.
+ * Any other attempt to get a list of lanugages should instead call
+ * common_config('site','languages')
+ *
+ * @return array mapping of language codes to language info
+ */
+
+function get_all_languages()
+{
+ return
+ array('en-us' => array('q' => 1, 'lang' => 'en_US',
+ 'name' => 'English (US)', 'direction' => 'ltr'),
+ 'en-nz' => array('q' => 1, 'lang' => 'en_NZ',
+ 'name' => 'English (NZ)', 'direction' => 'ltr'),
+ 'en-gb' => array('q' => 1, 'lang' => 'en_GB',
+ 'name' => 'English (British)', 'direction' => 'ltr'),
+ 'en' => array('q' => 1, 'lang' => 'en',
+ 'name' => 'English', 'direction' => 'ltr'),
+ 'da' => array('q' => 0.1, 'lang' => 'da_DK',
+ 'name' => 'Danish', 'direction' => 'ltr'),
+ 'nl' => array('q' => 1, 'lang' => 'nl_NL',
+ 'name' => 'Dutch', 'direction' => 'ltr'),
+ 'eo' => array('q' => 0.1, 'lang' => 'eo',
+ 'name' => 'Esperanto', 'direction' => 'ltr'),
+ 'fr-fr' => array('q' => 0.9, 'lang' => 'fr_FR',
+ 'name' => 'French', 'direction' => 'ltr'),
+ 'de' => array('q' => 1, 'lang' => 'de_DE',
+ 'name' => 'German', 'direction' => 'ltr'),
+ 'it' => array('q' => 1, 'lang' => 'it_IT',
+ 'name' => 'Italian', 'direction' => 'ltr'),
+ 'ko' => array('q' => 0.1, 'lang' => 'ko',
+ 'name' => 'Korean', 'direction' => 'ltr'),
+ 'nb' => array('q' => 1, 'lang' => 'nb_NO',
+ 'name' => 'Norwegian (bokmal)', 'direction' => 'ltr'),
+ 'pt' => array('q' => 0.2, 'lang' => 'pt',
+ 'name' => 'Portuguese', 'direction' => 'ltr'),
+ 'pt-br' => array('q' => 1, 'lang' => 'pt_BR',
+ 'name' => 'Portuguese Brazil', 'direction' => 'ltr'),
+ 'es' => array('q' => 1, 'lang' => 'es',
+ 'name' => 'Spanish', 'direction' => 'ltr'),
+ 'tr' => array('q' => 1, 'lang' => 'tr_TR',
+ 'name' => 'Turkish', 'direction' => 'ltr'),
+ 'uk' => array('q' => 1, 'lang' => 'uk_UA',
+ 'name' => 'Ukrainian', 'direction' => 'ltr'),
+ 'pl' => array('q' => 1, 'lang' => 'pl_PL',
+ 'name' => 'Polish', 'direction' => 'ltr'),
+ 'mk' => array('q' => 1, 'lang' => 'mk_MK',
+ 'name' => 'Macedonian', 'direction' => 'ltr'),
+ 'jp' => array('q' => 0.1, 'lang' => 'ja_JP',
+ 'name' => 'Japanese', 'direction' => 'ltr'),
+ 'cs' => array('q' => 1, 'lang' => 'cs_CZ',
+ 'name' => 'Czech', 'direction' => 'ltr'),
+ 'ca' => array('q' => 1, 'lang' => 'ca_ES',
+ 'name' => 'Catalan', 'direction' => 'ltr'),
+ );

View File

@ -1,9 +1,12 @@
<?php <?php
/* /**
* Laconica - a distributed open-source microblogging tool * Laconica, the distributed open-source microblogging tool
* Copyright (C) 2008, Controlez-Vous, Inc.
* *
* This program is free software: you can redistribute it and/or modify * common superclass for direct messages inbox and outbox
*
* PHP version 5
*
* LICENCE: This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by * it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or * the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version. * (at your option) any later version.
@ -15,158 +18,253 @@
* *
* You should have received a copy of the GNU Affero General Public License * You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @category Action
* @package Laconica
* @author Evan Prodromou <evan@controlyourself.ca>
* @copyright 2008 Control Yourself, Inc.
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://laconi.ca/
*/ */
if (!defined('LACONICA')) { exit(1); } if (!defined('LACONICA')) {
exit(1);
}
require_once(INSTALLDIR.'/lib/personal.php'); require_once INSTALLDIR.'/lib/personal.php';
define('MESSAGES_PER_PAGE', 20); define('MESSAGES_PER_PAGE', 20);
class MailboxAction extends PersonalAction { /**
* common superclass for direct messages inbox and outbox
function handle($args) { *
* @category Action
* @package Laconica
* @author Evan Prodromou <evan@controlyourself.ca>
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://laconi.ca/
* @see InboxAction
* @see OutboxAction
*/
parent::handle($args); class MailboxAction extends PersonalAction
{
/**
* output page based on arguments
*
* @param array $args HTTP arguments (from $_REQUEST)
*
* @return void
*/
$nickname = common_canonical_nickname($this->arg('nickname')); function handle($args)
$user = User::staticGet('nickname', $nickname); {
parent::handle($args);
if (!$user) { $nickname = common_canonical_nickname($this->arg('nickname'));
$this->client_error(_('No such user.'), 404);
return;
}
$cur = common_current_user(); $user = User::staticGet('nickname', $nickname);
if (!$cur || $cur->id != $user->id) {
$this->client_error(_('Only the user can read their own mailboxes.'), 403);
return;
}
$profile = $user->getProfile();
if (!$profile) { if (!$user) {
$this->server_error(_('User has no profile.')); $this->client_error(_('No such user.'), 404);
return; return;
} }
$page = $this->trimmed('page'); $cur = common_current_user();
if (!$page) {
$page = 1;
}
$this->show_page($user, $page);
}
function get_title($user, $page) { if (!$cur || $cur->id != $user->id) {
return ''; $this->client_error(_('Only the user can read their own mailboxes.'),
} 403);
return;
}
function get_instructions() { $profile = $user->getProfile();
return '';
}
function show_top() { if (!$profile) {
$this->server_error(_('User has no profile.'));
return;
}
$cur = common_current_user(); $page = $this->trimmed('page');
common_message_form(NULL, $cur, NULL);
$this->views_menu();
}
function show_page($user, $page) {
common_show_header($this->get_title($user, $page), if (!$page) {
NULL, NULL, $page = 1;
array($this, 'show_top')); }
$this->show_box($user, $page);
common_show_footer();
}
function show_box($user, $page) {
$message = $this->get_messages($user, $page);
if ($message) {
$cnt = 0;
common_element_start('ul', array('id' => 'messages'));
while ($message->fetch() && $cnt <= MESSAGES_PER_PAGE) {
$cnt++;
if ($cnt > MESSAGES_PER_PAGE) {
break;
}
$this->show_message($message);
}
common_element_end('ul'); $this->show_page($user, $page);
}
common_pagination($page > 1, $cnt > MESSAGES_PER_PAGE,
$page, $this->trimmed('action'),
array('nickname' => $user->nickname));
$message->free();
unset($message);
}
}
# returns the profile we want to show with the message /**
* returns the title of the page
function get_message_profile($message) { *
return NULL; * @param User $user current user
} * @param int $page current page
*
function show_message($message) { * @return string localised title of the page
*/
common_element_start('li', array('class' => 'message_single', function get_title($user, $page)
'id' => 'message-' . $message->id)); {
return '';
}
$profile = $this->get_message_profile($message); /**
* instructions for using this page
$avatar = $profile->getAvatar(AVATAR_STREAM_SIZE); *
common_element_start('a', array('href' => $profile->profileurl)); * @return string localised instructions for using the page
common_element('img', array('src' => ($avatar) ? common_avatar_display_url($avatar) : common_default_avatar(AVATAR_STREAM_SIZE), */
'class' => 'avatar stream',
'width' => AVATAR_STREAM_SIZE, function get_instructions()
'height' => AVATAR_STREAM_SIZE, {
'alt' => return '';
($profile->fullname) ? $profile->fullname : }
$profile->nickname));
common_element_end('a'); /**
common_element('a', array('href' => $profile->profileurl, * do structured output for the "instructions" are of the page
'class' => 'nickname'), *
$profile->nickname); * @return void
# FIXME: URL, image, video, audio */
common_element_start('p', array('class' => 'content'));
common_raw($message->rendered); function show_top()
common_element_end('p'); {
$cur = common_current_user();
$messageurl = common_local_url('showmessage', array('message' => $message->id));
common_message_form(null, $cur, null);
# XXX: we need to figure this out better. Is this right?
if (strcmp($message->uri, $messageurl) != 0 && preg_match('/^http/', $message->uri)) { $this->views_menu();
$messageurl = $message->uri; }
}
common_element_start('p', 'time'); /**
common_element('a', array('class' => 'permalink', * show a full page of output
'href' => $messageurl, *
'title' => common_exact_date($message->created)), * @param User $user The current user
common_date_string($message->created)); * @param int $page The page the user is on
if ($message->source) { *
common_text(_(' from ')); * @return void
$this->source_link($message->source); */
}
function show_page($user, $page)
common_element_end('p'); {
common_show_header($this->get_title($user, $page),
common_element_end('li'); null, null,
} array($this, 'show_top'));
$this->show_box($user, $page);
common_show_footer();
}
/**
* show the messages for a mailbox in list format
*
* Includes the pagination links (before, after).
*
* @param User $user The current user
* @param int $page The page the user is on
*
* @return void
*/
function show_box($user, $page)
{
$message = $this->get_messages($user, $page);
if ($message) {
$cnt = 0;
common_element_start('ul', array('id' => 'messages'));
while ($message->fetch() && $cnt <= MESSAGES_PER_PAGE) {
$cnt++;
if ($cnt > MESSAGES_PER_PAGE) {
break;
}
$this->show_message($message);
}
common_element_end('ul');
common_pagination($page > 1, $cnt > MESSAGES_PER_PAGE,
$page, $this->trimmed('action'),
array('nickname' => $user->nickname));
$message->free();
unset($message);
}
}
/**
* returns the profile we want to show with the message
*
* For inboxes, we show the sender; for outboxes, the recipient.
*
* @param Message $message The message to get the profile for
*
* @return Profile The profile that matches the message
*/
function get_message_profile($message)
{
return null;
}
/**
* show a single message in the list format
*
* @param Message $message the message to show
*
* @return void
*/
function show_message($message)
{
common_element_start('li', array('class' => 'message_single',
'id' => 'message-' . $message->id));
$profile = $this->get_message_profile($message);
$avatar = $profile->getAvatar(AVATAR_STREAM_SIZE);
common_element_start('a', array('href' => $profile->profileurl));
common_element('img', array('src' => ($avatar) ?
common_avatar_display_url($avatar) :
common_default_avatar(AVATAR_STREAM_SIZE),
'class' => 'avatar stream',
'width' => AVATAR_STREAM_SIZE,
'height' => AVATAR_STREAM_SIZE,
'alt' =>
($profile->fullname) ? $profile->fullname :
$profile->nickname));
common_element_end('a');
common_element('a', array('href' => $profile->profileurl,
'class' => 'nickname'),
$profile->nickname);
// FIXME: URL, image, video, audio
common_element_start('p', array('class' => 'content'));
common_raw($message->rendered);
common_element_end('p');
$messageurl = common_local_url('showmessage',
array('message' => $message->id));
// XXX: we need to figure this out better. Is this right?
if (strcmp($message->uri, $messageurl) != 0 &&
preg_match('/^http/', $message->uri)) {
$messageurl = $message->uri;
}
common_element_start('p', 'time');
common_element('a', array('class' => 'permalink',
'href' => $messageurl,
'title' => common_exact_date($message->created)),
common_date_string($message->created));
if ($message->source) {
common_text(_(' from '));
$this->source_link($message->source);
}
common_element_end('p');
common_element_end('li');
}
} }