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) {
|
2008-06-26 22:46:54 +01:00
|
|
|
$this->show_form(_t('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-09 20:52:38 +01:00
|
|
|
$notice->rendered = common_render_content($notice->content, $notice);
|
|
|
|
|
2008-05-21 13:31:06 +01:00
|
|
|
$id = $notice->insert();
|
2008-06-26 22:46:54 +01:00
|
|
|
|
2008-05-22 19:55:00 +01:00
|
|
|
if (!$id) {
|
|
|
|
common_server_error(_t('Problem saving notice.'));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$orig = clone($notice);
|
2008-06-20 08:17:00 +01:00
|
|
|
$notice->uri = common_notice_uri($notice);
|
2008-06-26 22:46:54 +01:00
|
|
|
|
2008-05-22 19:55:00 +01:00
|
|
|
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-07-06 23:17:58 +01:00
|
|
|
|
|
|
|
common_save_replies($notice);
|
2008-05-22 19:55:00 +01:00
|
|
|
common_broadcast_notice($notice);
|
2008-07-07 06:43:58 +01:00
|
|
|
|
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-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 08:14:39 +01:00
|
|
|
if (!$content) {
|
|
|
|
$replyto = $this->trimmed('replyto');
|
|
|
|
$profile = Profile::staticGet('nickname', $replyto);
|
|
|
|
if ($profile) {
|
2008-07-09 08:29:53 +01:00
|
|
|
$content = '@' . $profile->nickname . ' ';
|
2008-07-09 08:14:39 +01:00
|
|
|
}
|
|
|
|
}
|
2008-06-26 22:46:54 +01:00
|
|
|
common_show_header(_t('New notice'), NULL, $content,
|
|
|
|
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
|
|
|
}
|