. * * @category Personal * @package StatusNet * @author Evan Prodromou * @copyright 2008-2009 StatusNet, Inc. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } require_once INSTALLDIR.'/lib/mailbox.php'; /** * Show a single message * * // XXX: It is totally weird how this works! * * @category Personal * @package StatusNet * @author Evan Prodromou * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ class ShowmessageAction extends MailboxAction { /** * Message object to show */ var $message = null; /** * The current user */ var $user = null; /** * Load attributes based on database arguments * * Loads all the DB stuff * * @param array $args $_REQUEST array * * @return success flag */ function prepare($args) { parent::prepare($args); $this->page = 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->clientError(_('Only the sender and recipient ' . 'may read this message.'), 403); return; } } 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($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($this->message->created)); } } function getMessages() { $message = new Message(); $message->id = $this->message->id; $message->find(); return $message; } 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 return null; } } /** * Don't show local navigation * * @return void */ function showLocalNavBlock() { } /** * 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; } }