forked from GNUsocial/gnu-social
Converted ShowmessageAction to work with new uiredesign
This commit is contained in:
parent
624ca93c9d
commit
61850ceb55
@ -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
|
* Show a single message
|
||||||
|
*
|
||||||
|
* 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,94 +18,162 @@
|
|||||||
*
|
*
|
||||||
* 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 Personal
|
||||||
|
* @package Laconica
|
||||||
|
* @author Evan Prodromou <evan@controlyourself.ca>
|
||||||
|
* @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');
|
/**
|
||||||
|
* Show a single message
|
||||||
|
*
|
||||||
|
* // XXX: It is totally weird how this works!
|
||||||
|
*
|
||||||
|
* @category Personal
|
||||||
|
* @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/
|
||||||
|
*/
|
||||||
|
|
||||||
class ShowmessageAction extends MailboxAction
|
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)
|
function handle($args)
|
||||||
{
|
{
|
||||||
|
|
||||||
Action::handle($args);
|
Action::handle($args);
|
||||||
|
|
||||||
$message = $this->get_message();
|
if ($this->user && ($this->user->id == $this->message->from_profile ||
|
||||||
|
$this->user->id == $this->message->to_profile)) {
|
||||||
if (!$message) {
|
$this->showPage();
|
||||||
$this->clientError(_('No such message.'), 404);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$cur = common_current_user();
|
|
||||||
|
|
||||||
if ($cur && ($cur->id == $message->from_profile || $cur->id == $message->to_profile)) {
|
|
||||||
$this->show_page($cur, 1);
|
|
||||||
} else {
|
} else {
|
||||||
$this->clientError(_('Only the sender and recipient may read this message.'), 403);
|
$this->clientError(_('Only the sender and recipient ' .
|
||||||
|
'may read this message.'), 403);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function get_message()
|
function title()
|
||||||
{
|
{
|
||||||
$id = $this->trimmed('message');
|
if ($this->user->id == $this->message->from_profile) {
|
||||||
$message = Message::staticGet('id', $id);
|
$to = $this->message->getTo();
|
||||||
return $message;
|
return sprintf(_("Message to %1\$s on %2\$s"),
|
||||||
}
|
|
||||||
|
|
||||||
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,
|
$to->nickname,
|
||||||
common_exact_date($message->created));
|
common_exact_date($this->message->created));
|
||||||
} else if ($user->id == $message->to_profile) {
|
} else if ($this->user->id == $this->message->to_profile) {
|
||||||
$from = $message->getFrom();
|
$from = $this->message->getFrom();
|
||||||
$title = sprintf(_("Message from %1\$s on %2\$s"),
|
return sprintf(_("Message from %1\$s on %2\$s"),
|
||||||
$from->nickname,
|
$from->nickname,
|
||||||
common_exact_date($message->created));
|
common_exact_date($this->message->created));
|
||||||
}
|
}
|
||||||
return $title;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function get_messages($user, $page)
|
function getMessages()
|
||||||
{
|
{
|
||||||
$message = new Message();
|
$message = new Message();
|
||||||
$message->id = $this->trimmed('message');
|
$message->id = $this->message->id;
|
||||||
$message->find();
|
$message->find();
|
||||||
return $message;
|
return $message;
|
||||||
}
|
}
|
||||||
|
|
||||||
function get_message_profile($message)
|
function getMessageProfile()
|
||||||
{
|
{
|
||||||
$user = common_current_user();
|
if ($this->user->id == $this->message->from_profile) {
|
||||||
if ($user->id == $message->from_profile) {
|
return $this->message->getTo();
|
||||||
return $message->getTo();
|
} else if ($this->user->id == $this->message->to_profile) {
|
||||||
} else if ($user->id == $message->to_profile) {
|
return $this->message->getFrom();
|
||||||
return $message->getFrom();
|
|
||||||
} else {
|
} else {
|
||||||
# This shouldn't happen
|
// This shouldn't happen
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function get_instructions()
|
/**
|
||||||
|
* 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 '';
|
return '';
|
||||||
}
|
}
|
||||||
|
}
|
||||||
function views_menu()
|
|
||||||
{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user