| 
									
										
										
										
											2009-01-21 11:47:23 -05:00
										 |  |  | <?php | 
					
						
							|  |  |  | /** | 
					
						
							| 
									
										
										
										
											2009-08-25 18:12:20 -04:00
										 |  |  |  * StatusNet, the distributed open-source microblogging tool | 
					
						
							| 
									
										
										
										
											2009-01-21 11:47:23 -05:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Leave a group | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * PHP version 5 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * LICENCE: 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/>. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @category  Group | 
					
						
							| 
									
										
										
										
											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-08-25 18:12:20 -04:00
										 |  |  |  * @copyright 2008-2009 StatusNet, Inc. | 
					
						
							| 
									
										
										
										
											2009-01-21 11:47:23 -05:00
										 |  |  |  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 | 
					
						
							| 
									
										
										
										
											2009-08-25 18:16:46 -04:00
										 |  |  |  * @link      http://status.net/ | 
					
						
							| 
									
										
										
										
											2009-01-21 11:47:23 -05:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-15 10:49:20 +02:00
										 |  |  | if (!defined('GNUSOCIAL')) { exit(1); } | 
					
						
							| 
									
										
										
										
											2009-01-21 11:47:23 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Leave a group | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This is the action for leaving a group. It works more or less like the subscribe action | 
					
						
							|  |  |  |  * for users. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @category Group | 
					
						
							| 
									
										
										
										
											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-01-21 11:47:23 -05:00
										 |  |  |  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 | 
					
						
							| 
									
										
										
										
											2009-08-25 18:16:46 -04:00
										 |  |  |  * @link     http://status.net/ | 
					
						
							| 
									
										
										
										
											2009-01-21 11:47:23 -05:00
										 |  |  |  */ | 
					
						
							|  |  |  | class LeavegroupAction extends Action | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     var $group = null; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Prepare to run | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2014-04-15 10:49:20 +02:00
										 |  |  |     protected function prepare(array $args=array()) | 
					
						
							| 
									
										
										
										
											2009-01-21 11:47:23 -05:00
										 |  |  |     { | 
					
						
							|  |  |  |         parent::prepare($args); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!common_logged_in()) { | 
					
						
							| 
									
										
										
										
											2011-01-21 22:45:37 +01:00
										 |  |  |             // TRANS: Client error displayed when trying to leave a group while not logged in.
 | 
					
						
							| 
									
										
										
										
											2009-01-22 08:01:40 +00:00
										 |  |  |             $this->clientError(_('You must be logged in to leave a group.')); | 
					
						
							| 
									
										
										
										
											2009-01-21 11:47:23 -05:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $nickname_arg = $this->trimmed('nickname'); | 
					
						
							| 
									
										
										
										
											2010-02-25 13:02:08 -08:00
										 |  |  |         $id = intval($this->arg('id')); | 
					
						
							|  |  |  |         if ($id) { | 
					
						
							| 
									
										
										
										
											2013-08-18 13:04:58 +02:00
										 |  |  |             $this->group = User_group::getKV('id', $id); | 
					
						
							| 
									
										
										
										
											2010-02-25 13:02:08 -08:00
										 |  |  |         } else if ($nickname_arg) { | 
					
						
							|  |  |  |             $nickname = common_canonical_nickname($nickname_arg); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             // Permanent redirect on non-canonical nickname
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if ($nickname_arg != $nickname) { | 
					
						
							|  |  |  |                 $args = array('nickname' => $nickname); | 
					
						
							|  |  |  |                 common_redirect(common_local_url('leavegroup', $args), 301); | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2009-01-21 11:47:23 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-18 13:04:58 +02:00
										 |  |  |             $local = Local_group::getKV('nickname', $nickname); | 
					
						
							| 
									
										
										
										
											2009-01-21 11:47:23 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-25 13:02:08 -08:00
										 |  |  |             if (!$local) { | 
					
						
							| 
									
										
										
										
											2011-01-21 22:45:37 +01:00
										 |  |  |                 // TRANS: Client error displayed when trying to leave a non-local group.
 | 
					
						
							| 
									
										
										
										
											2010-02-25 13:02:08 -08:00
										 |  |  |                 $this->clientError(_('No such group.'), 404); | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2010-02-25 08:44:15 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-18 13:04:58 +02:00
										 |  |  |             $this->group = User_group::getKV('id', $local->group_id); | 
					
						
							| 
									
										
										
										
											2010-02-25 13:02:08 -08:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2011-01-21 22:45:37 +01:00
										 |  |  |             // TRANS: Client error displayed when trying to leave a group without providing a group name or group ID.
 | 
					
						
							| 
									
										
										
										
											2010-02-25 13:02:08 -08:00
										 |  |  |             $this->clientError(_('No nickname or ID.'), 404); | 
					
						
							| 
									
										
										
										
											2010-02-25 08:44:15 -05:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-21 11:47:23 -05:00
										 |  |  |         if (!$this->group) { | 
					
						
							| 
									
										
										
										
											2011-01-21 22:45:37 +01:00
										 |  |  |             // TRANS: Client error displayed when trying to leave a non-existing group.
 | 
					
						
							| 
									
										
										
										
											2009-01-22 08:01:40 +00:00
										 |  |  |             $this->clientError(_('No such group.'), 404); | 
					
						
							| 
									
										
										
										
											2009-01-21 11:47:23 -05:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-15 10:49:20 +02:00
										 |  |  |         if (!$this->scoped->isMember($this->group)) { | 
					
						
							| 
									
										
										
										
											2011-01-21 22:45:37 +01:00
										 |  |  |             // TRANS: Client error displayed when trying to join a group while already a member.
 | 
					
						
							| 
									
										
										
										
											2009-01-22 08:01:40 +00:00
										 |  |  |             $this->clientError(_('You are not a member of that group.'), 403); | 
					
						
							| 
									
										
										
										
											2009-01-21 11:47:23 -05:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Handle the request | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * On POST, add the current user to the group | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2014-04-15 10:49:20 +02:00
										 |  |  |     protected function handle() | 
					
						
							| 
									
										
										
										
											2009-01-21 11:47:23 -05:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2014-04-15 10:49:20 +02:00
										 |  |  |         parent::handle(); | 
					
						
							| 
									
										
										
										
											2009-01-21 11:47:23 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-13 02:16:13 -08:00
										 |  |  |         try { | 
					
						
							| 
									
										
										
										
											2014-04-15 10:49:20 +02:00
										 |  |  |             $this->scoped->leaveGroup($this->group); | 
					
						
							| 
									
										
										
										
											2010-01-13 02:16:13 -08:00
										 |  |  |         } catch (Exception $e) { | 
					
						
							| 
									
										
										
										
											2014-04-15 10:49:20 +02:00
										 |  |  |             common_log(LOG_ERR, "Error when {$this->scoped->nickname} tried to leave {$this->group->nickname}: " . $e->getMessage()); | 
					
						
							| 
									
										
										
										
											2011-01-21 22:45:37 +01:00
										 |  |  |             // TRANS: Server error displayed when leaving a group failed in the database.
 | 
					
						
							|  |  |  |             // TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed.
 | 
					
						
							| 
									
										
										
										
											2010-01-10 01:45:58 +01:00
										 |  |  |             $this->serverError(sprintf(_('Could not remove user %1$s from group %2$s.'), | 
					
						
							| 
									
										
										
										
											2014-04-15 10:49:20 +02:00
										 |  |  |                                        $this->scoped->nickname, $this->group->nickname)); | 
					
						
							| 
									
										
										
										
											2010-01-13 02:16:13 -08:00
										 |  |  |             return; | 
					
						
							| 
									
										
										
										
											2009-01-21 11:47:23 -05:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if ($this->boolean('ajax')) { | 
					
						
							|  |  |  |             $this->startHTML('text/xml;charset=utf-8'); | 
					
						
							|  |  |  |             $this->elementStart('head'); | 
					
						
							| 
									
										
										
										
											2011-01-21 22:45:37 +01:00
										 |  |  |             // TRANS: Title for leave group page after leaving.
 | 
					
						
							|  |  |  |             $this->element('title', null, sprintf(_m('TITLE','%1$s left group %2$s'), | 
					
						
							| 
									
										
										
										
											2014-04-15 10:49:20 +02:00
										 |  |  |                                                   $this->scoped->nickname, | 
					
						
							| 
									
										
										
										
											2009-01-21 11:47:23 -05:00
										 |  |  |                                                   $this->group->nickname)); | 
					
						
							|  |  |  |             $this->elementEnd('head'); | 
					
						
							|  |  |  |             $this->elementStart('body'); | 
					
						
							|  |  |  |             $jf = new JoinForm($this, $this->group); | 
					
						
							|  |  |  |             $jf->show(); | 
					
						
							|  |  |  |             $this->elementEnd('body'); | 
					
						
							| 
									
										
										
										
											2013-09-24 02:32:17 +02:00
										 |  |  |             $this->endHTML(); | 
					
						
							| 
									
										
										
										
											2009-01-21 11:47:23 -05:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2014-03-10 00:19:35 +01:00
										 |  |  |             common_redirect(common_local_url('groupmembers', array('nickname' => $this->group->nickname)), 303); | 
					
						
							| 
									
										
										
										
											2009-01-21 11:47:23 -05:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-01-22 08:01:40 +00:00
										 |  |  | } |