MediaWiki  1.27.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 }
A special page subclass for authentication-related special pages.
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
static newFatal($message)
Factory function for fatal errors.
Definition: StatusValue.php:63
this hook is for auditing only $response
Definition: hooks.txt:762
displayForm($status)
Display the form.
outputHeader($summaryMessageKey= '')
Outputs a summary message on top of special pages Per default the message key is the canonical name o...
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses after processing 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 unsetoffset-wrap String Wrap the message in html(usually something like"&lt
performAuthenticationStep($action, array $requests)
setHeaders()
Sets headers - this should be called from the execute() method of all derived classes! ...
getGroupName()
Under which header this special page is listed in Special:SpecialPages.
static newGood($value=null)
Factory function for good results.
Definition: StatusValue.php:76
loadAuth($subPage, $authAction=null, $reset=false)
Load or initialize $authAction, $authRequests and $subPage.
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:242
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
getUser()
Shortcut to get the User executing this instance.
getConfig()
Shortcut to get main config object.
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:1004
string $subPage
Subpage of the special page.
static newGood($value=null)
Factory function for good results.
Definition: Status.php:101
trySubmit()
Attempts to do an authentication step with the submitted data.