]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/UserFlag/actions/clearflag.php
Merge remote-tracking branch 'upstream/master' into social-master
[quix0rs-gnu-social.git] / plugins / UserFlag / actions / clearflag.php
1 <?php
2 /**
3  * Clear all flags for 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 clear flags for 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 class ClearflagAction extends ProfileFormAction
44 {
45     /**
46      * Take arguments for running
47      *
48      * @param array $args $_REQUEST args
49      *
50      * @return boolean success flag
51      */
52     function prepare(array $args=array())
53     {
54         if (!parent::prepare($args)) {
55             return false;
56         }
57
58         $user = common_current_user();
59
60         assert(!empty($user)); // checked above
61         assert(!empty($this->profile)); // checked above
62
63         return true;
64     }
65
66     /**
67      * Handle request
68      *
69      * Overriding the base Action's handle() here to deal check
70      * for Ajax and return an HXR response if necessary
71      *
72      * @param array $args $_REQUEST args; handled in prepare()
73      *
74      * @return void
75      */
76     function handle(array $args=array())
77     {
78         if ($_SERVER['REQUEST_METHOD'] == 'POST') {
79             $this->handlePost();
80             if (!$this->boolean('ajax')) {
81                 $this->returnToPrevious();
82             }
83         }
84     }
85
86     /**
87      * Handle POST
88      *
89      * Executes the actions; deletes all flags
90      *
91      * @return void
92      */
93     function handlePost()
94     {
95         $ufp = new User_flag_profile();
96
97         $result = $ufp->query('UPDATE user_flag_profile ' .
98                               'SET cleared = now() ' .
99                               'WHERE cleared is null ' .
100                               'AND profile_id = ' . $this->profile->id);
101
102         if ($result == false) {
103             // TRANS: Server exception given when flags could not be cleared.
104             // TRANS: %s is a profile nickname.
105             $msg = sprintf(_m('Could not clear flags for profile "%s".'),
106                            $this->profile->nickname);
107             throw new ServerException($msg);
108         }
109
110         $ufp->free();
111
112         if ($this->boolean('ajax')) {
113             $this->ajaxResults();
114         }
115     }
116
117     /**
118      * Return results in ajax form
119      *
120      * @return void
121      */
122     function ajaxResults()
123     {
124         $this->startHTML('text/xml;charset=utf-8');
125         $this->elementStart('head');
126         // TRANS: Title for AJAX form to indicated that flags were removed.
127         $this->element('title', null, _m('Flags cleared'));
128         $this->elementEnd('head');
129         $this->elementStart('body');
130         // TRANS: Body element for "flags cleared" form.
131         $this->element('p', 'cleared', _m('Cleared'));
132         $this->elementEnd('body');
133         $this->endHTML();
134     }
135 }