]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/AnonymousFave/actions/anonfavor.php
Improved type-hint for following methods:
[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('GNUSOCIAL')) { exit(1); }
31
32 /**
33  * Anonymous favor class
34  *
35  * @category Action
36  * @package  StatusNet
37  * @author   Zach Copley <zach@status.net>
38  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
39  * @link     http://status.net/
40  */
41 class AnonFavorAction extends RedirectingAction
42 {
43     /**
44      * Class handler.
45      *
46      * @param array $args query arguments
47      *
48      * @return void
49      */
50     function handle(array $args=array())
51     {
52         parent::handle($args);
53
54         $profile = AnonymousFavePlugin::getAnonProfile();
55
56         if (empty($profile) || $_SERVER['REQUEST_METHOD'] != 'POST') {
57             // TRANS: Client error.
58             $this->clientError(_m('Could not favor notice! Please make sure your browser has cookies enabled.'));
59         }
60
61         $id     = $this->trimmed('notice');
62         $notice = Notice::getKV($id);
63         $token  = $this->checkSessionToken();
64
65         if (Fave::existsForProfile($notice, $profile)) {
66             // TRANS: Client error.
67             throw new AlreadyFulfilledException(_m('This notice is already a favorite!'));
68         }
69         $fave = Fave::addNew($profile, $notice);
70
71         if (!$fave instanceof Fave) {
72             // TRANS: Server error.
73             $this->serverError(_m('Could not create favorite.'));
74         }
75
76         Fave::blowCacheForProfileId($profile->id);
77
78         if ($this->boolean('ajax')) {
79             $this->startHTML('text/xml;charset=utf-8');
80             $this->elementStart('head');
81             // TRANS: Title.
82             $this->element('title', null, _m('Disfavor favorite'));
83             $this->elementEnd('head');
84             $this->elementStart('body');
85             $disfavor = new AnonDisFavorForm($this, $notice);
86             $disfavor->show();
87             $this->elementEnd('body');
88             $this->endHTML();
89         } else {
90             $this->returnToPrevious();
91         }
92     }
93
94     /**
95      * If returnto not set, return to the public stream.
96      *
97      * @return string URL
98      */
99     function defaultReturnTo()
100     {
101         $returnto = common_get_returnto();
102         if (empty($returnto)) {
103             return common_local_url('public');
104         } else {
105             return $returnto;
106         }
107     }
108 }