]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/AnonymousFave/anonfavor.php
Initial plugin for allowing anonymous favoriting
[quix0rs-gnu-social.git] / plugins / AnonymousFave / anonfavor.php
1 <?php
2
3 /**
4  * Anonyous favor action
5  *
6  * PHP version 5
7  *
8  * @category Action
9  * @package  StatusNet
10  * @author   Zach Copley <zach@status.net>
11  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
12  * @link     http://status.net/
13  *
14  * StatusNet - the distributed open-source microblogging tool
15  * Copyright (C) 2010, StatusNet, Inc.
16  *
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.
21  *
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.
26  *
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/>.
29  */
30
31 if (!defined('STATUSNET')) {
32     exit(1);
33 }
34
35 /**
36  * Anonymous favor class
37  *
38  * @category Action
39  * @package  StatusNet
40  * @author   Zach Copley <zach@status.net>
41  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
42  * @link     http://status.net/
43  */
44 class AnonFavorAction extends RedirectingAction
45 {
46     /**
47      * Class handler.
48      *
49      * @param array $args query arguments
50      *
51      * @return void
52      */
53     function handle($args)
54     {
55         parent::handle($args);
56
57         $anon = $_SESSION['anon_nickname'];
58         $profile = Profile::staticGet('nickname', $anon);
59
60         if (empty($profile)) {
61             common_debug(
62                 "AnonFavorAction - Anon user tried to fave a notice but doesn't have a profile."
63             );
64         }
65
66         if (empty($profile) || $_SERVER['REQUEST_METHOD'] != 'POST') {
67             $this->clientError(
68                 _m('Could not favor notice! Please make sure your browser has cookies enabled.')
69             );
70             return;
71         }
72
73         $id     = $this->trimmed('notice');
74         $notice = Notice::staticGet($id);
75         $token  = $this->trimmed('token-' . $notice->id);
76
77         if (empty($token) || $token != common_session_token()) {
78             $this->clientError(_m('There was a problem with your session token. Try again, please.'));
79             return;
80         }
81
82
83         if ($profile->hasFave($notice)) {
84             $this->clientError(_m('This notice is already a favorite!'));
85             return;
86         }
87         $fave = Fave::addNew($profile, $notice);
88
89         if (!$fave) {
90             $this->serverError(_m('Could not create favorite.'));
91             return;
92         }
93
94         $profile->blowFavesCache();
95
96         if ($this->boolean('ajax')) {
97             $this->startHTML('text/xml;charset=utf-8');
98             $this->elementStart('head');
99             $this->element('title', null, _m('Disfavor favorite'));
100             $this->elementEnd('head');
101             $this->elementStart('body');
102             $disfavor = new AnonDisFavorForm($this, $notice);
103             $disfavor->show();
104             $this->elementEnd('body');
105             $this->elementEnd('html');
106         } else {
107             $this->returnToPrevious();
108         }
109     }
110
111     /**
112      * If returnto not set, return to the public stream.
113      *
114      * @return string URL
115      */
116     function defaultReturnTo()
117     {
118         $returnto = common_get_returnto();
119         if (empty($returnto)) {
120             return common_local_url('public');
121         } else {
122             return $returnto;
123         }
124     }
125 }