]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/UserFlag/flagprofile.php
84c343c483337e6bed2ba0d93198a21869a9af3a
[quix0rs-gnu-social.git] / plugins / UserFlag / flagprofile.php
1 <?php
2 /**
3  * Add a flag to a profile
4  *
5  * PHP version 5
6  *
7  * @category Action
8  * @package  StatusNet
9  * @author   Evan Prodromou <evan@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) 2009, 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  * Action to flag a profile.
36  *
37  * @category Action
38  * @package  StatusNet
39  * @author   Evan Prodromou <evan@status.net>
40  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
41  * @link     http://status.net/
42  */
43
44 class FlagprofileAction extends Action
45 {
46     var $profile = null;
47     var $flag    = null;
48
49     /**
50      * Take arguments for running
51      *
52      * @param array $args $_REQUEST args
53      *
54      * @return boolean success flag
55      */
56
57     function prepare($args)
58     {
59         parent::prepare($args);
60
61         if ($_SERVER['REQUEST_METHOD'] != 'POST') {
62             throw new ClientException(_('Action only accepts POST'));
63         }
64
65         if (!common_logged_in()) {
66             $this->clientError(_('Not logged in.'));
67             return false;
68         }
69
70         $id = $this->trimmed('flagprofileto');
71
72         if (!$id) {
73             $this->clientError(_('No profile specified.'));
74             return false;
75         }
76
77         $this->profile = Profile::staticGet('id', $id);
78
79         if (empty($this->profile)) {
80             $this->clientError(_('No profile with that ID.'));
81             return false;
82         }
83
84         $user = common_current_user();
85
86         assert(!empty($user)); // checked above
87
88         if (User_flag_profile::exists($this->profile->id,
89                                       $user->id))
90         {
91             $this->clientError(_('Flag already exists.'));
92             return false;
93         }
94
95         return true;
96     }
97
98     /**
99      * Handle request
100      *
101      * @param array $args $_REQUEST args; handled in prepare()
102      *
103      * @return void
104      */
105
106     function handle($args)
107     {
108         parent::handle($args);
109
110         $this->flagProfile();
111         $this->returnTo();
112     }
113
114     function title() {
115         return _('Flag profile');
116     }
117
118     /**
119      * save the profile flag
120      *
121      * @return void
122      */
123
124     function flagProfile()
125     {
126         $user = common_current_user();
127
128         assert(!empty($user));
129         assert(!empty($this->profile));
130
131         $ufp = new User_flag_profile();
132
133         $ufp->profile_id = $this->profile->id;
134         $ufp->user_id    = $user->id;
135         $ufp->created    = common_sql_now();
136
137         if (!$ufp->insert()) {
138             throw new ServerException(sprintf(_("Could not flag profile '%s' with flag '%s'."),
139                                               $this->profile->nickname, $this->flag));
140         }
141
142         $ufp->free();
143     }
144
145     function returnTo()
146     {
147         // Now, gotta figure where we go back to
148         foreach ($this->args as $k => $v) {
149             if ($k == 'returnto-action') {
150                 $action = $v;
151             } elseif (substr($k, 0, 9) == 'returnto-') {
152                 $args[substr($k, 9)] = $v;
153             }
154         }
155
156         common_redirect(common_local_url($action, $args), 303);
157     }
158 }
159