]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/UserFlag/flagprofile.php
Explictly unbinding is unnecessary as jQuery's remove() takes care of it
[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 ProfileFormAction
45 {
46     /**
47      * Take arguments for running
48      *
49      * @param array $args $_REQUEST args
50      *
51      * @return boolean success flag
52      */
53
54     function prepare($args)
55     {
56         if (!parent::prepare($args)) {
57             return false;
58         }
59
60         $user = common_current_user();
61
62         assert(!empty($user)); // checked above
63         assert(!empty($this->profile)); // checked above
64
65         if (User_flag_profile::exists($this->profile->id,
66                                       $user->id))
67         {
68             $this->clientError(_('Flag already exists.'));
69             return false;
70         }
71
72         return true;
73     }
74
75     /**
76      * Handle POST
77      *
78      * @return void
79      */
80
81     function handlePost()
82     {
83         $user = common_current_user();
84
85         assert(!empty($user));
86         assert(!empty($this->profile));
87
88         $ufp = new User_flag_profile();
89
90         $ufp->profile_id = $this->profile->id;
91         $ufp->user_id    = $user->id;
92         $ufp->created    = common_sql_now();
93
94         if (!$ufp->insert()) {
95             throw new ServerException(sprintf(_("Couldn't flag profile '%s' for review."),
96                                               $this->profile->nickname));
97         }
98
99         $ufp->free();
100     }
101
102     function ajaxResults() {
103         header('Content-Type: text/xml;charset=utf-8');
104         $this->xw->startDocument('1.0', 'UTF-8');
105         $this->elementStart('html');
106         $this->elementStart('head');
107         $this->element('title', null, _('Flagged for review'));
108         $this->elementEnd('head');
109         $this->elementStart('body');
110         $this->element('p', 'flagged', _('Flagged'));
111         $this->elementEnd('body');
112         $this->elementEnd('html');
113     }
114 }
115