3 * Microsummary action, see https://wiki.mozilla.org/Microsummaries
9 * @author Evan Prodromou <evan@controlyourself.ca>
10 * @author Robin Millette <millette@controlyourself.ca>
11 * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
12 * @link http://laconi.ca/
14 * Laconica - a distributed open-source microblogging tool
15 * Copyright (C) 2008, Controlez-Vous, Inc.
17 * This program is free software: you can redistribute it and/or modify
18 * it under the terms of the GNU Affero General Public License as published by
19 * the Free Software Foundation, either version 3 of the License, or
20 * (at your option) any later version.
22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU Affero General Public License for more details.
27 * You should have received a copy of the GNU Affero General Public License
28 * along with this program. If not, see <http://www.gnu.org/licenses/>.
31 if (!defined('LACONICA')) {
36 * Microsummary action class.
40 * @author Evan Prodromou <evan@controlyourself.ca>
41 * @author Robin Millette <millette@controlyourself.ca>
42 * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
43 * @link http://laconi.ca/
45 class MicrosummaryAction extends Action
50 * @param array $args array of arguments
54 function handle($args)
56 parent::handle($args);
58 $nickname = common_canonical_nickname($this->arg('nickname'));
59 $user = User::staticGet('nickname', $nickname);
62 $this->clientError(_('No such user'), 404);
66 $notice = $user->getCurrentNotice();
69 $this->clientError(_('No current status'), 404);
72 header('Content-Type: text/plain');
74 print $user->nickname . ': ' . $notice->content;