]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/unblock.php
Merge branch 'master' of /var/www/trunk into uiredesign
[quix0rs-gnu-social.git] / actions / unblock.php
1 <?php
2 /*
3  * Laconica - a distributed open-source microblogging tool
4  * Copyright (C) 2008, Controlez-Vous, Inc.
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU Affero General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU Affero General Public License for more details.
15  *
16  * You should have received a copy of the GNU Affero General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 if (!defined('LACONICA')) { exit(1); }
21
22 class UnblockAction extends Action
23 {
24
25     var $profile = null;
26
27     function prepare($args)
28     {
29
30         parent::prepare($args);
31
32         if (!common_logged_in()) {
33             $this->clientError(_('Not logged in.'));
34             return false;
35         }
36
37         $token = $this->trimmed('token');
38
39         if (!$token || $token != common_session_token()) {
40             $this->clientError(_('There was a problem with your session token. Try again, please.'));
41             return;
42         }
43
44         $id = $this->trimmed('unblockto');
45
46         if (!$id) {
47             $this->clientError(_('No profile specified.'));
48             return false;
49         }
50
51         $this->profile = Profile::staticGet('id', $id);
52
53         if (!$this->profile) {
54             $this->clientError(_('No profile with that ID.'));
55             return false;
56         }
57
58         return true;
59     }
60
61     function handle($args)
62     {
63         parent::handle($args);
64         if ($_SERVER['REQUEST_METHOD'] == 'POST') {
65             $this->unblock_profile();
66         }
67     }
68
69     function unblock_profile()
70     {
71
72         $cur = common_current_user();
73
74         $result = $cur->unblock($this->profile);
75
76         if (!$result) {
77             $this->serverError(_('Error removing the block.'));
78             return;
79         }
80
81         foreach ($this->args as $k => $v) {
82             if ($k == 'returnto-action') {
83                 $action = $v;
84             } else if (substr($k, 0, 9) == 'returnto-') {
85                 $args[substr($k, 9)] = $v;
86             }
87         }
88
89         if ($action) {
90             common_redirect(common_local_url($action, $args));
91         } else {
92             common_redirect(common_local_url('subscriptions',
93                                              array('nickname' => $cur->nickname)));
94         }
95     }
96 }