MediaWiki REL1_28
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
57 $status = StatusValue::newGood();
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}
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
A special page subclass for authentication-related special pages.
performAuthenticationStep( $action, array $requests)
displayForm( $status)
Display the form.
loadAuth( $subPage, $authAction=null, $reset=false)
Load or initialize $authAction, $authRequests and $subPage.
string $subPage
Subpage of the special page.
getRequest()
Get the WebRequest being used for this instance.
trySubmit()
Attempts to do an authentication step with the submitted data.
This serves as the entry point to the authentication system.
This is a value object to hold authentication response data.
This serves as the entry point to the MediaWiki session handling system.
outputHeader( $summaryMessageKey='')
Outputs a summary message on top of special pages Per default the message key is the canonical name o...
setHeaders()
Sets headers - this should be called from the execute() method of all derived classes!
getUser()
Shortcut to get the User executing this instance.
getConfig()
Shortcut to get main config object.
handleFormSubmit( $data)
Submit handler callback for HTMLForm.
execute( $subPage)
Default execute method Checks user permissions.
getLoginSecurityLevel()
Tells if the special page does something security-sensitive and needs extra defense against a stolen ...
getGroupName()
Under which header this special page is listed in Special:SpecialPages.
isListed()
Whether this special page is listed in Special:SpecialPages.
getDefaultAction( $subPage)
Get the default action for this special page, if none is given via URL/POST data.
getRequestBlacklist()
Allows blacklisting certain request types.
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist 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
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 local account $user
Definition hooks.txt:249
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;div ...>$1&lt;/div>"). - flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException':Called before an exception(or PHP error) is logged. This is meant for integration with external error aggregation services
this hook is for auditing only $response
Definition hooks.txt:805
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:37