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
|
|
|
|
2013-09-02 11:58:47 +02:00
|
|
|
if (!defined('STATUSNET')) {
|
2009-01-26 14:05:59 +01:00
|
|
|
exit(1);
|
2009-01-20 17:49:47 -08:00
|
|
|
}
|
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-01-21 13:02:46 +01:00
|
|
|
protected $form = 'message'; // will become MessageForm later
|
|
|
|
|
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
|
|
|
|
2009-01-20 17:49:47 -08:00
|
|
|
/**
|
|
|
|
* Handle input, produce output
|
|
|
|
*
|
|
|
|
* @param array $args $_REQUEST contents
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2009-01-26 14:05:59 +01:00
|
|
|
|
2013-10-29 10:26:46 +01:00
|
|
|
protected function prepare(array $args=array())
|
2008-12-23 14:33:23 -05:00
|
|
|
{
|
2013-09-02 10:59:02 +02:00
|
|
|
parent::prepare($args);
|
2008-12-23 14:19:07 -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;
|
|
|
|
}
|
|
|
|
|
2013-09-02 10:59:02 +02:00
|
|
|
protected function handlePost()
|
2009-01-26 14:05:59 +01:00
|
|
|
{
|
2013-09-02 10:59:02 +02:00
|
|
|
parent::handlePost();
|
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
|
|
|
|
|
|
|
if (!$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
|
|
|
} else {
|
2014-04-29 20:37:58 +02:00
|
|
|
$content_shortened = $this->scoped->shortenLinks($this->content);
|
2008-12-23 14:19:07 -05:00
|
|
|
|
2009-08-21 07:23:27 -04:00
|
|
|
if (Message::contentTooLong($content_shortened)) {
|
2010-10-21 13:20:21 +02:00
|
|
|
// TRANS: Form validation error displayed when message content is too long.
|
|
|
|
// TRANS: %d is the maximum number of characters for a message.
|
2013-09-02 10:59:02 +02:00
|
|
|
$this->clientError(sprintf(_m('That\'s too long. Maximum message size is %d character.',
|
2010-10-21 13:20:21 +02:00
|
|
|
'That\'s too long. Maximum message size is %d characters.',
|
|
|
|
Message::maxContent()),
|
2009-08-21 07:23:27 -04:00
|
|
|
Message::maxContent()));
|
2008-12-23 14:19:07 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-26 14:05:59 +01:00
|
|
|
if (!$this->other) {
|
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
|
|
|
|
2009-04-23 02:17:58 +00:00
|
|
|
if ($this->boolean('ajax')) {
|
|
|
|
$this->startHTML('text/xml;charset=utf-8');
|
|
|
|
$this->elementStart('head');
|
2011-03-05 00:12:38 +01:00
|
|
|
// TRANS: Page title after sending a direct message.
|
2009-04-23 02:17:58 +00:00
|
|
|
$this->element('title', null, _('Message sent'));
|
|
|
|
$this->elementEnd('head');
|
|
|
|
$this->elementStart('body');
|
|
|
|
$this->element('p', array('id' => 'command_result'),
|
2011-03-05 00:12:38 +01:00
|
|
|
// TRANS: Confirmation text after sending a direct message.
|
|
|
|
// TRANS: %s is the direct message recipient.
|
2010-01-10 12:26:24 +01:00
|
|
|
sprintf(_('Direct message to %s sent.'),
|
2009-04-23 02:17:58 +00:00
|
|
|
$this->other->nickname));
|
|
|
|
$this->elementEnd('body');
|
2013-09-24 02:32:17 +02:00
|
|
|
$this->endHTML();
|
2009-04-23 02:17:58 +00:00
|
|
|
} else {
|
|
|
|
$url = common_local_url('outbox',
|
2013-09-09 20:45:20 +02:00
|
|
|
array('nickname' => $this->scoped->nickname));
|
2009-04-23 02:17:58 +00:00
|
|
|
common_redirect($url, 303);
|
|
|
|
}
|
|
|
|
}
|
2008-12-23 14:19:07 -05:00
|
|
|
|
2009-04-23 02:17:58 +00:00
|
|
|
/**
|
|
|
|
* Show an Ajax-y error message
|
|
|
|
*
|
|
|
|
* Goes back to the browser, where it's shown in a popup.
|
|
|
|
*
|
|
|
|
* @param string $msg Message to show
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
|
|
|
|
function ajaxErrorMsg($msg)
|
|
|
|
{
|
|
|
|
$this->startHTML('text/xml;charset=utf-8', true);
|
|
|
|
$this->elementStart('head');
|
2011-03-05 00:12:38 +01:00
|
|
|
// TRANS: Page title after an AJAX error occurred on the "send direct message" page.
|
2009-04-23 02:17:58 +00:00
|
|
|
$this->element('title', null, _('Ajax Error'));
|
|
|
|
$this->elementEnd('head');
|
|
|
|
$this->elementStart('body');
|
|
|
|
$this->element('p', array('id' => 'error'), $msg);
|
|
|
|
$this->elementEnd('body');
|
2013-09-24 02:32:17 +02:00
|
|
|
$this->endHTML();
|
2008-12-23 14:19:07 -05:00
|
|
|
}
|
|
|
|
|
2009-01-20 17:49:47 -08:00
|
|
|
function showForm($msg = null)
|
2008-12-23 14:33:23 -05:00
|
|
|
{
|
2009-04-23 02:17:58 +00:00
|
|
|
if ($msg && $this->boolean('ajax')) {
|
|
|
|
$this->ajaxErrorMsg($msg);
|
|
|
|
return;
|
|
|
|
}
|
2009-01-26 14:05:59 +01:00
|
|
|
|
2009-04-23 02:17:58 +00:00
|
|
|
$this->msg = $msg;
|
2009-10-31 16:14:38 +01:00
|
|
|
if ($this->trimmed('ajax')) {
|
2013-09-24 01:17:04 +02:00
|
|
|
$this->startHTML('text/xml;charset=utf-8');
|
2009-10-31 16:14:38 +01:00
|
|
|
$this->elementStart('head');
|
2011-03-05 00:12:38 +01:00
|
|
|
// TRANS: Page title on page for sending a direct message.
|
2009-10-31 16:14:38 +01:00
|
|
|
$this->element('title', null, _('New message'));
|
|
|
|
$this->elementEnd('head');
|
|
|
|
$this->elementStart('body');
|
2009-11-01 10:42:28 +00:00
|
|
|
$this->showNoticeForm();
|
2009-10-31 16:14:38 +01:00
|
|
|
$this->elementEnd('body');
|
|
|
|
$this->endHTML();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$this->showPage();
|
|
|
|
}
|
2008-12-23 14:19:07 -05:00
|
|
|
}
|
2009-01-26 13:46:04 +01:00
|
|
|
|
2009-01-26 14:05:59 +01:00
|
|
|
function showPageNotice()
|
2009-01-26 13:46:04 +01:00
|
|
|
{
|
2009-01-26 14:05:59 +01:00
|
|
|
if ($this->msg) {
|
|
|
|
$this->element('p', 'error', $this->msg);
|
|
|
|
}
|
2009-01-26 13:46:04 +01:00
|
|
|
}
|
2009-01-26 14:05:59 +01:00
|
|
|
|
|
|
|
// Do nothing (override)
|
|
|
|
|
|
|
|
function showNoticeForm()
|
|
|
|
{
|
2009-02-09 15:35:38 +00:00
|
|
|
$message_form = new MessageForm($this, $this->other, $this->content);
|
2009-01-26 14:05:59 +01:00
|
|
|
$message_form->show();
|
|
|
|
}
|
2008-09-17 13:47:41 -04:00
|
|
|
}
|