2008-05-14 15:54:36 +01:00
|
|
|
<?php
|
2008-05-20 20:14:12 +01:00
|
|
|
/*
|
2008-05-14 20:26:48 +01:00
|
|
|
* Laconica - a distributed open-source microblogging tool
|
|
|
|
* Copyright (C) 2008, Controlez-Vous, Inc.
|
2008-05-20 20:14:12 +01:00
|
|
|
*
|
2008-05-14 20:26:48 +01: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 20:14:12 +01:00
|
|
|
*
|
2008-05-14 20:26:48 +01: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 20:14:12 +01:00
|
|
|
*
|
2008-05-14 20:26:48 +01: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 16:47:01 +01:00
|
|
|
if (!defined('LACONICA')) { exit(1); }
|
2008-05-14 15:54:36 +01:00
|
|
|
|
|
|
|
class NewnoticeAction extends Action {
|
2008-07-22 22:20:56 +01:00
|
|
|
|
2008-05-14 15:54:36 +01:00
|
|
|
function handle($args) {
|
|
|
|
parent::handle($args);
|
|
|
|
# XXX: Ajax!
|
|
|
|
|
|
|
|
if (!common_logged_in()) {
|
2008-07-08 10:45:31 +01:00
|
|
|
common_user_error(_('Not logged in.'));
|
2008-05-17 18:15:01 +01:00
|
|
|
} else if ($_SERVER['REQUEST_METHOD'] == 'POST') {
|
2008-05-21 13:31:06 +01:00
|
|
|
$this->save_new_notice();
|
2008-05-14 15:54:36 +01:00
|
|
|
} else {
|
|
|
|
$this->show_form();
|
|
|
|
}
|
|
|
|
}
|
2008-05-20 20:14:12 +01:00
|
|
|
|
2008-05-14 15:54:36 +01:00
|
|
|
function save_new_notice() {
|
2008-05-21 13:26:04 +01:00
|
|
|
|
2008-05-14 15:54:36 +01:00
|
|
|
$user = common_current_user();
|
|
|
|
assert($user); # XXX: maybe an error instead...
|
2008-07-30 03:28:56 +01:00
|
|
|
$content = $this->trimmed('status_textarea');
|
|
|
|
|
|
|
|
if (!$content) {
|
2008-07-08 10:45:31 +01:00
|
|
|
$this->show_form(_('No content!'));
|
2008-05-21 13:26:04 +01:00
|
|
|
return;
|
2008-08-17 16:17:51 +01:00
|
|
|
} else if (mb_strlen($content) > 140) {
|
2008-08-17 16:24:19 +01:00
|
|
|
common_debug("Content = '$content'", __FILE__);
|
|
|
|
common_debug("mb_strlen(\$content) = " . mb_strlen($content), __FILE__);
|
2008-07-08 10:45:31 +01:00
|
|
|
$this->show_form(_('That\'s too long. Max notice size is 140 chars.'));
|
2008-05-21 13:26:04 +01:00
|
|
|
return;
|
2008-05-20 20:10:32 +01:00
|
|
|
}
|
2008-05-21 13:26:04 +01:00
|
|
|
|
2008-07-30 03:28:56 +01:00
|
|
|
$notice = Notice::saveNew($user->id, $content, 'web');
|
|
|
|
|
|
|
|
if (is_string($notice)) {
|
|
|
|
$this->show_form($notice);
|
2008-05-22 19:55:00 +01:00
|
|
|
return;
|
|
|
|
}
|
2008-07-30 03:28:56 +01:00
|
|
|
|
2008-05-22 19:55:00 +01:00
|
|
|
common_broadcast_notice($notice);
|
2008-07-30 03:28:56 +01:00
|
|
|
|
2008-06-19 17:18:14 +01:00
|
|
|
$returnto = $this->trimmed('returnto');
|
2008-07-30 03:28:56 +01:00
|
|
|
|
2008-06-19 17:18:14 +01:00
|
|
|
if ($returnto) {
|
|
|
|
$url = common_local_url($returnto,
|
|
|
|
array('nickname' => $user->nickname));
|
|
|
|
} else {
|
|
|
|
$url = common_local_url('shownotice',
|
2008-08-11 19:11:58 +01:00
|
|
|
array('notice' => $notice->id));
|
2008-06-19 17:18:14 +01:00
|
|
|
}
|
|
|
|
common_redirect($url, 303);
|
2008-05-14 15:54:36 +01:00
|
|
|
}
|
2008-05-21 13:26:04 +01:00
|
|
|
|
2008-06-26 22:46:54 +01:00
|
|
|
function show_top($content=NULL) {
|
|
|
|
common_notice_form(NULL, $content);
|
2008-06-19 17:18:14 +01:00
|
|
|
}
|
2008-06-26 22:46:54 +01:00
|
|
|
|
2008-06-19 17:18:14 +01:00
|
|
|
function show_form($msg=NULL) {
|
2008-06-26 22:46:54 +01:00
|
|
|
$content = $this->trimmed('status_textarea');
|
2008-07-09 23:46:30 +01: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 22:46:54 +01:00
|
|
|
array($this, 'show_top'));
|
|
|
|
if ($msg) {
|
|
|
|
common_element('p', 'error', $msg);
|
|
|
|
}
|
2008-05-19 15:12:19 +01:00
|
|
|
common_show_footer();
|
2008-05-14 15:54:36 +01:00
|
|
|
}
|
2008-06-20 08:17:00 +01:00
|
|
|
}
|