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