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.
|
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
|
|
|
|
2009-08-26 15:41:36 +01:00
|
|
|
if (!defined('STATUSNET') && !defined('LACONICA')) {
|
2009-01-26 13:05:59 +00:00
|
|
|
exit(1);
|
2009-01-21 01:49:47 +00:00
|
|
|
}
|
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
|
|
|
|
2008-12-23 19:49:23 +00:00
|
|
|
class NewmessageAction extends Action
|
|
|
|
{
|
2009-01-26 13:05:59 +00:00
|
|
|
|
2009-01-21 01:49:47 +00:00
|
|
|
/**
|
|
|
|
* Error message, if any
|
|
|
|
*/
|
|
|
|
|
|
|
|
var $msg = null;
|
|
|
|
|
2009-01-26 13:05:59 +00:00
|
|
|
var $content = null;
|
|
|
|
var $to = null;
|
|
|
|
var $other = null;
|
|
|
|
|
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()
|
|
|
|
{
|
|
|
|
return _('New message');
|
|
|
|
}
|
2009-01-26 13:05:59 +00:00
|
|
|
|
2009-01-21 01:49:47 +00:00
|
|
|
/**
|
|
|
|
* Handle input, produce output
|
|
|
|
*
|
|
|
|
* @param array $args $_REQUEST contents
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2009-01-26 13:05:59 +00:00
|
|
|
|
2008-12-23 19:33:23 +00:00
|
|
|
function handle($args)
|
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
parent::handle($args);
|
|
|
|
|
|
|
|
if (!common_logged_in()) {
|
2009-01-15 23:03:38 +00:00
|
|
|
$this->clientError(_('Not logged in.'), 403);
|
2008-12-23 19:19:07 +00:00
|
|
|
} else if ($_SERVER['REQUEST_METHOD'] == 'POST') {
|
2009-01-21 01:49:47 +00:00
|
|
|
$this->saveNewMessage();
|
2008-12-23 19:19:07 +00:00
|
|
|
} else {
|
2009-01-21 01:49:47 +00:00
|
|
|
$this->showForm();
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-26 13:05:59 +00:00
|
|
|
function prepare($args)
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2009-01-26 13:05:59 +00:00
|
|
|
parent::prepare($args);
|
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$user = common_current_user();
|
|
|
|
|
2009-01-26 13:29:31 +00:00
|
|
|
if (!$user) {
|
2009-10-30 20:01:20 +00:00
|
|
|
/* Go log in, and then come back. */
|
|
|
|
common_set_returnto($_SERVER['REQUEST_URI']);
|
|
|
|
common_redirect(common_local_url('login'));
|
2009-01-26 13:29:31 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-01-26 13:05:59 +00:00
|
|
|
$this->content = $this->trimmed('content');
|
|
|
|
$this->to = $this->trimmed('to');
|
|
|
|
|
|
|
|
if ($this->to) {
|
|
|
|
|
|
|
|
$this->other = User::staticGet('id', $this->to);
|
|
|
|
|
|
|
|
if (!$this->other) {
|
2009-11-08 22:10:44 +00:00
|
|
|
$this->clientError(_('No such user.'), 404);
|
2009-01-26 13:05:59 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$user->mutuallySubscribed($this->other)) {
|
|
|
|
$this->clientError(_('You can\'t send a message to this user.'), 404);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
function saveNewMessage()
|
|
|
|
{
|
2009-01-21 01:49:47 +00:00
|
|
|
// CSRF protection
|
2009-01-26 13:05:59 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$token = $this->trimmed('token');
|
|
|
|
if (!$token || $token != common_session_token()) {
|
2009-01-21 01:49:47 +00:00
|
|
|
$this->showForm(_('There was a problem with your session token. ' .
|
|
|
|
'Try again, please.'));
|
2008-12-23 19:19:07 +00:00
|
|
|
return;
|
|
|
|
}
|
2009-01-26 13:05:59 +00:00
|
|
|
|
|
|
|
$user = common_current_user();
|
|
|
|
assert($user); // XXX: maybe an error instead...
|
|
|
|
|
|
|
|
if (!$this->content) {
|
2009-01-21 01:49:47 +00:00
|
|
|
$this->showForm(_('No content!'));
|
2008-12-23 19:19:07 +00:00
|
|
|
return;
|
|
|
|
} else {
|
2009-01-26 13:05:59 +00:00
|
|
|
$content_shortened = common_shorten_links($this->content);
|
2008-12-23 19:19:07 +00:00
|
|
|
|
2009-08-21 12:23:27 +01:00
|
|
|
if (Message::contentTooLong($content_shortened)) {
|
2010-10-21 12:20:21 +01:00
|
|
|
// TRANS: Form validation error displayed when message content is too long.
|
|
|
|
// TRANS: %d is the maximum number of characters for a message.
|
|
|
|
$this->showForm(sprintf(_m('That\'s too long. Maximum message size is %d character.',
|
|
|
|
'That\'s too long. Maximum message size is %d characters.',
|
|
|
|
Message::maxContent()),
|
2009-08-21 12:23:27 +01:00
|
|
|
Message::maxContent()));
|
2008-12-23 19:19:07 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-26 13:05:59 +00:00
|
|
|
if (!$this->other) {
|
2009-01-21 01:49:47 +00:00
|
|
|
$this->showForm(_('No recipient specified.'));
|
2008-12-23 19:19:07 +00:00
|
|
|
return;
|
2009-01-26 13:05:59 +00:00
|
|
|
} else if (!$user->mutuallySubscribed($this->other)) {
|
2009-01-15 23:03:38 +00:00
|
|
|
$this->clientError(_('You can\'t send a message to this user.'), 404);
|
2008-12-23 19:19:07 +00:00
|
|
|
return;
|
2009-01-26 13:05:59 +00:00
|
|
|
} else if ($user->id == $this->other->id) {
|
2009-01-21 01:49:47 +00:00
|
|
|
$this->clientError(_('Don\'t send a message to yourself; ' .
|
|
|
|
'just say it to yourself quietly instead.'), 403);
|
2008-12-23 19:19:07 +00:00
|
|
|
return;
|
|
|
|
}
|
2009-01-26 13:05:59 +00:00
|
|
|
|
|
|
|
$message = Message::saveNew($user->id, $this->other->id, $this->content, 'web');
|
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if (is_string($message)) {
|
2009-01-21 01:49:47 +00:00
|
|
|
$this->showForm($message);
|
2008-12-23 19:19:07 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-12-15 15:31:25 +00:00
|
|
|
$message->notify();
|
2008-12-23 19:19:07 +00:00
|
|
|
|
2009-04-23 03:17:58 +01:00
|
|
|
if ($this->boolean('ajax')) {
|
|
|
|
$this->startHTML('text/xml;charset=utf-8');
|
|
|
|
$this->elementStart('head');
|
|
|
|
$this->element('title', null, _('Message sent'));
|
|
|
|
$this->elementEnd('head');
|
|
|
|
$this->elementStart('body');
|
|
|
|
$this->element('p', array('id' => 'command_result'),
|
2010-01-10 11:26:24 +00:00
|
|
|
sprintf(_('Direct message to %s sent.'),
|
2009-04-23 03:17:58 +01:00
|
|
|
$this->other->nickname));
|
|
|
|
$this->elementEnd('body');
|
|
|
|
$this->elementEnd('html');
|
|
|
|
} else {
|
|
|
|
$url = common_local_url('outbox',
|
|
|
|
array('nickname' => $user->nickname));
|
|
|
|
common_redirect($url, 303);
|
|
|
|
}
|
|
|
|
}
|
2008-12-23 19:19:07 +00:00
|
|
|
|
2009-04-23 03:17:58 +01: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');
|
|
|
|
$this->element('title', null, _('Ajax Error'));
|
|
|
|
$this->elementEnd('head');
|
|
|
|
$this->elementStart('body');
|
|
|
|
$this->element('p', array('id' => 'error'), $msg);
|
|
|
|
$this->elementEnd('body');
|
|
|
|
$this->elementEnd('html');
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
|
2009-01-21 01:49:47 +00:00
|
|
|
function showForm($msg = null)
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2009-04-23 03:17:58 +01:00
|
|
|
if ($msg && $this->boolean('ajax')) {
|
|
|
|
$this->ajaxErrorMsg($msg);
|
|
|
|
return;
|
|
|
|
}
|
2009-01-26 13:05:59 +00:00
|
|
|
|
2009-04-23 03:17:58 +01:00
|
|
|
$this->msg = $msg;
|
2009-10-31 15:14:38 +00:00
|
|
|
if ($this->trimmed('ajax')) {
|
2009-11-01 10:42:28 +00:00
|
|
|
header('Content-Type: text/xml;charset=utf-8');
|
|
|
|
$this->xw->startDocument('1.0', 'UTF-8');
|
|
|
|
$this->elementStart('html');
|
2009-10-31 15:14:38 +00:00
|
|
|
$this->elementStart('head');
|
|
|
|
$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 15:14:38 +00:00
|
|
|
$this->elementEnd('body');
|
|
|
|
$this->endHTML();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$this->showPage();
|
|
|
|
}
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2009-01-26 12:46:04 +00:00
|
|
|
|
2009-01-26 13:05:59 +00:00
|
|
|
function showPageNotice()
|
2009-01-26 12:46:04 +00:00
|
|
|
{
|
2009-01-26 13:05:59 +00:00
|
|
|
if ($this->msg) {
|
|
|
|
$this->element('p', 'error', $this->msg);
|
|
|
|
}
|
2009-01-26 12:46:04 +00:00
|
|
|
}
|
2009-01-26 13:05:59 +00: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 13:05:59 +00:00
|
|
|
$message_form->show();
|
|
|
|
}
|
2008-09-17 18:47:41 +01:00
|
|
|
}
|