MediaWiki  1.29.2
SpecialUnlinkAccounts.php
Go to the documentation of this file.
1 <?php
2 
6 
8  protected static $allowedActions = [ AuthManager::ACTION_UNLINK ];
9 
10  public function __construct() {
11  parent::__construct( 'UnlinkAccounts' );
12  }
13 
14  protected function getLoginSecurityLevel() {
15  return 'UnlinkAccount';
16  }
17 
18  protected function getDefaultAction( $subPage ) {
19  return AuthManager::ACTION_UNLINK;
20  }
21 
25  protected function getGroupName() {
26  return 'users';
27  }
28 
29  public function isListed() {
30  return AuthManager::singleton()->canLinkAccounts();
31  }
32 
33  protected function getRequestBlacklist() {
34  return $this->getConfig()->get( 'RemoveCredentialsBlacklist' );
35  }
36 
37  public function execute( $subPage ) {
38  $this->setHeaders();
39  $this->loadAuth( $subPage );
40  $this->outputHeader();
41 
42  $status = $this->trySubmit();
43 
44  if ( $status === false || !$status->isOK() ) {
45  $this->displayForm( $status );
46  return;
47  }
48 
50  $response = $status->getValue();
51 
52  if ( $response->status === AuthenticationResponse::FAIL ) {
53  $this->displayForm( StatusValue::newFatal( $response->message ) );
54  return;
55  }
56 
58  $status->warning( wfMessage( 'unlinkaccounts-success' ) );
59  $this->loadAuth( $subPage, null, true ); // update requests so the unlinked one doesn't show up
60 
61  // Reset sessions - if the user unlinked an account because it was compromised,
62  // log attackers out from sessions obtained via that account.
63  $session = $this->getRequest()->getSession();
64  $user = $this->getUser();
65  SessionManager::singleton()->invalidateSessionsForUser( $user );
66  $session->setUser( $user );
67  $session->resetId();
68 
69  $this->displayForm( $status );
70  }
71 
72  public function handleFormSubmit( $data ) {
73  // unlink requests do not accept user input so repeat parent code but skip call to
74  // AuthenticationRequest::loadRequestsFromSubmission
75  $response = $this->performAuthenticationStep( $this->authAction, $this->authRequests );
76  return Status::newGood( $response );
77  }
78 }
SpecialUnlinkAccounts\getLoginSecurityLevel
getLoginSecurityLevel()
Tells if the special page does something security-sensitive and needs extra defense against a stolen ...
Definition: SpecialUnlinkAccounts.php:14
AuthManagerSpecialPage\displayForm
displayForm( $status)
Display the form.
Definition: AuthManagerSpecialPage.php:547
$status
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist and Watchlist you will want to construct new ChangesListBooleanFilter or ChangesListStringOptionsFilter objects When constructing you specify which group they belong to You can reuse existing or create your you must register them with $special registerFilterGroup removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set $status
Definition: hooks.txt:1049
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
$user
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a account $user
Definition: hooks.txt:246
StatusValue\newFatal
static newFatal( $message)
Factory function for fatal errors.
Definition: StatusValue.php:63
SpecialUnlinkAccounts\isListed
isListed()
Whether this special page is listed in Special:SpecialPages.
Definition: SpecialUnlinkAccounts.php:29
AuthManagerSpecialPage
A special page subclass for authentication-related special pages.
Definition: AuthManagerSpecialPage.php:14
SpecialUnlinkAccounts\__construct
__construct()
Definition: SpecialUnlinkAccounts.php:10
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
AuthManagerSpecialPage\trySubmit
trySubmit()
Attempts to do an authentication step with the submitted data.
Definition: AuthManagerSpecialPage.php:397
SpecialUnlinkAccounts\getDefaultAction
getDefaultAction( $subPage)
Get the default action for this special page, if none is given via URL/POST data.
Definition: SpecialUnlinkAccounts.php:18
AuthManagerSpecialPage\$subPage
string $subPage
Subpage of the special page.
Definition: AuthManagerSpecialPage.php:34
AuthManagerSpecialPage\performAuthenticationStep
performAuthenticationStep( $action, array $requests)
Definition: AuthManagerSpecialPage.php:342
SpecialPage\getConfig
getConfig()
Shortcut to get main config object.
Definition: SpecialPage.php:714
SpecialUnlinkAccounts\getGroupName
getGroupName()
Under which header this special page is listed in Special:SpecialPages.
Definition: SpecialUnlinkAccounts.php:25
MediaWiki\Auth\AuthenticationResponse
This is a value object to hold authentication response data.
Definition: AuthenticationResponse.php:37
SpecialUnlinkAccounts\execute
execute( $subPage)
Default execute method Checks user permissions.
Definition: SpecialUnlinkAccounts.php:37
AuthManagerSpecialPage\loadAuth
loadAuth( $subPage, $authAction=null, $reset=false)
Load or initialize $authAction, $authRequests and $subPage.
Definition: AuthManagerSpecialPage.php:231
SpecialUnlinkAccounts\getRequestBlacklist
getRequestBlacklist()
Allows blacklisting certain request types.
Definition: SpecialUnlinkAccounts.php:33
SpecialPage\setHeaders
setHeaders()
Sets headers - this should be called from the execute() method of all derived classes!
Definition: SpecialPage.php:484
SpecialPage\getUser
getUser()
Shortcut to get the User executing this instance.
Definition: SpecialPage.php:685
SpecialUnlinkAccounts\handleFormSubmit
handleFormSubmit( $data)
Submit handler callback for HTMLForm.
Definition: SpecialUnlinkAccounts.php:72
SpecialUnlinkAccounts
Definition: SpecialUnlinkAccounts.php:7
StatusValue\newGood
static newGood( $value=null)
Factory function for good results.
Definition: StatusValue.php:76
MediaWiki\Session\SessionManager
This serves as the entry point to the MediaWiki session handling system.
Definition: SessionManager.php:49
$response
this hook is for auditing only $response
Definition: hooks.txt:783
MediaWiki\Auth\AuthManager
This serves as the entry point to the authentication system.
Definition: AuthManager.php:82
SpecialUnlinkAccounts\$allowedActions
static $allowedActions
Definition: SpecialUnlinkAccounts.php:8
AuthManagerSpecialPage\getRequest
getRequest()
Get the WebRequest being used for this instance.
Definition: AuthManagerSpecialPage.php:63
wfMessage
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "&lt
SpecialPage\outputHeader
outputHeader( $summaryMessageKey='')
Outputs a summary message on top of special pages Per default the message key is the canonical name o...
Definition: SpecialPage.php:583