X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fshowmessage.php;h=db757948baba6e64bbb731d9eeaa1530d819caaf;hb=385fb947236fcbf429a147be90569db9c7edc152;hp=c57c96aefdfc8ee178ff14507b8c77157c23c309;hpb=24496bafd2356240a1ac419bb568aeb8040ec699;p=quix0rs-gnu-social.git diff --git a/actions/showmessage.php b/actions/showmessage.php index c57c96aefd..db757948ba 100644 --- a/actions/showmessage.php +++ b/actions/showmessage.php @@ -1,9 +1,12 @@ . + * + * @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; + } -if (!defined('LACONICA')) { exit(1); } + $this->user = common_current_user(); -require_once(INSTALLDIR.'/lib/mailbox.php'); + return true; + } -class ShowmessageAction extends MailboxAction { + 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 handle($args) { + function showLocalNavBlock() + { + } + + /** + * Don't show page notice + * + * @return void + */ - Action::handle($args); + function showPageNoticeBlock() + { + } - $id = $this->trimmed('id'); + /** + * Don't show aside + * + * @return void + */ - $message = Message::staticGet('id', $id); + function showAside() + { + } + + /** + * Don't show any instructions + * + * @return string + */ + + function getInstructions() + { + return ''; + } - if (!$message) { - $this->client_error(_('No such message.'), 404); - return; - } - - $cur = common_current_user(); - - if (!$cur || - $cur->id != $message->from_profile && - $cur->id != $message->to_profile) - { - $this->client_error(_('Only the sender and recipient may read this message.'), 404); - return; - } - - $this->show_page($cur, 1); - } - - function get_message() { - $id = $this->trimmed('id'); - $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'), - $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'), - $from->nickname, - common_exact_date($message->created)); - } - return $title; - } - - function get_messages($user, $page) { - return $this->get_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(); - } else { - # This shouldn't happen - return NULL; - } - } - - function get_instructions() { - return ''; - } + function isReadOnly($args) + { + return true; + } } - \ No newline at end of file