MediaWiki master
SpecialUnlinkAccounts.php
Go to the documentation of this file.
1<?php
2
3namespace MediaWiki\Specials;
4
12use StatusValue;
13
19 protected static $allowedActions = [ AuthManager::ACTION_UNLINK ];
20
24 public function __construct( AuthManager $authManager ) {
25 parent::__construct( 'UnlinkAccounts' );
26 $this->setAuthManager( $authManager );
27 }
28
29 protected function getLoginSecurityLevel() {
30 return 'UnlinkAccount';
31 }
32
33 protected function getDefaultAction( $subPage ) {
34 return AuthManager::ACTION_UNLINK;
35 }
36
41 protected function getGroupName() {
42 return 'login';
43 }
44
45 public function isListed() {
46 return $this->getAuthManager()->canLinkAccounts();
47 }
48
49 protected function getRequestBlacklist() {
51 }
52
53 public function execute( $subPage ) {
54 $this->setHeaders();
55 $this->loadAuth( $subPage );
56
57 if ( !$this->isActionAllowed( $this->authAction ) ) {
58 if ( $this->authAction === AuthManager::ACTION_UNLINK ) {
59 // Looks like there are no linked accounts to unlink
60 $titleMessage = $this->msg( 'cannotunlink-no-provider-title' );
61 $errorMessage = $this->msg( 'cannotunlink-no-provider' );
62 throw new ErrorPageError( $titleMessage, $errorMessage );
63 } else {
64 // user probably back-button-navigated into an auth session that no longer exists
65 // FIXME would be nice to show a message
66 $this->getOutput()->redirect( $this->getPageTitle()->getFullURL( '', false, PROTO_HTTPS ) );
67 return;
68 }
69 }
70
71 $this->outputHeader();
72
73 $status = $this->trySubmit();
74
75 if ( $status === false || !$status->isOK() ) {
76 $this->displayForm( $status );
77 return;
78 }
79
81 $response = $status->getValue();
82
83 if ( $response->status === AuthenticationResponse::FAIL ) {
84 $this->displayForm( StatusValue::newFatal( $response->message ) );
85 return;
86 }
87
88 $status = StatusValue::newGood();
89 $status->warning( $this->msg( 'unlinkaccounts-success' ) );
90 $this->loadAuth( $subPage, null, true ); // update requests so the unlinked one doesn't show up
91
92 // Reset sessions - if the user unlinked an account because it was compromised,
93 // log attackers out from sessions obtained via that account.
94 $session = $this->getRequest()->getSession();
95 $user = $this->getUser();
96 SessionManager::singleton()->invalidateSessionsForUser( $user );
97 $session->setUser( $user );
98 $session->resetId();
99
100 $this->displayForm( $status );
101 }
102
103 public function handleFormSubmit( $data ) {
104 // unlink requests do not accept user input so repeat parent code but skip call to
105 // AuthenticationRequest::loadRequestsFromSubmission
106 $response = $this->performAuthenticationStep( $this->authAction, $this->authRequests );
107 return Status::newGood( $response );
108 }
109}
110
115class_alias( SpecialUnlinkAccounts::class, 'SpecialUnlinkAccounts' );
const PROTO_HTTPS
Definition Defines.php:205
An error page which can definitely be safely rendered using the OutputPage.
This serves as the entry point to the authentication system.
This is a value object to hold authentication response data.
A class containing constants representing the names of configuration variables.
const RemoveCredentialsBlacklist
Name constant for the RemoveCredentialsBlacklist setting, for use with Config::get()
This serves as the entry point to the MediaWiki session handling system.
A special page subclass for authentication-related special pages.
isActionAllowed( $action)
Checks whether AuthManager is ready to perform the action.
trySubmit()
Attempts to do an authentication step with the submitted data.
loadAuth( $subPage, $authAction=null, $reset=false)
Load or initialize $authAction, $authRequests and $subPage.
getRequest()
Get the WebRequest being used for this instance.
setHeaders()
Sets headers - this should be called from the execute() method of all derived classes!
getUser()
Shortcut to get the User executing this instance.
setAuthManager(AuthManager $authManager)
Set the injected AuthManager from the special page constructor.
getPageTitle( $subpage=false)
Get a self-referential title object.
getConfig()
Shortcut to get main config object.
msg( $key,... $params)
Wrapper around wfMessage that sets the current context.
getOutput()
Get the OutputPage being used for this instance.
outputHeader( $summaryMessageKey='')
Outputs a summary message on top of special pages By default the message key is the canonical name of...
getDefaultAction( $subPage)
Get the default action for this special page if none is given via URL/POST data.
execute( $subPage)
Default execute method Checks user permissions.
getRequestBlacklist()
Allows blacklisting certain request types.
isListed()
Whether this special page is listed in Special:SpecialPages.
handleFormSubmit( $data)
Submit handler callback for HTMLForm.
getGroupName()
Under which header this special page is listed in Special:SpecialPages.
Generic operation result class Has warning/error list, boolean status and arbitrary value.
Definition Status.php:54
Generic operation result class Has warning/error list, boolean status and arbitrary value.