| 
									
										
										
										
											2009-06-14 16:17:44 -07:00
										 |  |  | <?php | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Block a user from a group action class. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * PHP version 5 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @category Action | 
					
						
							| 
									
										
										
										
											2009-08-25 18:12:20 -04:00
										 |  |  |  * @package  StatusNet | 
					
						
							| 
									
										
										
										
											2009-08-25 18:19:04 -04:00
										 |  |  |  * @author   Evan Prodromou <evan@status.net> | 
					
						
							| 
									
										
										
										
											2009-06-14 16:17:44 -07:00
										 |  |  |  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 | 
					
						
							| 
									
										
										
										
											2009-08-25 18:16:46 -04:00
										 |  |  |  * @link     http://status.net/ | 
					
						
							| 
									
										
										
										
											2009-06-14 16:17:44 -07:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2009-08-25 18:14:12 -04:00
										 |  |  |  * StatusNet - the distributed open-source microblogging tool | 
					
						
							| 
									
										
										
										
											2009-08-25 18:12:20 -04:00
										 |  |  |  * Copyright (C) 2008, 2009, StatusNet, Inc. | 
					
						
							| 
									
										
										
										
											2009-06-14 16:17:44 -07:00
										 |  |  |  * | 
					
						
							|  |  |  |  * This program is free software: you can redistribute it and/or modify | 
					
						
							|  |  |  |  * it under the terms of the GNU Affero General Public License as published by | 
					
						
							|  |  |  |  * the Free Software Foundation, either version 3 of the License, or | 
					
						
							|  |  |  |  * (at your option) any later version. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  |  * GNU Affero General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU Affero General Public License | 
					
						
							|  |  |  |  * along with this program.  If not, see <http://www.gnu.org/licenses/>. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-26 10:41:36 -04:00
										 |  |  | if (!defined('STATUSNET') && !defined('LACONICA')) { | 
					
						
							| 
									
										
										
										
											2009-06-14 16:17:44 -07:00
										 |  |  |     exit(1); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							| 
									
										
										
										
											2010-10-31 01:16:59 +02:00
										 |  |  |  * Unblock a user from a group | 
					
						
							| 
									
										
										
										
											2009-06-14 16:17:44 -07:00
										 |  |  |  * | 
					
						
							|  |  |  |  * @category Action | 
					
						
							| 
									
										
										
										
											2009-08-25 18:12:20 -04:00
										 |  |  |  * @package  StatusNet | 
					
						
							| 
									
										
										
										
											2009-08-25 18:19:04 -04:00
										 |  |  |  * @author   Evan Prodromou <evan@status.net> | 
					
						
							| 
									
										
										
										
											2009-06-14 16:17:44 -07:00
										 |  |  |  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 | 
					
						
							| 
									
										
										
										
											2009-08-25 18:16:46 -04:00
										 |  |  |  * @link     http://status.net/ | 
					
						
							| 
									
										
										
										
											2009-06-14 16:17:44 -07:00
										 |  |  |  */ | 
					
						
							|  |  |  | class GroupunblockAction extends Action | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     var $profile = null; | 
					
						
							|  |  |  |     var $group = null; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Take arguments for running | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param array $args $_REQUEST args | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return boolean success flag | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     function prepare($args) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         parent::prepare($args); | 
					
						
							|  |  |  |         if (!common_logged_in()) { | 
					
						
							| 
									
										
										
										
											2011-04-04 00:41:21 +02:00
										 |  |  |             // TRANS: Error message displayed when trying to perform an action that requires a logged in user.
 | 
					
						
							| 
									
										
										
										
											2009-06-14 16:17:44 -07:00
										 |  |  |             $this->clientError(_('Not logged in.')); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         $token = $this->trimmed('token'); | 
					
						
							|  |  |  |         if (empty($token) || $token != common_session_token()) { | 
					
						
							| 
									
										
										
										
											2011-04-03 23:47:46 +02:00
										 |  |  |             // TRANS: Client error displayed when the session token does not match or is not given.
 | 
					
						
							| 
									
										
										
										
											2009-06-14 16:17:44 -07:00
										 |  |  |             $this->clientError(_('There was a problem with your session token. Try again, please.')); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         $id = $this->trimmed('unblockto'); | 
					
						
							|  |  |  |         if (empty($id)) { | 
					
						
							| 
									
										
										
										
											2010-10-31 01:16:59 +02:00
										 |  |  |             // TRANS: Client error displayed when trying to unblock a user from a group without providing a profile.
 | 
					
						
							| 
									
										
										
										
											2009-06-14 16:17:44 -07:00
										 |  |  |             $this->clientError(_('No profile specified.')); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2013-08-18 13:04:58 +02:00
										 |  |  |         $this->profile = Profile::getKV('id', $id); | 
					
						
							| 
									
										
										
										
											2009-06-14 16:17:44 -07:00
										 |  |  |         if (empty($this->profile)) { | 
					
						
							| 
									
										
										
										
											2010-10-31 01:16:59 +02:00
										 |  |  |             // TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile.
 | 
					
						
							| 
									
										
										
										
											2009-06-14 16:17:44 -07:00
										 |  |  |             $this->clientError(_('No profile with that ID.')); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         $group_id = $this->trimmed('unblockgroup'); | 
					
						
							|  |  |  |         if (empty($group_id)) { | 
					
						
							| 
									
										
										
										
											2011-01-31 18:16:55 +01:00
										 |  |  |             // TRANS: Client error displayed when trying to unblock a user from a group without providing a group.
 | 
					
						
							| 
									
										
										
										
											2009-06-14 16:17:44 -07:00
										 |  |  |             $this->clientError(_('No group specified.')); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2013-08-18 13:04:58 +02:00
										 |  |  |         $this->group = User_group::getKV('id', $group_id); | 
					
						
							| 
									
										
										
										
											2009-06-14 16:17:44 -07:00
										 |  |  |         if (empty($this->group)) { | 
					
						
							| 
									
										
										
										
											2010-10-31 01:16:59 +02:00
										 |  |  |             // TRANS: Client error displayed when trying to unblock a user from a non-existing group.
 | 
					
						
							| 
									
										
										
										
											2009-06-14 16:17:44 -07:00
										 |  |  |             $this->clientError(_('No such group.')); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         $user = common_current_user(); | 
					
						
							|  |  |  |         if (!$user->isAdmin($this->group)) { | 
					
						
							| 
									
										
										
										
											2010-10-31 01:16:59 +02:00
										 |  |  |             // TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group.
 | 
					
						
							| 
									
										
										
										
											2009-06-14 16:17:44 -07:00
										 |  |  |             $this->clientError(_('Only an admin can unblock group members.'), 401); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (!Group_block::isBlocked($this->group, $this->profile)) { | 
					
						
							| 
									
										
										
										
											2010-10-31 01:16:59 +02:00
										 |  |  |             // TRANS: Client error displayed when trying to unblock a non-blocked user from a group.
 | 
					
						
							| 
									
										
										
										
											2009-06-14 16:17:44 -07:00
										 |  |  |             $this->clientError(_('User is not blocked from group.')); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Handle request | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param array $args $_REQUEST args; handled in prepare() | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     function handle($args) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         parent::handle($args); | 
					
						
							|  |  |  |         if ($_SERVER['REQUEST_METHOD'] == 'POST') { | 
					
						
							|  |  |  |             $this->unblockProfile(); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Unblock a user. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     function unblockProfile() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $result = Group_block::unblockProfile($this->group, $this->profile); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!$result) { | 
					
						
							| 
									
										
										
										
											2010-10-31 01:16:59 +02:00
										 |  |  |             // TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error.
 | 
					
						
							| 
									
										
										
										
											2009-06-14 16:17:44 -07:00
										 |  |  |             $this->serverError(_('Error removing the block.')); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         foreach ($this->args as $k => $v) { | 
					
						
							|  |  |  |             if ($k == 'returnto-action') { | 
					
						
							|  |  |  |                 $action = $v; | 
					
						
							|  |  |  |             } else if (substr($k, 0, 9) == 'returnto-') { | 
					
						
							|  |  |  |                 $args[substr($k, 9)] = $v; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if ($action) { | 
					
						
							|  |  |  |             common_redirect(common_local_url($action, $args), 303); | 
					
						
							|  |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2014-03-10 00:19:35 +01:00
										 |  |  |             common_redirect(common_local_url('blockedfromgroup', array('nickname' => $this->group->nickname)), 303); | 
					
						
							| 
									
										
										
										
											2009-06-14 16:17:44 -07:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } |