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
|
2008-11-21 23:31:45 -05:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2008-05-14 15:26:48 -04:00
|
|
|
* 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
|
2008-11-21 23:31:45 -05:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2008-05-14 15:26:48 -04:00
|
|
|
*/
|
|
|
|
|
2008-05-17 11:47:01 -04:00
|
|
|
if (!defined('LACONICA')) { exit(1); }
|
2008-05-14 10:54:36 -04:00
|
|
|
|
2008-12-11 18:35:15 -05:00
|
|
|
require_once INSTALLDIR . '/lib/noticelist.php';
|
2008-12-11 18:20:00 -05:00
|
|
|
|
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);
|
|
|
|
|
|
|
|
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-11-21 23:31:45 -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-11-22 20:40:03 -05: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-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-11-13 10:32:16 -05:00
|
|
|
} else {
|
2008-11-28 16:01:14 -05:00
|
|
|
$content_shortened = common_shorten_links($content);
|
2008-11-21 23:31:45 -05:00
|
|
|
|
2008-11-28 16:01:14 -05:00
|
|
|
if (mb_strlen($content_shortened) > 140) {
|
|
|
|
common_debug("Content = '$content_shortened'", __FILE__);
|
|
|
|
common_debug("mb_strlen(\$content) = " . mb_strlen($content_shortened), __FILE__);
|
2008-11-06 15:59:26 -05:00
|
|
|
$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-11-28 16:01:14 -05:00
|
|
|
$cmd = $inter->handle_command($user, $content_shortened);
|
2008-11-10 21:23:30 -05:00
|
|
|
|
2008-10-04 12:32:13 -04:00
|
|
|
if ($cmd) {
|
2008-12-09 16:06:54 -05:00
|
|
|
if ($this->boolean('ajax')) {
|
|
|
|
$cmd->execute(new AjaxWebChannel());
|
|
|
|
} else {
|
|
|
|
$cmd->execute(new WebChannel());
|
|
|
|
}
|
2008-10-04 12:32:13 -04:00
|
|
|
return;
|
|
|
|
}
|
2008-10-20 13:02:45 -04:00
|
|
|
|
|
|
|
$replyto = $this->trimmed('inreplyto');
|
2008-10-20 13:10:33 -04: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-11-22 20:40:03 -05:00
|
|
|
if ($this->boolean('ajax')) {
|
2008-12-11 16:18:14 -05:00
|
|
|
common_start_html('text/xml;charset=utf-8', true);
|
2008-11-22 20:40:03 -05:00
|
|
|
common_element_start('head');
|
|
|
|
common_element('title', null, _('Notice posted'));
|
|
|
|
common_element_end('head');
|
|
|
|
common_element_start('body');
|
|
|
|
$this->show_notice($notice);
|
|
|
|
common_element_end('body');
|
|
|
|
common_element_end('html');
|
2008-06-19 12:18:14 -04:00
|
|
|
} else {
|
2008-11-22 20:40:03 -05:00
|
|
|
$returnto = $this->trimmed('returnto');
|
2008-11-22 21:29:02 -05:00
|
|
|
|
2008-11-22 20:40:03 -05:00
|
|
|
if ($returnto) {
|
|
|
|
$url = common_local_url($returnto,
|
|
|
|
array('nickname' => $user->nickname));
|
|
|
|
} else {
|
|
|
|
$url = common_local_url('shownotice',
|
|
|
|
array('notice' => $notice->id));
|
2008-11-21 23:31:45 -05:00
|
|
|
}
|
2008-11-22 20:40:03 -05:00
|
|
|
common_redirect($url, 303);
|
2008-11-21 23:31:45 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function ajax_error_msg($msg) {
|
2008-12-11 22:08:20 -05:00
|
|
|
common_start_html('text/xml;charset=utf-8', true);
|
2008-11-21 23:31:45 -05:00
|
|
|
common_element_start('head');
|
|
|
|
common_element('title', null, _('Ajax Error'));
|
|
|
|
common_element_end('head');
|
|
|
|
common_element_start('body');
|
2008-12-16 02:18:18 -05:00
|
|
|
common_element('p', array('id' => 'error'), $msg);
|
2008-11-21 23:31:45 -05:00
|
|
|
common_element_end('body');
|
|
|
|
common_element_end('html');
|
|
|
|
}
|
|
|
|
|
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-11-22 20:40:03 -05:00
|
|
|
if ($msg && $this->boolean('ajax')) {
|
|
|
|
$this->ajax_error_msg($msg);
|
|
|
|
return;
|
|
|
|
}
|
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-11-21 23:31:45 -05:00
|
|
|
array($this, 'show_top'));
|
2008-06-26 17:46:54 -04:00
|
|
|
if ($msg) {
|
2008-12-16 02:18:18 -05:00
|
|
|
common_element('p', array('id' => 'error'), $msg);
|
2008-06-26 17:46:54 -04:00
|
|
|
}
|
2008-05-19 10:12:19 -04:00
|
|
|
common_show_footer();
|
2008-05-14 10:54:36 -04:00
|
|
|
}
|
2008-11-21 23:31:45 -05:00
|
|
|
|
|
|
|
function show_notice($notice) {
|
2008-12-11 18:20:00 -05:00
|
|
|
$nli = new NoticeListItem($notice);
|
|
|
|
$nli->show();
|
2008-11-21 23:31:45 -05:00
|
|
|
}
|
|
|
|
|
2008-06-20 03:17:00 -04:00
|
|
|
}
|