From: Alexandre Emsenhuber Date: Sun, 7 Aug 2011 14:41:19 +0000 (+0000) Subject: Use local context instead of global variables X-Git-Tag: 1.31.0-rc.0~28394 X-Git-Url: http://git.cyclocoop.org/url?a=commitdiff_plain;h=b6b018ef66781299c2410b3ad332ea5ef95fc48d;p=lhc%2Fweb%2Fwiklou.git Use local context instead of global variables --- diff --git a/includes/specials/SpecialUserrights.php b/includes/specials/SpecialUserrights.php index 4de048c0a5..2c2bb8f0c1 100644 --- a/includes/specials/SpecialUserrights.php +++ b/includes/specials/SpecialUserrights.php @@ -63,22 +63,24 @@ class UserrightsPage extends SpecialPage { public function execute( $par ) { // If the visitor doesn't have permissions to assign or remove // any groups, it's a bit silly to give them the user search prompt. - global $wgUser, $wgRequest, $wgOut; - if( $par !== null ) { - $this->mTarget = $par; - } else { - $this->mTarget = $wgRequest->getVal( 'user' ); - } + $user = $this->getUser(); /* * If the user is blocked and they only have "partial" access * (e.g. they don't have the userrights permission), then don't * allow them to use Special:UserRights. */ - if( $wgUser->isBlocked() && !$wgUser->isAllowed( 'userrights' ) ) { - $wgOut->blockedPage(); - return; + if( $user->isBlocked() && !$user->isAllowed( 'userrights' ) ) { + throw new UserBlockedError( $user->mBlock ); + } + + $request = $this->getRequest(); + + if( $par !== null ) { + $this->mTarget = $par; + } else { + $this->mTarget = $request->getVal( 'user' ); } $available = $this->changeableGroups(); @@ -90,29 +92,30 @@ class UserrightsPage extends SpecialPage { * target. */ if ( !count( $available['add'] ) && !count( $available['remove'] ) ) - $this->mTarget = $wgUser->getName(); + $this->mTarget = $user->getName(); } - if ( User::getCanonicalName( $this->mTarget ) == $wgUser->getName() ) { + if ( User::getCanonicalName( $this->mTarget ) == $user->getName() ) { $this->isself = true; } - if( !$this->userCanChangeRights( $wgUser, true ) ) { + $out = $this->getOutput(); + + if( !$this->userCanChangeRights( $user, true ) ) { // @todo FIXME: There may be intermediate groups we can mention. - $wgOut->showPermissionsErrorPage( array( array( - $wgUser->isAnon() + $out->showPermissionsErrorPage( array( array( + $user->isAnon() ? 'userrights-nologin' : 'userrights-notallowed' ) ) ); return; } if ( wfReadOnly() ) { - $wgOut->readOnlyPage(); - return; + throw new ReadOnlyError; } $this->outputHeader(); - $wgOut->addModuleStyles( 'mediawiki.special' ); + $out->addModuleStyles( 'mediawiki.special' ); $this->setHeaders(); // show the general form @@ -120,19 +123,18 @@ class UserrightsPage extends SpecialPage { $this->switchForm(); } - if( $wgRequest->wasPosted() ) { + if( $request->wasPosted() ) { // save settings - if( $wgRequest->getCheck( 'saveusergroups' ) ) { - $reason = $wgRequest->getVal( 'user-reason' ); - $tok = $wgRequest->getVal( 'wpEditToken' ); - if( $wgUser->matchEditToken( $tok, $this->mTarget ) ) { + if( $request->getCheck( 'saveusergroups' ) ) { + $reason = $request->getVal( 'user-reason' ); + $tok = $request->getVal( 'wpEditToken' ); + if( $user->matchEditToken( $tok, $this->mTarget ) ) { $this->saveUserGroups( $this->mTarget, $reason ); - $url = $this->getSuccessURL(); - $wgOut->redirect( $url ); + $out->redirect( $this->getSuccessURL() ); return; } } @@ -157,11 +159,9 @@ class UserrightsPage extends SpecialPage { * @return null */ function saveUserGroups( $username, $reason = '' ) { - global $wgRequest, $wgOut; - $status = $this->fetchUser( $username ); if( !$status->isOK() ) { - $wgOut->addWikiText( $status->getWikiText() ); + $this->getOutput()->addWikiText( $status->getWikiText() ); return; } else { $user = $status->value; @@ -176,7 +176,7 @@ class UserrightsPage extends SpecialPage { foreach ( $allgroups as $group ) { // We'll tell it to remove all unchecked groups, and add all checked groups. // Later on, this gets filtered for what can actually be removed - if ( $wgRequest->getCheck( "wpGroup-$group" ) ) { + if ( $this->getRequest()->getCheck( "wpGroup-$group" ) ) { $addgroup[] = $group; } else { $removegroup[] = $group; @@ -196,10 +196,8 @@ class UserrightsPage extends SpecialPage { * @return Array: Tuple of added, then removed groups */ function doSaveUserGroups( $user, $add, $remove, $reason = '' ) { - global $wgUser; - // Validate input set... - $isself = ( $user->getName() == $wgUser->getName() ); + $isself = ( $user->getName() == $this->getUser()->getName() ); $groups = $user->getGroups(); $changeable = $this->changeableGroups(); $addable = array_merge( $changeable['add'], $isself ? $changeable['add-self'] : array() ); @@ -265,11 +263,9 @@ class UserrightsPage extends SpecialPage { * @param $username String: name of the user. */ function editUserGroupsForm( $username ) { - global $wgOut; - $status = $this->fetchUser( $username ); if( !$status->isOK() ) { - $wgOut->addWikiText( $status->getWikiText() ); + $this->getOutput()->addWikiText( $status->getWikiText() ); return; } else { $user = $status->value; @@ -281,7 +277,7 @@ class UserrightsPage extends SpecialPage { // This isn't really ideal logging behavior, but let's not hide the // interwiki logs if we're using them as is. - $this->showLogFragment( $user, $wgOut ); + $this->showLogFragment( $user, $this->getOutput() ); } /** @@ -292,7 +288,7 @@ class UserrightsPage extends SpecialPage { * @return Status object */ public function fetchUser( $username ) { - global $wgUser, $wgUserrightsInterwikiDelimiter; + global $wgUserrightsInterwikiDelimiter; $parts = explode( $wgUserrightsInterwikiDelimiter, $username ); if( count( $parts ) < 2 ) { @@ -304,7 +300,7 @@ class UserrightsPage extends SpecialPage { if( $database == wfWikiID() ) { $database = ''; } else { - if( !$wgUser->isAllowed( 'userrights-interwiki' ) ) { + if( !$this->getUser()->isAllowed( 'userrights-interwiki' ) ) { return Status::newFatal( 'userrights-no-interwiki' ); } if( !UserRightsProxy::validDatabase( $database ) ) { @@ -372,8 +368,8 @@ class UserrightsPage extends SpecialPage { * Output a form to allow searching for a user */ function switchForm() { - global $wgOut, $wgScript; - $wgOut->addHTML( + global $wgScript; + $this->getOutput()->addHTML( Html::openElement( 'form', array( 'method' => 'get', 'action' => $wgScript, 'name' => 'uluser', 'id' => 'mw-userrights-form1' ) ) . Html::hidden( 'title', $this->getTitle()->getPrefixedText() ) . Xml::fieldset( wfMsg( 'userrights-lookup-user' ) ) . @@ -414,8 +410,6 @@ class UserrightsPage extends SpecialPage { * @param $groups Array: Array of groups the user is in */ protected function showEditUserGroupsForm( $user, $groups ) { - global $wgOut, $wgUser, $wgLang, $wgRequest; - $list = array(); foreach( $groups as $group ) { $list[] = self::buildGroupLink( $group ); @@ -432,17 +426,17 @@ class UserrightsPage extends SpecialPage { $count = count( $list ); if( $count > 0 ) { $grouplist = wfMessage( 'userrights-groupsmember', $count)->parse(); - $grouplist = '

' . $grouplist . ' ' . $wgLang->listToText( $list ) . "

\n"; + $grouplist = '

' . $grouplist . ' ' . $this->getLang()->listToText( $list ) . "

\n"; } $count = count( $autolist ); if( $count > 0 ) { $autogrouplistintro = wfMessage( 'userrights-groupsmember-auto', $count)->parse(); - $grouplist .= '

' . $autogrouplistintro . ' ' . $wgLang->listToText( $autolist ) . "

\n"; + $grouplist .= '

' . $autogrouplistintro . ' ' . $this->getLang()->listToText( $autolist ) . "

\n"; } - $wgOut->addHTML( + $this->getOutput()->addHTML( Xml::openElement( 'form', array( 'method' => 'post', 'action' => $this->getTitle()->getLocalURL(), 'name' => 'editGroup', 'id' => 'mw-userrights-form2' ) ) . Html::hidden( 'user', $this->mTarget ) . - Html::hidden( 'wpEditToken', $wgUser->editToken( $this->mTarget ) ) . + Html::hidden( 'wpEditToken', $this->getUser()->editToken( $this->mTarget ) ) . Xml::openElement( 'fieldset' ) . Xml::element( 'legend', array(), wfMsg( 'userrights-editusergroup' ) ) . wfMsgExt( 'editinguser', array( 'parse' ), wfEscapeWikiText( $user->getName() ) ) . @@ -455,7 +449,7 @@ class UserrightsPage extends SpecialPage { Xml::label( wfMsg( 'userrights-reason' ), 'wpReason' ) . " " . - Xml::input( 'user-reason', 60, $wgRequest->getVal( 'user-reason', false ), + Xml::input( 'user-reason', 60, $this->getRequest()->getVal( 'user-reason', false ), array( 'id' => 'wpReason', 'maxlength' => 255 ) ) . " @@ -588,13 +582,12 @@ class UserrightsPage extends SpecialPage { } /** - * Returns $wgUser->changeableGroups() + * Returns $this->getUser()->changeableGroups() * * @return Array array( 'add' => array( addablegroups ), 'remove' => array( removablegroups ) , 'add-self' => array( addablegroups to self), 'remove-self' => array( removable groups from self) ) */ function changeableGroups() { - global $wgUser; - return $wgUser->changeableGroups(); + return $this->getUser()->changeableGroups(); } /**