MediaWiki master
SpecialUnlinkAccounts.php
Go to the documentation of this file.
1<?php
2
3namespace MediaWiki\Specials;
4
12use StatusValue;
13
20 protected static $allowedActions = [ AuthManager::ACTION_UNLINK ];
21
25 public function __construct( AuthManager $authManager ) {
26 parent::__construct( 'UnlinkAccounts' );
27 $this->setAuthManager( $authManager );
28 }
29
30 protected function getLoginSecurityLevel() {
31 return 'UnlinkAccount';
32 }
33
34 protected function getDefaultAction( $subPage ) {
35 return AuthManager::ACTION_UNLINK;
36 }
37
42 protected function getGroupName() {
43 return 'login';
44 }
45
46 public function isListed() {
47 return $this->getAuthManager()->canLinkAccounts();
48 }
49
50 protected function getRequestBlacklist() {
52 }
53
54 public function execute( $subPage ) {
55 $this->setHeaders();
56 $this->loadAuth( $subPage );
57
58 if ( !$this->isActionAllowed( $this->authAction ) ) {
59 if ( $this->authAction === AuthManager::ACTION_UNLINK ) {
60 // Looks like there are no linked accounts to unlink
61 $titleMessage = $this->msg( 'cannotunlink-no-provider-title' );
62 $errorMessage = $this->msg( 'cannotunlink-no-provider' );
63 throw new ErrorPageError( $titleMessage, $errorMessage );
64 } else {
65 // user probably back-button-navigated into an auth session that no longer exists
66 // FIXME would be nice to show a message
67 $this->getOutput()->redirect( $this->getPageTitle()->getFullURL( '', false, PROTO_HTTPS ) );
68 return;
69 }
70 }
71
72 $this->outputHeader();
73
74 $status = $this->trySubmit();
75
76 if ( $status === false || !$status->isOK() ) {
77 $this->displayForm( $status );
78 return;
79 }
80
82 $response = $status->getValue();
83
84 if ( $response->status === AuthenticationResponse::FAIL ) {
85 $this->displayForm( StatusValue::newFatal( $response->message ) );
86 return;
87 }
88
89 $status = StatusValue::newGood();
90 $status->warning( $this->msg( 'unlinkaccounts-success' ) );
91 $this->loadAuth( $subPage, null, true ); // update requests so the unlinked one doesn't show up
92
93 // Reset sessions - if the user unlinked an account because it was compromised,
94 // log attackers out from sessions obtained via that account.
95 $session = $this->getRequest()->getSession();
96 $user = $this->getUser();
97 SessionManager::singleton()->invalidateSessionsForUser( $user );
98 $session->setUser( $user );
99 $session->resetId();
100
101 $this->displayForm( $status );
102 }
103
104 public function handleFormSubmit( $data ) {
105 // unlink requests do not accept user input so repeat parent code but skip call to
106 // AuthenticationRequest::loadRequestsFromSubmission
107 $response = $this->performAuthenticationStep( $this->authAction, $this->authRequests );
108 return Status::newGood( $response );
109 }
110}
111
116class_alias( SpecialUnlinkAccounts::class, 'SpecialUnlinkAccounts' );
const PROTO_HTTPS
Definition Defines.php:211
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.