3 * Anonyous favor action
9 * @author Zach Copley <zach@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) 2010, 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')) {
35 * Anonymous favor class
39 * @author Zach Copley <zach@status.net>
40 * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
41 * @link http://status.net/
43 class AnonFavorAction extends RedirectingAction
48 * @param array $args query arguments
52 function handle($args)
54 parent::handle($args);
56 $profile = AnonymousFavePlugin::getAnonProfile();
58 if (empty($profile) || $_SERVER['REQUEST_METHOD'] != 'POST') {
59 // TRANS: Client error.
60 $this->clientError(_m('Could not favor notice! Please make sure your browser has cookies enabled.')
65 $id = $this->trimmed('notice');
66 $notice = Notice::getKV($id);
67 $token = $this->trimmed('token-' . $notice->id);
69 if (empty($token) || $token != common_session_token()) {
70 // TRANS: Client error.
71 $this->clientError(_m('There was a problem with your session token. Try again, please.'));
76 if ($profile->hasFave($notice)) {
77 // TRANS: Client error.
78 $this->clientError(_m('This notice is already a favorite!'));
81 $fave = Fave::addNew($profile, $notice);
84 // TRANS: Server error.
85 $this->serverError(_m('Could not create favorite.'));
89 $profile->blowFavesCache();
91 if ($this->boolean('ajax')) {
92 $this->startHTML('text/xml;charset=utf-8');
93 $this->elementStart('head');
95 $this->element('title', null, _m('Disfavor favorite'));
96 $this->elementEnd('head');
97 $this->elementStart('body');
98 $disfavor = new AnonDisFavorForm($this, $notice);
100 $this->elementEnd('body');
101 $this->elementEnd('html');
103 $this->returnToPrevious();
108 * If returnto not set, return to the public stream.
112 function defaultReturnTo()
114 $returnto = common_get_returnto();
115 if (empty($returnto)) {
116 return common_local_url('public');