]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/AnonymousFave/actions/anonfavor.php
plugins onAutoload now only overloads if necessary (extlibs etc.)
[quix0rs-gnu-social.git] / plugins / AnonymousFave / actions / anonfavor.php
1 <?php
2 /**
3  * Anonyous favor action
4  *
5  * PHP version 5
6  *
7  * @category Action
8  * @package  StatusNet
9  * @author   Zach Copley <zach@status.net>
10  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
11  * @link     http://status.net/
12  *
13  * StatusNet - the distributed open-source microblogging tool
14  * Copyright (C) 2010, StatusNet, Inc.
15  *
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.
20  *
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.
25  *
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/>.
28  */
29
30 if (!defined('STATUSNET')) {
31     exit(1);
32 }
33
34 /**
35  * Anonymous favor class
36  *
37  * @category Action
38  * @package  StatusNet
39  * @author   Zach Copley <zach@status.net>
40  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
41  * @link     http://status.net/
42  */
43 class AnonFavorAction extends RedirectingAction
44 {
45     /**
46      * Class handler.
47      *
48      * @param array $args query arguments
49      *
50      * @return void
51      */
52     function handle($args)
53     {
54         parent::handle($args);
55
56         $profile = AnonymousFavePlugin::getAnonProfile();
57
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.')
61             );
62             return;
63         }
64
65         $id     = $this->trimmed('notice');
66         $notice = Notice::getKV($id);
67         $token  = $this->trimmed('token-' . $notice->id);
68
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.'));
72             return;
73         }
74
75
76         if ($profile->hasFave($notice)) {
77             // TRANS: Client error.
78             $this->clientError(_m('This notice is already a favorite!'));
79             return;
80         }
81         $fave = Fave::addNew($profile, $notice);
82
83         if (!$fave) {
84             // TRANS: Server error.
85             $this->serverError(_m('Could not create favorite.'));
86             return;
87         }
88
89         $profile->blowFavesCache();
90
91         if ($this->boolean('ajax')) {
92             $this->startHTML('text/xml;charset=utf-8');
93             $this->elementStart('head');
94             // TRANS: Title.
95             $this->element('title', null, _m('Disfavor favorite'));
96             $this->elementEnd('head');
97             $this->elementStart('body');
98             $disfavor = new AnonDisFavorForm($this, $notice);
99             $disfavor->show();
100             $this->elementEnd('body');
101             $this->elementEnd('html');
102         } else {
103             $this->returnToPrevious();
104         }
105     }
106
107     /**
108      * If returnto not set, return to the public stream.
109      *
110      * @return string URL
111      */
112     function defaultReturnTo()
113     {
114         $returnto = common_get_returnto();
115         if (empty($returnto)) {
116             return common_local_url('public');
117         } else {
118             return $returnto;
119         }
120     }
121 }