2008-09-17 18:47:41 +01:00
|
|
|
<?php
|
2009-01-21 01:49:47 +00:00
|
|
|
/**
|
2009-08-25 23:12:20 +01:00
|
|
|
* StatusNet, the distributed open-source microblogging tool
|
2008-09-17 18:47:41 +01:00
|
|
|
*
|
2009-01-26 12:46:04 +00:00
|
|
|
* Handler for posting new messages
|
2009-01-21 01:49:47 +00:00
|
|
|
*
|
|
|
|
* PHP version 5
|
|
|
|
*
|
|
|
|
* LICENCE: This program is free software: you can redistribute it and/or modify
|
2008-09-17 18:47:41 +01:00
|
|
|
* 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/>.
|
2009-01-21 01:49:47 +00:00
|
|
|
*
|
|
|
|
* @category Personal
|
2009-08-25 23:12:20 +01:00
|
|
|
* @package StatusNet
|
2009-08-25 23:19:04 +01:00
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @author Zach Copley <zach@status.net>
|
|
|
|
* @author Sarven Capadisli <csarven@status.net>
|
2009-08-25 23:12:20 +01:00
|
|
|
* @copyright 2008-2009 StatusNet, Inc.
|
2013-09-02 10:58:47 +01:00
|
|
|
* @copyright 2013 Free Software Foundation, Inc.
|
2009-01-21 01:49:47 +00:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
2009-08-25 23:16:46 +01:00
|
|
|
* @link http://status.net/
|
2008-09-17 18:47:41 +01:00
|
|
|
*/
|
2009-01-26 13:05:59 +00:00
|
|
|
|
2015-03-08 19:41:42 +00:00
|
|
|
if (!defined('GNUSOCIAL')) { exit(1); }
|
2008-09-17 18:47:41 +01:00
|
|
|
|
2009-01-21 01:49:47 +00:00
|
|
|
/**
|
|
|
|
* Action for posting new direct messages
|
|
|
|
*
|
|
|
|
* @category Personal
|
2009-08-25 23:12:20 +01:00
|
|
|
* @package StatusNet
|
2009-08-25 23:19:04 +01:00
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @author Zach Copley <zach@status.net>
|
|
|
|
* @author Sarven Capadisli <csarven@status.net>
|
2009-01-21 01:49:47 +00:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
2009-08-25 23:16:46 +01:00
|
|
|
* @link http://status.net/
|
2009-01-21 01:49:47 +00:00
|
|
|
*/
|
2008-09-17 18:47:41 +01:00
|
|
|
|
2013-09-02 09:59:02 +01:00
|
|
|
class NewmessageAction extends FormAction
|
2008-12-23 19:49:23 +00:00
|
|
|
{
|
2009-01-26 13:05:59 +00:00
|
|
|
var $content = null;
|
|
|
|
var $to = null;
|
|
|
|
var $other = null;
|
|
|
|
|
2015-03-08 19:41:42 +00:00
|
|
|
protected $form = 'Message'; // will become MessageForm later
|
2015-01-21 12:02:46 +00:00
|
|
|
|
2009-01-21 01:49:47 +00:00
|
|
|
/**
|
|
|
|
* Title of the page
|
|
|
|
*
|
2009-11-09 19:01:46 +00:00
|
|
|
* Note that this usually doesn't get called unless something went wrong
|
2009-01-21 01:49:47 +00:00
|
|
|
*
|
|
|
|
* @return string page title
|
|
|
|
*/
|
2009-01-26 13:05:59 +00:00
|
|
|
|
2009-01-21 01:49:47 +00:00
|
|
|
function title()
|
|
|
|
{
|
2011-03-04 23:12:38 +00:00
|
|
|
// TRANS: Page title for new direct message page.
|
2009-01-21 01:49:47 +00:00
|
|
|
return _('New message');
|
|
|
|
}
|
2009-01-26 13:05:59 +00:00
|
|
|
|
2015-03-08 19:41:42 +00:00
|
|
|
protected function doPreparation()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2009-01-26 13:05:59 +00:00
|
|
|
$this->content = $this->trimmed('content');
|
|
|
|
$this->to = $this->trimmed('to');
|
|
|
|
|
|
|
|
if ($this->to) {
|
|
|
|
|
2014-04-29 19:37:58 +01:00
|
|
|
$this->other = Profile::getKV('id', $this->to);
|
2009-01-26 13:05:59 +00:00
|
|
|
|
2014-04-29 19:37:58 +01:00
|
|
|
if (!$this->other instanceof Profile) {
|
2011-03-04 23:12:38 +00:00
|
|
|
// TRANS: Client error displayed trying to send a direct message to a non-existing user.
|
2009-11-08 22:10:44 +00:00
|
|
|
$this->clientError(_('No such user.'), 404);
|
2009-01-26 13:05:59 +00:00
|
|
|
}
|
|
|
|
|
2014-04-29 19:37:58 +01:00
|
|
|
if (!$this->other->isLocal()) {
|
|
|
|
// TRANS: Explains that current federation does not support direct, private messages yet.
|
|
|
|
$this->clientError(_('You cannot send direct messages to federated users yet.'));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$this->scoped->mutuallySubscribed($this->other)) {
|
2011-03-04 23:12:38 +00:00
|
|
|
// TRANS: Client error displayed trying to send a direct message to a user while sender and
|
|
|
|
// TRANS: receiver are not subscribed to each other.
|
|
|
|
$this->clientError(_('You cannot send a message to this user.'), 404);
|
2009-01-26 13:05:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-03-08 19:41:42 +00:00
|
|
|
protected function doPost()
|
2009-01-26 13:05:59 +00:00
|
|
|
{
|
2014-04-29 19:37:58 +01:00
|
|
|
assert($this->scoped instanceof Profile); // XXX: maybe an error instead...
|
2009-01-26 13:05:59 +00:00
|
|
|
|
2015-03-08 19:41:42 +00:00
|
|
|
if (empty($this->content)) {
|
2011-03-04 23:12:38 +00:00
|
|
|
// TRANS: Form validator error displayed trying to send a direct message without content.
|
2013-09-02 09:59:02 +01:00
|
|
|
$this->clientError(_('No content!'));
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
|
2015-03-08 19:41:42 +00:00
|
|
|
$content_shortened = $this->scoped->shortenLinks($this->content);
|
|
|
|
|
|
|
|
if (Message::contentTooLong($content_shortened)) {
|
|
|
|
// TRANS: Form validation error displayed when message content is too long.
|
|
|
|
// TRANS: %d is the maximum number of characters for a message.
|
|
|
|
$this->clientError(sprintf(_m('That\'s too long. Maximum message size is %d character.',
|
|
|
|
'That\'s too long. Maximum message size is %d characters.',
|
|
|
|
Message::maxContent()),
|
|
|
|
Message::maxContent()));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$this->other instanceof Profile) {
|
2011-03-04 23:12:38 +00:00
|
|
|
// TRANS: Form validation error displayed trying to send a direct message without specifying a recipient.
|
2013-09-02 09:59:02 +01:00
|
|
|
$this->clientError(_('No recipient specified.'));
|
2014-04-29 19:37:58 +01:00
|
|
|
} else if (!$this->scoped->mutuallySubscribed($this->other)) {
|
2011-03-04 23:12:38 +00:00
|
|
|
// TRANS: Client error displayed trying to send a direct message to a user while sender and
|
|
|
|
// TRANS: receiver are not subscribed to each other.
|
|
|
|
$this->clientError(_('You cannot send a message to this user.'), 404);
|
2013-09-09 19:45:20 +01:00
|
|
|
} else if ($this->scoped->id == $this->other->id) {
|
2011-03-04 23:12:38 +00:00
|
|
|
// TRANS: Client error displayed trying to send a direct message to self.
|
2011-06-17 10:20:19 +01:00
|
|
|
$this->clientError(_('Do not send a message to yourself; ' .
|
2009-01-21 01:49:47 +00:00
|
|
|
'just say it to yourself quietly instead.'), 403);
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2009-01-26 13:05:59 +00:00
|
|
|
|
2013-09-09 19:45:20 +01:00
|
|
|
$message = Message::saveNew($this->scoped->id, $this->other->id, $this->content, 'web');
|
2009-12-15 15:31:25 +00:00
|
|
|
$message->notify();
|
2008-12-23 19:19:07 +00:00
|
|
|
|
2015-03-08 19:41:42 +00:00
|
|
|
if (GNUsocial::isAjax()) {
|
|
|
|
// TRANS: Confirmation text after sending a direct message.
|
|
|
|
// TRANS: %s is the direct message recipient.
|
|
|
|
return sprintf(_('Direct message to %s sent.'), $this->other->getNickname());
|
2009-10-31 15:14:38 +00:00
|
|
|
}
|
2009-01-26 12:46:04 +00:00
|
|
|
|
2015-03-08 19:41:42 +00:00
|
|
|
$url = common_local_url('outbox', array('nickname' => $this->scoped->getNickname()));
|
|
|
|
common_redirect($url, 303);
|
2009-01-26 12:46:04 +00:00
|
|
|
}
|
2009-01-26 13:05:59 +00:00
|
|
|
|
|
|
|
function showNoticeForm()
|
|
|
|
{
|
2015-03-08 19:41:42 +00:00
|
|
|
// Just don't show a NoticeForm
|
2009-01-26 13:05:59 +00:00
|
|
|
}
|
2008-09-17 18:47:41 +01:00
|
|
|
}
|