3 * Unblock a user action class.
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/
14 * StatusNet - the distributed open-source microblogging tool
15 * Copyright (C) 2008, 2009, StatusNet, Inc.
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.
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.
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/>.
31 if (!defined('STATUSNET') && !defined('LACONICA')) {
36 * Unblock a user action class.
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/
46 class UnblockAction extends ProfileFormAction
48 function prepare($args)
50 if (!parent::prepare($args)) {
54 $cur = common_current_user();
56 assert(!empty($cur)); // checked by parent
58 if (!$cur->hasBlocked($this->profile)) {
59 $this->clientError(_("You haven't blocked that user."));
74 $cur = common_current_user();
78 if (Event::handle('StartUnblockProfile', array($cur, $this->profile))) {
79 $result = $cur->unblock($this->profile);
81 Event::handle('EndUnblockProfile', array($cur, $this->profile));
86 $this->serverError(_('Error removing the block.'));