]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/UserFlag/flagprofile.php
insert profile flags more or less correctly
[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         $this->flag = $this->trimmed('flag');
85
86         if (empty($this->flag)) {
87             $this->flag = Profile_flag::DEFAULTFLAG;
88         }
89
90         $user = common_current_user();
91
92         assert(!empty($user)); // checked above
93
94         if (User_flag_profile::exists($this->profile->id,
95                                       $user->id,
96                                       $this->flag))
97         {
98             $this->clientError(_('Flag already exists.'));
99             return false;
100         }
101
102         return true;
103     }
104
105     /**
106      * Handle request
107      *
108      * @param array $args $_REQUEST args; handled in prepare()
109      *
110      * @return void
111      */
112
113     function handle($args)
114     {
115         parent::handle($args);
116
117         $this->flagProfile();
118         $this->returnTo();
119     }
120
121     function title() {
122         return _('Flag profile');
123     }
124
125     /**
126      * save the profile flag
127      *
128      * @return void
129      */
130
131     function flagProfile()
132     {
133         $user = common_current_user();
134
135         assert(!empty($user));
136         assert(!empty($this->profile));
137         assert(!empty($this->flag));
138
139         $ufp = new User_flag_profile();
140
141         $ufp->profile_id = $this->profile->id;
142         $ufp->user_id    = $user->id;
143         $ufp->flag       = $this->flag;
144         $ufp->created    = common_sql_now();
145
146         if (!$ufp->insert()) {
147             throw new ServerException(sprintf(_("Couldn't flag profile '%s' with flag '%s'."),
148                                               $this->profile->nickname, $this->flag));
149         }
150
151         $ufp->free();
152     }
153
154     function returnTo()
155     {
156         // Now, gotta figure where we go back to
157         foreach ($this->args as $k => $v) {
158             if ($k == 'returnto-action') {
159                 $action = $v;
160             } elseif (substr($k, 0, 9) == 'returnto-') {
161                 $args[substr($k, 9)] = $v;
162             }
163         }
164
165         common_redirect(common_local_url($action, $args), 303);
166     }
167 }
168