2008-09-16 20:53:46 +01:00
|
|
|
<?php
|
2019-08-19 22:51:51 +01:00
|
|
|
// This file is part of GNU social - https://www.gnu.org/software/social
|
|
|
|
//
|
|
|
|
// GNU social 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.
|
|
|
|
//
|
|
|
|
// GNU social 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 GNU social. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2008-12-22 20:13:04 +00:00
|
|
|
/**
|
2019-08-19 22:51:51 +01:00
|
|
|
* GNUsocial implementation of Direct Messages
|
2008-12-22 20:13:04 +00:00
|
|
|
*
|
2019-08-19 22:51:51 +01:00
|
|
|
* @package GNUsocial
|
|
|
|
* @author Mikael Nordfeldth <mmn@hethane.se>
|
|
|
|
* @author Bruno Casteleiro <brunoccast@fc.up.pt>
|
|
|
|
* @copyright 2019 Free Software Foundation, Inc http://www.fsf.org
|
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
2008-12-22 20:13:04 +00:00
|
|
|
*/
|
|
|
|
|
2019-08-19 22:51:51 +01:00
|
|
|
defined('GNUSOCIAL') || die();
|
2008-12-22 20:13:04 +00:00
|
|
|
|
|
|
|
/**
|
2019-08-19 22:51:51 +01:00
|
|
|
* Action handler for the outbox
|
2008-12-22 20:13:04 +00:00
|
|
|
*
|
2019-08-19 22:51:51 +01:00
|
|
|
* @category Plugin
|
|
|
|
* @package GNUsocial
|
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @author Bruno Casteleiro <brunoccast@fc.up.pt>
|
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
2008-09-16 20:53:46 +01:00
|
|
|
*/
|
2008-12-22 20:13:04 +00:00
|
|
|
class OutboxAction extends MailboxAction
|
|
|
|
{
|
|
|
|
/**
|
2009-01-21 01:49:47 +00:00
|
|
|
* Title of the page
|
2008-12-22 20:13:04 +00:00
|
|
|
*
|
2009-01-21 01:49:47 +00:00
|
|
|
* @return string page title
|
2008-12-22 20:13:04 +00:00
|
|
|
*/
|
2019-08-19 22:51:51 +01:00
|
|
|
function title() : string
|
2008-12-22 20:13:04 +00:00
|
|
|
{
|
2009-01-21 01:49:47 +00:00
|
|
|
if ($this->page > 1) {
|
2011-02-16 23:39:53 +00:00
|
|
|
// TRANS: Title for outbox for any but the fist page.
|
|
|
|
// TRANS: %1$s is the user nickname, %2$d is the page number.
|
2019-08-19 22:51:51 +01:00
|
|
|
return sprintf(_m('Outbox for %1$s - page %2$d'),
|
|
|
|
$this->user->getNickname(), $page);
|
2008-12-22 20:13:04 +00:00
|
|
|
} else {
|
2011-02-16 23:39:53 +00:00
|
|
|
// TRANS: Title for first page of outbox.
|
2019-08-19 22:51:51 +01:00
|
|
|
return sprintf(_m('Outbox for %s'), $this->user->getNickname());
|
2008-12-22 20:13:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-08-19 22:51:51 +01:00
|
|
|
* Retrieve the messages for this user and this page.
|
2009-06-10 16:47:46 +01:00
|
|
|
*
|
2019-08-19 22:51:51 +01:00
|
|
|
* @return Notice data object with stream for messages
|
2008-12-22 20:13:04 +00:00
|
|
|
*/
|
2009-01-21 01:49:47 +00:00
|
|
|
function getMessages()
|
2008-12-22 20:13:04 +00:00
|
|
|
{
|
2019-08-19 22:51:51 +01:00
|
|
|
return MessageModel::outboxMessages($this->user, $this->page);
|
2008-12-22 20:13:04 +00:00
|
|
|
}
|
|
|
|
|
2019-08-19 22:51:51 +01:00
|
|
|
/**
|
|
|
|
* Retrieve outbox MessageList widget.
|
|
|
|
*/
|
2011-02-08 16:11:21 +00:00
|
|
|
function getMessageList($message)
|
2008-12-22 20:13:04 +00:00
|
|
|
{
|
2011-02-08 16:11:21 +00:00
|
|
|
return new OutboxMessageList($this, $message);
|
2008-12-22 20:13:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-08-19 22:51:51 +01:00
|
|
|
* Instructions for using this page.
|
2008-12-22 20:13:04 +00:00
|
|
|
*
|
|
|
|
* @return string localised instructions for using the page
|
|
|
|
*/
|
2019-08-19 22:51:51 +01:00
|
|
|
function getInstructions() : string
|
2008-12-22 20:13:04 +00:00
|
|
|
{
|
2011-02-16 23:39:53 +00:00
|
|
|
// TRANS: Instructions for outbox.
|
2019-08-19 22:51:51 +01:00
|
|
|
return _m('This is your outbox, which lists private messages you have sent.');
|
2008-12-22 20:13:04 +00:00
|
|
|
}
|
2008-09-16 20:53:46 +01:00
|
|
|
}
|
2011-02-08 16:11:21 +00:00
|
|
|
|
2019-08-19 22:51:51 +01:00
|
|
|
/**
|
|
|
|
* Outbox MessageList widget
|
|
|
|
*
|
|
|
|
* @category Plugin
|
|
|
|
* @package GNUsocial
|
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
|
|
|
*/
|
2011-02-08 16:11:21 +00:00
|
|
|
class OutboxMessageList extends MessageList
|
|
|
|
{
|
|
|
|
function newItem($message)
|
|
|
|
{
|
|
|
|
return new OutboxMessageListItem($this->out, $message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-19 22:51:51 +01:00
|
|
|
/**
|
|
|
|
* Outbox MessageListItem widget
|
|
|
|
*
|
|
|
|
* @category Plugin
|
|
|
|
* @package GNUsocial
|
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @author Bruno Casteleiro <brunoccast@fc.up.pt>
|
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
|
|
|
*/
|
2011-02-08 16:11:21 +00:00
|
|
|
class OutboxMessageListItem extends MessageListItem
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Returns the profile we want to show with the message
|
|
|
|
*
|
2019-08-19 22:51:51 +01:00
|
|
|
* Note that the plugin now handles sending for multiple profiles,
|
|
|
|
* but since the UI isn't changed yet, we still retrieve a single
|
|
|
|
* profile from this function (or null, if for blocking reasons
|
|
|
|
* there are no attentions stored).
|
|
|
|
*
|
|
|
|
* @return Profile|null
|
2011-02-08 16:11:21 +00:00
|
|
|
*/
|
2019-08-19 22:51:51 +01:00
|
|
|
function getMessageProfile() : ?Profile
|
2011-02-08 16:11:21 +00:00
|
|
|
{
|
2019-08-19 22:51:51 +01:00
|
|
|
$attentions = $this->message->getAttentionProfiles();
|
|
|
|
return empty($attentions) ? null : $attentions[0];
|
2011-02-08 16:11:21 +00:00
|
|
|
}
|
2011-02-16 23:39:53 +00:00
|
|
|
}
|