diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2008-09-17 13:47:41 -0400 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2008-09-17 13:47:41 -0400 |
commit | 130ba2888643992943780962dd4efcca3c595735 (patch) | |
tree | f1aa8a3b4157a6d61d636ae7f3060ed94d159a1c /actions/showmessage.php | |
parent | 7f8aaf46c8279c120c012d2b479e592bfa9611cf (diff) |
newmessage and showmessage
darcs-hash:20080917174741-5ed1f-c090055487bab0df52d25ad6550d3850ef5f7661.gz
Diffstat (limited to 'actions/showmessage.php')
-rw-r--r-- | actions/showmessage.php | 98 |
1 files changed, 98 insertions, 0 deletions
diff --git a/actions/showmessage.php b/actions/showmessage.php new file mode 100644 index 000000000..137d6adf9 --- /dev/null +++ b/actions/showmessage.php @@ -0,0 +1,98 @@ +<?php +/* + * Laconica - a distributed open-source microblogging tool + * Copyright (C) 2008, Controlez-Vous, Inc. + * + * 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 + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * 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/>. + */ + +if (!defined('LACONICA')) { exit(1); } + +require_once(INSTALLDIR.'/lib/mailbox.php'); + +class ShowmessageAction extends MailboxAction { + + function handle($args) { + + parent::handle($args); + + $id = $this->trimmed('id'); + + $message = Message::staticGet('id', $id); + + 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 ''; + } +} +
\ No newline at end of file |