2008-05-14 10:54:36 -04:00
|
|
|
<?php
|
2008-05-20 15:14:12 -04:00
|
|
|
/*
|
2008-05-14 15:26:48 -04:00
|
|
|
* Laconica - a distributed open-source microblogging tool
|
|
|
|
* Copyright (C) 2008, Controlez-Vous, Inc.
|
2008-05-20 15:14:12 -04:00
|
|
|
*
|
2008-05-14 15:26:48 -04:00
|
|
|
* This program 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.
|
2008-05-20 15:14:12 -04:00
|
|
|
*
|
2008-05-14 15:26:48 -04:00
|
|
|
* 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.
|
2008-05-20 15:14:12 -04:00
|
|
|
*
|
2008-05-14 15:26:48 -04:00
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2008-05-17 11:47:01 -04:00
|
|
|
if (!defined('LACONICA')) { exit(1); }
|
2008-05-14 10:54:36 -04:00
|
|
|
|
|
|
|
class NewnoticeAction extends Action {
|
2008-11-10 21:23:30 -05:00
|
|
|
|
2008-05-14 10:54:36 -04:00
|
|
|
function handle($args) {
|
|
|
|
parent::handle($args);
|
|
|
|
# XXX: Ajax!
|
|
|
|
|
|
|
|
if (!common_logged_in()) {
|
2008-07-08 05:45:31 -04:00
|
|
|
common_user_error(_('Not logged in.'));
|
2008-05-17 13:15:01 -04:00
|
|
|
} else if ($_SERVER['REQUEST_METHOD'] == 'POST') {
|
2008-05-21 08:31:06 -04:00
|
|
|
$this->save_new_notice();
|
2008-05-14 10:54:36 -04:00
|
|
|
} else {
|
|
|
|
$this->show_form();
|
|
|
|
}
|
|
|
|
}
|
2008-05-20 15:14:12 -04:00
|
|
|
|
2008-05-14 10:54:36 -04:00
|
|
|
function save_new_notice() {
|
2008-05-21 08:26:04 -04:00
|
|
|
|
2008-11-10 21:23:30 -05:00
|
|
|
# CSRF protection - token set in common_notice_form()
|
|
|
|
$token = $this->trimmed('token');
|
|
|
|
if (!$token || $token != common_session_token()) {
|
|
|
|
$this->client_error(_('There was a problem with your session token. Try again, please.'));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-05-14 10:54:36 -04:00
|
|
|
$user = common_current_user();
|
|
|
|
assert($user); # XXX: maybe an error instead...
|
2008-07-29 22:28:56 -04:00
|
|
|
$content = $this->trimmed('status_textarea');
|
2008-11-10 21:23:30 -05:00
|
|
|
|
2008-07-29 22:28:56 -04:00
|
|
|
if (!$content) {
|
2008-07-08 05:45:31 -04:00
|
|
|
$this->show_form(_('No content!'));
|
2008-05-21 08:26:04 -04:00
|
|
|
return;
|
2008-08-17 11:17:51 -04:00
|
|
|
} else if (mb_strlen($content) > 140) {
|
2008-11-06 15:59:26 -05:00
|
|
|
|
|
|
|
$content = common_shorten_links($content);
|
|
|
|
|
|
|
|
if (mb_strlen($content) > 140) {
|
|
|
|
common_debug("Content = '$content'", __FILE__);
|
|
|
|
common_debug("mb_strlen(\$content) = " . mb_strlen($content), __FILE__);
|
|
|
|
$this->show_form(_('That\'s too long. Max notice size is 140 chars.'));
|
|
|
|
return;
|
|
|
|
}
|
2008-05-20 15:10:32 -04:00
|
|
|
}
|
2008-05-21 08:26:04 -04:00
|
|
|
|
2008-10-04 12:32:13 -04:00
|
|
|
$inter = new CommandInterpreter();
|
2008-11-10 21:23:30 -05:00
|
|
|
|
2008-10-04 13:01:36 -04:00
|
|
|
$cmd = $inter->handle_command($user, $content);
|
2008-11-10 21:23:30 -05:00
|
|
|
|
2008-10-04 12:32:13 -04:00
|
|
|
if ($cmd) {
|
|
|
|
$cmd->execute(new WebChannel());
|
|
|
|
return;
|
|
|
|
}
|
2008-10-20 13:02:45 -04:00
|
|
|
|
|
|
|
$replyto = $this->trimmed('inreplyto');
|
2008-10-20 13:10:33 -04:00
|
|
|
|
|
|
|
common_debug("Replyto = $replyto\n");
|
2008-11-10 21:23:30 -05:00
|
|
|
|
2008-10-20 13:49:56 -04:00
|
|
|
$notice = Notice::saveNew($user->id, $content, 'web', 1, ($replyto == 'false') ? NULL : $replyto);
|
2008-11-10 21:23:30 -05:00
|
|
|
|
2008-07-29 22:28:56 -04:00
|
|
|
if (is_string($notice)) {
|
|
|
|
$this->show_form($notice);
|
2008-05-22 14:55:00 -04:00
|
|
|
return;
|
|
|
|
}
|
2008-11-10 21:23:30 -05:00
|
|
|
|
2008-05-22 14:55:00 -04:00
|
|
|
common_broadcast_notice($notice);
|
2008-11-10 21:23:30 -05:00
|
|
|
|
2008-06-19 12:18:14 -04:00
|
|
|
$returnto = $this->trimmed('returnto');
|
2008-11-10 21:23:30 -05:00
|
|
|
|
2008-06-19 12:18:14 -04:00
|
|
|
if ($returnto) {
|
|
|
|
$url = common_local_url($returnto,
|
|
|
|
array('nickname' => $user->nickname));
|
|
|
|
} else {
|
|
|
|
$url = common_local_url('shownotice',
|
2008-08-11 14:11:58 -04:00
|
|
|
array('notice' => $notice->id));
|
2008-06-19 12:18:14 -04:00
|
|
|
}
|
|
|
|
common_redirect($url, 303);
|
2008-05-14 10:54:36 -04:00
|
|
|
}
|
2008-05-21 08:26:04 -04:00
|
|
|
|
2008-06-26 17:46:54 -04:00
|
|
|
function show_top($content=NULL) {
|
|
|
|
common_notice_form(NULL, $content);
|
2008-06-19 12:18:14 -04:00
|
|
|
}
|
2008-06-26 17:46:54 -04:00
|
|
|
|
2008-06-19 12:18:14 -04:00
|
|
|
function show_form($msg=NULL) {
|
2008-06-26 17:46:54 -04:00
|
|
|
$content = $this->trimmed('status_textarea');
|
2008-07-09 18:46:30 -04:00
|
|
|
if (!$content) {
|
|
|
|
$replyto = $this->trimmed('replyto');
|
|
|
|
$profile = Profile::staticGet('nickname', $replyto);
|
|
|
|
if ($profile) {
|
|
|
|
$content = '@' . $profile->nickname . ' ';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
common_show_header(_('New notice'), NULL, $content,
|
2008-06-26 17:46:54 -04:00
|
|
|
array($this, 'show_top'));
|
|
|
|
if ($msg) {
|
|
|
|
common_element('p', 'error', $msg);
|
|
|
|
}
|
2008-05-19 10:12:19 -04:00
|
|
|
common_show_footer();
|
2008-05-14 10:54:36 -04:00
|
|
|
}
|
2008-06-20 03:17:00 -04:00
|
|
|
}
|