]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/unblock.php
Merge remote-tracking branch 'upstream/master' into social-master
[quix0rs-gnu-social.git] / actions / unblock.php
1 <?php
2 /**
3  * Unblock a user action class.
4  *
5  * PHP version 5
6  *
7  * @category Action
8  * @package  StatusNet
9  * @author   Evan Prodromou <evan@status.net>
10  * @author   Robin Millette <millette@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) 2008, 2009, 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') && !defined('LACONICA')) {
32     exit(1);
33 }
34
35 /**
36  * Unblock a user action class.
37  *
38  * @category Action
39  * @package  StatusNet
40  * @author   Evan Prodromou <evan@status.net>
41  * @author   Robin Millette <millette@status.net>
42  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
43  * @link     http://status.net/
44  */
45 class UnblockAction extends ProfileFormAction
46 {
47     function prepare(array $args=array())
48     {
49         if (!parent::prepare($args)) {
50             return false;
51         }
52
53         $cur = common_current_user();
54
55         assert(!empty($cur)); // checked by parent
56
57         if (!$cur->hasBlocked($this->profile)) {
58             // TRANS: Client error displayed when trying to unblock a non-blocked user.
59             $this->clientError(_("You haven't blocked that user."));
60         }
61
62         return true;
63     }
64
65     /**
66      * Unblock a user.
67      *
68      * @return void
69      */
70     function handlePost()
71     {
72         $cur = common_current_user();
73
74         $result = false;
75
76         if (Event::handle('StartUnblockProfile', array($cur, $this->profile))) {
77             $result = $cur->unblock($this->profile);
78             if ($result) {
79                 Event::handle('EndUnblockProfile', array($cur, $this->profile));
80             }
81         }
82
83         if (!$result) {
84             // TRANS: Server error displayed when removing a user block.
85             $this->serverError(_('Error removing the block.'));
86         }
87     }
88 }