9 * @author Evan Prodromou <evan@status.net>
10 * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
11 * @link http://status.net/
13 * StatusNet - the distributed open-source microblogging tool
14 * Copyright (C) 2008, 2009, StatusNet, Inc.
16 * This program is free software: you can redistribute it and/or modify
17 * it under the terms of the GNU Affero General Public License as published by
18 * the Free Software Foundation, either version 3 of the License, or
19 * (at your option) any later version.
21 * This program is distributed in the hope that it will be useful,
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 * GNU Affero General Public License for more details.
26 * You should have received a copy of the GNU Affero General Public License
27 * along with this program. If not, see <http://www.gnu.org/licenses/>.
30 if (!defined('STATUSNET')) {
39 * @author Evan Prodromou <evan@status.net>
40 * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
41 * @link http://status.net/
43 class RepeatAction extends Action
48 function prepare($args)
50 parent::prepare($args);
52 $this->user = common_current_user();
54 if (empty($this->user)) {
55 // TRANS: Client error displayed when trying to repeat a notice while not logged in.
56 $this->clientError(_('Only logged-in users can repeat notices.'));
60 $id = $this->trimmed('notice');
63 // TRANS: Client error displayed when trying to repeat a notice while not providing a notice ID.
64 $this->clientError(_('No notice specified.'));
68 $this->notice = Notice::staticGet('id', $id);
70 if (empty($this->notice)) {
71 // TRANS: Client error displayed when trying to repeat a non-existing notice.
72 $this->clientError(_('No notice specified.'));
76 $token = $this->trimmed('token-'.$id);
78 if (empty($token) || $token != common_session_token()) {
79 // TRANS: Client error displayed when the session token does not match or is not given.
80 $this->clientError(_('There was a problem with your session token. Try again, please.'));
90 * @param array $args query arguments
94 function handle($args)
96 $repeat = $this->notice->repeat($this->user->id, 'web');
98 if ($this->boolean('ajax')) {
99 $this->startHTML('text/xml;charset=utf-8');
100 $this->elementStart('head');
101 // TRANS: Title after repeating a notice.
102 $this->element('title', null, _('Repeated'));
103 $this->elementEnd('head');
104 $this->elementStart('body');
105 $this->element('p', array('id' => 'repeat_response',
106 'class' => 'repeated'),
107 // TRANS: Confirmation text after repeating a notice.
109 $this->elementEnd('body');
110 $this->elementEnd('html');