X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fshowmessage.php;h=4fcaadbe833aa829661affdc44b8acb714174517;hb=b4e649fe906a793cd5e62d6390065ea5d41c40db;hp=a5e03c72dbea042e041513b33cf8cbe7fa50a8e2;hpb=eb2f9c98ac115ce67e9a740b200c832153ffa05c;p=quix0rs-gnu-social.git diff --git a/actions/showmessage.php b/actions/showmessage.php index a5e03c72db..4fcaadbe83 100644 --- a/actions/showmessage.php +++ b/actions/showmessage.php @@ -1,9 +1,12 @@ . + * + * @category Personal + * @package Laconica + * @author Evan Prodromou + * @copyright 2008-2009 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/mailbox.php'); +require_once INSTALLDIR.'/lib/mailbox.php'; -class ShowmessageAction extends MailboxAction { +/** + * Show a single message + * + * // XXX: It is totally weird how this works! + * + * @category Personal + * @package Laconica + * @author Evan Prodromou + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://laconi.ca/ + */ - function handle($args) { +class ShowmessageAction extends MailboxAction +{ + /** + * Message object to show + */ - Action::handle($args); + var $message = null; + + /** + * The current user + */ + + var $user = null; - $message = $this->get_message(); + /** + * Load attributes based on database arguments + * + * Loads all the DB stuff + * + * @param array $args $_REQUEST array + * + * @return success flag + */ - if (!$message) { - $this->client_error(_('No such message.'), 404); - return; - } + function prepare($args) + { + parent::prepare($args); - $cur = common_current_user(); + $this->page = 1; - if ($cur && ($cur->id == $message->from_profile || $cur->id == $message->to_profile)) { - $this->show_page($cur, 1); + $id = $this->trimmed('message'); + $this->message = Message::staticGet('id', $id); + + if (!$this->message) { + $this->clientError(_('No such message.'), 404); + return false; + } + + $this->user = common_current_user(); + + return true; + } + + function handle($args) + { + Action::handle($args); + + if ($this->user && ($this->user->id == $this->message->from_profile || + $this->user->id == $this->message->to_profile)) { + $this->showPage(); } else { - $this->client_error(_('Only the sender and recipient may read this message.'), 403); + $this->clientError(_('Only the sender and recipient ' . + 'may read this message.'), 403); return; } } - function get_message() { - $id = $this->trimmed('message'); - $message = Message::staticGet('id', $id); - return $message; - } - - function get_title($user, $page) { - $message = $this->get_message(); - if (!$message) { - return null; - } - - if ($user->id == $message->from_profile) { - $to = $message->getTo(); - $title = sprintf(_("Message to %1\$s on %2\$s"), + function title() + { + if ($this->user->id == $this->message->from_profile) { + $to = $this->message->getTo(); + return sprintf(_("Message to %1\$s on %2\$s"), $to->nickname, - common_exact_date($message->created)); - } else if ($user->id == $message->to_profile) { - $from = $message->getFrom(); - $title = sprintf(_("Message from %1\$s on %2\$s"), + common_exact_date($this->message->created)); + } else if ($this->user->id == $this->message->to_profile) { + $from = $this->message->getFrom(); + return sprintf(_("Message from %1\$s on %2\$s"), $from->nickname, - common_exact_date($message->created)); + common_exact_date($this->message->created)); } - return $title; } - - function get_messages($user, $page) { - $message = new Message(); - $message->id = $this->trimmed('message'); + + function getMessages() + { + $message = new Message(); + $message->id = $this->message->id; $message->find(); return $message; } - function get_message_profile($message) { - $user = common_current_user(); - if ($user->id == $message->from_profile) { - return $message->getTo(); - } else if ($user->id == $message->to_profile) { - return $message->getFrom(); + function getMessageProfile() + { + if ($this->user->id == $this->message->from_profile) { + return $this->message->getTo(); + } else if ($this->user->id == $this->message->to_profile) { + return $this->message->getFrom(); } else { - # This shouldn't happen + // This shouldn't happen return null; } } - function get_instructions() { - return ''; + /** + * Don't show local navigation + * + * @return void + */ + + function showLocalNavBlock() + { } - function views_menu() { - return; + /** + * Don't show page notice + * + * @return void + */ + + function showPageNoticeBlock() + { + } + + /** + * Don't show aside + * + * @return void + */ + + function showAside() + { + } + + /** + * Don't show any instructions + * + * @return string + */ + + function getInstructions() + { + return ''; + } + + function isReadOnly($args) + { + return true; } } - \ No newline at end of file