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