3 * StatusNet, the distributed open-source microblogging tool
5 * Handler for posting new notices
9 * LICENCE: This program is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU Affero General Public License as published by
11 * the Free Software Foundation, either version 3 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU Affero General Public License for more details.
19 * You should have received a copy of the GNU Affero General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
24 * @author Evan Prodromou <evan@status.net>
25 * @author Zach Copley <zach@status.net>
26 * @author Sarven Capadisli <csarven@status.net>
27 * @copyright 2008-2009 StatusNet, Inc.
28 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
29 * @link http://status.net/
32 if (!defined('STATUSNET') && !defined('LACONICA')) {
36 require_once INSTALLDIR . '/lib/noticelist.php';
37 require_once INSTALLDIR . '/lib/mediafile.php';
40 * Action for posting new notices
44 * @author Evan Prodromou <evan@status.net>
45 * @author Zach Copley <zach@status.net>
46 * @author Sarven Capadisli <csarven@status.net>
47 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
48 * @link http://status.net/
51 class NewnoticeAction extends Action
54 * Error message, if any
62 * Note that this usually doesn't get called unless something went wrong
64 * @return string page title
69 return _('New notice');
73 * Handle input, produce output
75 * Switches based on GET or POST method. On GET, shows a form
76 * for posting a notice. On POST, saves the results of that form.
78 * Results may be a full page, or just a single notice list item,
79 * depending on whether AJAX was requested.
81 * @param array $args $_REQUEST contents
85 function handle($args)
87 if (!common_logged_in()) {
88 $this->clientError(_('Not logged in.'));
89 } else if ($_SERVER['REQUEST_METHOD'] == 'POST') {
90 // check for this before token since all POST and FILES data
91 // is losts when size is exceeded
92 if (empty($_POST) && $_SERVER['CONTENT_LENGTH']) {
93 // TRANS: Client error displayed when the number of bytes in a POST request exceeds a limit.
94 // TRANS: %s is the number of bytes of the CONTENT_LENGTH.
95 $msg = _m('The server was unable to handle that much POST data (%s byte) due to its current configuration.',
96 'The server was unable to handle that much POST data (%s bytes) due to its current configuration.',
97 intval($_SERVER['CONTENT_LENGTH']));
98 $this->clientError(sprintf($msg,$_SERVER['CONTENT_LENGTH']));
100 parent::handle($args);
103 $token = $this->trimmed('token');
104 if (!$token || $token != common_session_token()) {
105 $this->clientError(_('There was a problem with your session token. '.
106 'Try again, please.'));
109 $this->saveNewNotice();
110 } catch (Exception $e) {
111 $this->showForm($e->getMessage());
120 * Save a new notice, based on arguments
122 * If successful, will show the notice, or return an Ajax-y result.
123 * If not, it will show an error message -- possibly Ajax-y.
125 * Also, if the notice input looks like a command, it will run the
126 * command and show the results -- again, possibly ajaxy.
131 function saveNewNotice()
133 $user = common_current_user();
134 assert($user); // XXX: maybe an error instead...
135 $content = $this->trimmed('status_textarea');
137 Event::handle('StartSaveNewNoticeWeb', array($this, $user, &$content, &$options));
140 $this->clientError(_('No content!'));
144 $inter = new CommandInterpreter();
146 $cmd = $inter->handle_command($user, $content);
149 if ($this->boolean('ajax')) {
150 $cmd->execute(new AjaxWebChannel($this));
152 $cmd->execute(new WebChannel($this));
157 $content_shortened = common_shorten_links($content);
158 if (Notice::contentTooLong($content_shortened)) {
159 // TRANS: Client error displayed when the parameter "status" is missing.
160 // TRANS: %d is the maximum number of character for a notice.
161 $this->clientError(sprintf(_m('That\'s too long. Maximum notice size is %d character.',
162 'That\'s too long. Maximum notice size is %d characters.',
163 Notice::maxContent()),
164 Notice::maxContent()));
167 $replyto = intval($this->trimmed('inreplyto'));
169 $options['reply_to'] = $replyto;
173 $upload = MediaFile::fromUpload('attach');
175 if (isset($upload)) {
177 if (Event::handle('StartSaveNewNoticeAppendAttachment', array($this, $upload, &$content_shortened, &$options))) {
178 $content_shortened .= ' ' . $upload->shortUrl();
180 Event::handle('EndSaveNewNoticeAppendAttachment', array($this, $upload, &$content_shortened, &$options));
182 if (Notice::contentTooLong($content_shortened)) {
184 $this->clientError(sprintf(_m('Maximum notice size is %d character, including attachment URL.',
185 'Maximum notice size is %d characters, including attachment URL.',
186 Notice::maxContent()),
187 Notice::maxContent()));
191 if ($user->shareLocation()) {
192 // use browser data if checked; otherwise profile data
193 if ($this->arg('notice_data-geo')) {
194 $locOptions = Notice::locationOptions($this->trimmed('lat'),
195 $this->trimmed('lon'),
196 $this->trimmed('location_id'),
197 $this->trimmed('location_ns'),
198 $user->getProfile());
200 $locOptions = Notice::locationOptions(null,
204 $user->getProfile());
207 $options = array_merge($options, $locOptions);
210 $author_id = $user->id;
211 $text = $content_shortened;
213 if (Event::handle('StartNoticeSaveWeb', array($this, &$author_id, &$text, &$options))) {
215 $notice = Notice::saveNew($user->id, $content_shortened, 'web', $options);
217 if (isset($upload)) {
218 $upload->attachToNotice($notice);
221 Event::handle('EndNoticeSaveWeb', array($this, $notice));
223 Event::handle('EndSaveNewNoticeWeb', array($this, $user, &$content_shortened, &$options));
225 if ($this->boolean('ajax')) {
226 header('Content-Type: text/xml;charset=utf-8');
227 $this->xw->startDocument('1.0', 'UTF-8');
228 $this->elementStart('html');
229 $this->elementStart('head');
230 $this->element('title', null, _('Notice posted'));
231 $this->elementEnd('head');
232 $this->elementStart('body');
233 $this->showNotice($notice);
234 $this->elementEnd('body');
235 $this->elementEnd('html');
237 $returnto = $this->trimmed('returnto');
240 $url = common_local_url($returnto,
241 array('nickname' => $user->nickname));
243 $url = common_local_url('shownotice',
244 array('notice' => $notice->id));
246 common_redirect($url, 303);
251 * Show an Ajax-y error message
253 * Goes back to the browser, where it's shown in a popup.
255 * @param string $msg Message to show
260 function ajaxErrorMsg($msg)
262 $this->startHTML('text/xml;charset=utf-8', true);
263 $this->elementStart('head');
264 $this->element('title', null, _('Ajax Error'));
265 $this->elementEnd('head');
266 $this->elementStart('body');
267 $this->element('p', array('id' => 'error'), $msg);
268 $this->elementEnd('body');
269 $this->elementEnd('html');
273 * Formerly page output
275 * This used to be the whole page output; now that's been largely
276 * subsumed by showPage. So this just stores an error message, if
277 * it was passed, and calls showPage.
279 * Note that since we started doing Ajax output, this page is rarely
282 * @param string $msg An error message, if any
287 function showForm($msg=null)
289 if ($msg && $this->boolean('ajax')) {
290 $this->ajaxErrorMsg($msg);
299 * Overload for replies or bad results
301 * We show content in the notice form if there were replies or results.
306 function showNoticeForm()
308 $content = $this->trimmed('status_textarea');
310 $replyto = $this->trimmed('replyto');
311 $inreplyto = $this->trimmed('inreplyto');
312 $profile = Profile::staticGet('nickname', $replyto);
314 $content = '@' . $profile->nickname . ' ';
317 // @fixme most of these bits above aren't being passed on above
321 $notice_form = new NoticeForm($this, '', $content, null, $inreplyto);
322 $notice_form->show();
326 * Show an error message
328 * Shows an error message if there is one.
332 * @todo maybe show some instructions?
335 function showPageNotice()
338 $this->element('p', array('id' => 'error'), $this->msg);
345 * Used to generate the notice code for Ajax results.
347 * @param Notice $notice Notice that was saved
352 function showNotice($notice)
354 $nli = new NoticeListItem($notice, $this);