| 
									
										
										
										
											2008-12-08 00:55:11 -05:00
										 |  |  | <?php | 
					
						
							| 
									
										
										
										
											2009-01-22 06:02:23 +00:00
										 |  |  | /** | 
					
						
							|  |  |  |  * Block a user 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> | 
					
						
							|  |  |  |  * @author   Robin Millette <millette@status.net> | 
					
						
							| 
									
										
										
										
											2009-01-22 06:02:23 +00:00
										 |  |  |  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 | 
					
						
							| 
									
										
										
										
											2009-08-25 18:16:46 -04:00
										 |  |  |  * @link     http://status.net/ | 
					
						
							| 
									
										
										
										
											2009-01-22 06:02:23 +00: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. | 
					
						
							| 
									
										
										
										
											2008-12-08 00:55:11 -05: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-01-22 06:02:23 +00:00
										 |  |  |     exit(1); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2008-12-08 00:55:11 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-22 06:02:23 +00:00
										 |  |  | /** | 
					
						
							|  |  |  |  * Block a user action class. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @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> | 
					
						
							|  |  |  |  * @author   Robin Millette <millette@status.net> | 
					
						
							| 
									
										
										
										
											2009-01-22 06:02:23 +00:00
										 |  |  |  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 | 
					
						
							| 
									
										
										
										
											2009-08-25 18:16:46 -04:00
										 |  |  |  * @link     http://status.net/ | 
					
						
							| 
									
										
										
										
											2009-01-22 06:02:23 +00:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2009-11-16 16:14:49 +01:00
										 |  |  | class BlockAction extends ProfileFormAction | 
					
						
							| 
									
										
										
										
											2008-12-23 14:49:23 -05:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-12-23 14:21:29 -05:00
										 |  |  |     var $profile = null; | 
					
						
							| 
									
										
										
										
											2009-11-16 16:14:49 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-22 06:02:23 +00:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Take arguments for running | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param array $args $_REQUEST args | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return boolean success flag | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2008-12-23 14:33:23 -05:00
										 |  |  |     function prepare($args) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-11-16 16:14:49 +01:00
										 |  |  |         if (!parent::prepare($args)) { | 
					
						
							| 
									
										
										
										
											2008-12-08 00:55:11 -05:00
										 |  |  |             return false; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-11-16 16:14:49 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         $cur = common_current_user(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         assert(!empty($cur)); // checked by parent
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if ($cur->hasBlocked($this->profile)) { | 
					
						
							| 
									
										
										
										
											2010-10-31 00:58:35 +02:00
										 |  |  |             // TRANS: Client error displayed when blocking a user that has already been blocked.
 | 
					
						
							| 
									
										
										
										
											2010-04-10 00:58:57 +02:00
										 |  |  |             $this->clientError(_('You already blocked that user.')); | 
					
						
							| 
									
										
										
										
											2008-12-08 00:55:11 -05:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-11-16 16:14:49 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-08 02:17:20 -05:00
										 |  |  |         return true; | 
					
						
							| 
									
										
										
										
											2008-12-08 00:55:11 -05:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-22 06:02:23 +00:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Handle request | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param array $args $_REQUEST args; handled in prepare() | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2008-12-23 14:33:23 -05:00
										 |  |  |     function handle($args) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2008-12-08 00:55:11 -05:00
										 |  |  |         if ($_SERVER['REQUEST_METHOD'] == 'POST') { | 
					
						
							| 
									
										
										
										
											2009-01-23 04:29:21 +00:00
										 |  |  |             if ($this->arg('no')) { | 
					
						
							| 
									
										
										
										
											2010-05-20 12:46:36 -07:00
										 |  |  |                 $this->returnToPrevious(); | 
					
						
							| 
									
										
										
										
											2009-01-23 04:29:21 +00:00
										 |  |  |             } elseif ($this->arg('yes')) { | 
					
						
							| 
									
										
										
										
											2009-11-16 16:14:49 +01:00
										 |  |  |                 $this->handlePost(); | 
					
						
							| 
									
										
										
										
											2010-05-20 12:46:36 -07:00
										 |  |  |                 $this->returnToPrevious(); | 
					
						
							| 
									
										
										
										
											2009-11-16 14:40:04 +01:00
										 |  |  |             } else { | 
					
						
							| 
									
										
										
										
											2009-01-23 04:29:21 +00:00
										 |  |  |                 $this->showPage(); | 
					
						
							| 
									
										
										
										
											2008-12-08 00:55:11 -05:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2010-05-20 12:46:36 -07:00
										 |  |  |         } else { | 
					
						
							|  |  |  |             $this->showPage(); | 
					
						
							| 
									
										
										
										
											2008-12-08 00:55:11 -05:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-23 04:29:21 +00:00
										 |  |  |     function showContent() { | 
					
						
							|  |  |  |         $this->areYouSureForm(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     function title() { | 
					
						
							| 
									
										
										
										
											2010-10-31 00:58:35 +02:00
										 |  |  |         // TRANS: Title for block user page.
 | 
					
						
							| 
									
										
										
										
											2009-01-23 04:29:21 +00:00
										 |  |  |         return _('Block user'); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-04-01 15:30:59 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-23 04:29:21 +00:00
										 |  |  |     function showNoticeForm() { | 
					
						
							|  |  |  |         // nop
 | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-22 06:02:23 +00:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Confirm with user. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * Shows a confirmation form. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     function areYouSureForm() | 
					
						
							| 
									
										
										
										
											2008-12-23 14:33:23 -05:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2010-05-20 12:46:36 -07:00
										 |  |  |         // @fixme if we ajaxify the confirmation form, skip the preview on ajax hits
 | 
					
						
							|  |  |  |         $profile = new ArrayWrapper(array($this->profile)); | 
					
						
							|  |  |  |         $preview = new ProfileList($profile, $this); | 
					
						
							|  |  |  |         $preview->show(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-08 00:55:11 -05:00
										 |  |  |         $id = $this->profile->id; | 
					
						
							| 
									
										
										
										
											2009-06-17 08:14:01 +00:00
										 |  |  |         $this->elementStart('form', array('id' => 'block-' . $id, | 
					
						
							|  |  |  |                                            'method' => 'post', | 
					
						
							|  |  |  |                                            'class' => 'form_settings form_entity_block', | 
					
						
							|  |  |  |                                            'action' => common_local_url('block'))); | 
					
						
							|  |  |  |         $this->elementStart('fieldset'); | 
					
						
							|  |  |  |         $this->hidden('token', common_session_token()); | 
					
						
							| 
									
										
										
										
											2010-10-31 00:58:35 +02:00
										 |  |  |         // TRANS: Legend for block user form.
 | 
					
						
							| 
									
										
										
										
											2009-06-17 08:14:01 +00:00
										 |  |  |         $this->element('legend', _('Block user')); | 
					
						
							| 
									
										
										
										
											2009-01-15 22:57:15 +00:00
										 |  |  |         $this->element('p', null, | 
					
						
							| 
									
										
										
										
											2010-10-31 00:58:35 +02:00
										 |  |  |                        // TRANS: Explanation of consequences when blocking a user on the block user page.
 | 
					
						
							| 
									
										
										
										
											2008-12-08 02:26:29 -05:00
										 |  |  |                        _('Are you sure you want to block this user? '. | 
					
						
							|  |  |  |                          'Afterwards, they will be unsubscribed from you, '. | 
					
						
							|  |  |  |                          'unable to subscribe to you in the future, and '. | 
					
						
							|  |  |  |                          'you will not be notified of any @-replies from them.')); | 
					
						
							| 
									
										
										
										
											2009-01-15 22:57:15 +00:00
										 |  |  |         $this->element('input', array('id' => 'blockto-' . $id, | 
					
						
							| 
									
										
										
										
											2009-11-16 14:40:04 +01:00
										 |  |  |                                       'name' => 'profileid', | 
					
						
							| 
									
										
										
										
											2008-12-08 00:55:11 -05:00
										 |  |  |                                       'type' => 'hidden', | 
					
						
							|  |  |  |                                       'value' => $id)); | 
					
						
							| 
									
										
										
										
											2008-12-08 12:09:31 -05:00
										 |  |  |         foreach ($this->args as $k => $v) { | 
					
						
							|  |  |  |             if (substr($k, 0, 9) == 'returnto-') { | 
					
						
							| 
									
										
										
										
											2009-01-15 22:57:15 +00:00
										 |  |  |                 $this->hidden($k, $v); | 
					
						
							| 
									
										
										
										
											2008-12-08 12:09:31 -05:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-04-11 21:04:07 +02:00
										 |  |  |         $this->submit('form_action-no', | 
					
						
							|  |  |  |                       // TRANS: Button label on the user block form.
 | 
					
						
							|  |  |  |                       _m('BUTTON','No'), | 
					
						
							|  |  |  |                       'submit form_action-primary', | 
					
						
							|  |  |  |                       'no', | 
					
						
							|  |  |  |                       // TRANS: Submit button title for 'No' when blocking a user.
 | 
					
						
							| 
									
										
										
										
											2011-02-17 00:39:53 +01:00
										 |  |  |                       _('Do not block this user.')); | 
					
						
							| 
									
										
										
										
											2010-04-11 21:04:07 +02:00
										 |  |  |         $this->submit('form_action-yes', | 
					
						
							|  |  |  |                       // TRANS: Button label on the user block form.
 | 
					
						
							|  |  |  |                       _m('BUTTON','Yes'), | 
					
						
							|  |  |  |                       'submit form_action-secondary', | 
					
						
							|  |  |  |                       'yes', | 
					
						
							|  |  |  |                       // TRANS: Submit button title for 'Yes' when blocking a user.
 | 
					
						
							| 
									
										
										
										
											2011-02-17 00:39:53 +01:00
										 |  |  |                       _('Block this user.')); | 
					
						
							| 
									
										
										
										
											2009-06-17 08:14:01 +00:00
										 |  |  |         $this->elementEnd('fieldset'); | 
					
						
							| 
									
										
										
										
											2009-01-15 22:57:15 +00:00
										 |  |  |         $this->elementEnd('form'); | 
					
						
							| 
									
										
										
										
											2008-12-08 00:55:11 -05:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-22 06:02:23 +00:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Actually block a user. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2009-11-16 16:14:49 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     function handlePost() | 
					
						
							| 
									
										
										
										
											2008-12-23 14:33:23 -05:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2008-12-08 00:55:11 -05:00
										 |  |  |         $cur = common_current_user(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-28 10:42:55 -08:00
										 |  |  |         if (Event::handle('StartBlockProfile', array($cur, $this->profile))) { | 
					
						
							|  |  |  |             $result = $cur->block($this->profile); | 
					
						
							|  |  |  |             if ($result) { | 
					
						
							|  |  |  |                 Event::handle('EndBlockProfile', array($cur, $this->profile)); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-11-16 16:14:49 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-08 00:55:11 -05:00
										 |  |  |         if (!$result) { | 
					
						
							| 
									
										
										
										
											2010-10-31 00:58:35 +02:00
										 |  |  |             // TRANS: Server error displayed when blocking a user fails.
 | 
					
						
							| 
									
										
										
										
											2009-01-15 23:03:38 +00:00
										 |  |  |             $this->serverError(_('Failed to save block information.')); | 
					
						
							| 
									
										
										
										
											2008-12-08 00:55:11 -05:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2010-04-03 10:26:43 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     function showScripts() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         parent::showScripts(); | 
					
						
							|  |  |  |         $this->autofocus('form_action-yes'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-20 12:46:36 -07:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Override for form session token checks; on our first hit we're just | 
					
						
							|  |  |  |      * requesting confirmation, which doesn't need a token. We need to be | 
					
						
							|  |  |  |      * able to take regular GET requests from email! | 
					
						
							| 
									
										
										
										
											2010-10-31 00:58:35 +02:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2010-05-20 12:46:36 -07:00
										 |  |  |      * @throws ClientException if token is bad on POST request or if we have | 
					
						
							|  |  |  |      *         confirmation parameters which could trigger something. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     function checkSessionToken() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if ($_SERVER['REQUEST_METHOD'] == 'POST' || | 
					
						
							|  |  |  |             $this->arg('yes') || | 
					
						
							|  |  |  |             $this->arg('no')) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             return parent::checkSessionToken(); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * If we reached this form without returnto arguments, return to the | 
					
						
							|  |  |  |      * current user's subscription list. | 
					
						
							| 
									
										
										
										
											2010-10-31 00:58:35 +02:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2010-05-20 12:46:36 -07:00
										 |  |  |      * @return string URL | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     function defaultReturnTo() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $user = common_current_user(); | 
					
						
							|  |  |  |         if ($user) { | 
					
						
							|  |  |  |             return common_local_url('subscribers', | 
					
						
							|  |  |  |                                     array('nickname' => $user->nickname)); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             return common_local_url('public'); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-12-08 00:55:11 -05:00
										 |  |  | } |