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-05-20 20:14:12 +01:00
|
|
|
|
2008-05-14 15:54:36 +01:00
|
|
|
function handle($args) {
|
|
|
|
parent::handle($args);
|
|
|
|
# XXX: Ajax!
|
|
|
|
|
|
|
|
if (!common_logged_in()) {
|
|
|
|
common_user_error(_t('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...
|
|
|
|
$notice = DB_DataObject::factory('notice');
|
|
|
|
assert($notice);
|
|
|
|
$notice->profile_id = $user->id; # user id *is* profile id
|
2008-05-17 21:14:11 +01:00
|
|
|
$notice->created = DB_DataObject_Cast::dateTime();
|
2008-05-20 22:23:19 +01:00
|
|
|
# Default theme uses 'content' for something else
|
2008-06-10 19:52:38 +01:00
|
|
|
$notice->content = $this->trimmed('status_textarea');
|
2008-05-20 20:14:12 +01:00
|
|
|
|
2008-05-21 12:27:07 +01:00
|
|
|
if (!$notice->content) {
|
|
|
|
$this->show_form(_t('No content!'));
|
2008-05-21 13:26:04 +01:00
|
|
|
return;
|
2008-05-21 12:27:07 +01:00
|
|
|
} else if (strlen($notice->content) > 140) {
|
|
|
|
$this->show_form(_t('Notice content too long.'));
|
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-05-21 13:31:06 +01:00
|
|
|
$id = $notice->insert();
|
|
|
|
|
2008-05-22 19:55:00 +01:00
|
|
|
if (!$id) {
|
|
|
|
common_server_error(_t('Problem saving notice.'));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$orig = clone($notice);
|
|
|
|
$notice->uri = common_mint_tag('notice:' . $id);
|
|
|
|
|
|
|
|
if (!$notice->update($orig)) {
|
2008-05-21 13:31:06 +01:00
|
|
|
common_server_error(_t('Problem saving notice.'));
|
2008-05-22 19:55:00 +01:00
|
|
|
return;
|
2008-05-21 13:31:06 +01:00
|
|
|
}
|
2008-05-22 19:55:00 +01:00
|
|
|
|
|
|
|
common_broadcast_notice($notice);
|
2008-06-19 17:18:14 +01:00
|
|
|
$returnto = $this->trimmed('returnto');
|
|
|
|
if ($returnto) {
|
|
|
|
$url = common_local_url($returnto,
|
|
|
|
array('nickname' => $user->nickname));
|
|
|
|
} else {
|
|
|
|
$url = common_local_url('shownotice',
|
|
|
|
array('notice' => $id));
|
|
|
|
}
|
|
|
|
common_redirect($url, 303);
|
2008-05-14 15:54:36 +01:00
|
|
|
}
|
2008-05-21 13:26:04 +01:00
|
|
|
|
2008-06-19 17:18:14 +01:00
|
|
|
function show_top($msg=NULL) {
|
2008-05-21 12:27:07 +01:00
|
|
|
if ($msg) {
|
|
|
|
common_element('div', 'error', $msg);
|
|
|
|
}
|
2008-06-19 17:18:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function show_form($msg=NULL) {
|
|
|
|
common_show_header(_t('New notice'), NULL, $msg, array($this, 'show_top'));
|
2008-05-20 21:11:20 +01:00
|
|
|
common_notice_form();
|
2008-05-19 15:12:19 +01:00
|
|
|
common_show_footer();
|
2008-05-14 15:54:36 +01:00
|
|
|
}
|
|
|
|
}
|