MediaWiki REL1_28
SpecialCreateAccount.php
Go to the documentation of this file.
1<?php
26
33 protected static $allowedActions = [
34 AuthManager::ACTION_CREATE,
35 AuthManager::ACTION_CREATE_CONTINUE
36 ];
37
38 protected static $messages = [
39 'authform-newtoken' => 'nocookiesfornew',
40 'authform-notoken' => 'sessionfailure',
41 'authform-wrongtoken' => 'sessionfailure',
42 ];
43
44 public function __construct() {
45 parent::__construct( 'CreateAccount' );
46 }
47
48 public function doesWrites() {
49 return true;
50 }
51
52 public function isRestricted() {
53 return !User::groupHasPermission( '*', 'createaccount' );
54 }
55
56 public function userCanExecute( User $user ) {
57 return $user->isAllowed( 'createaccount' );
58 }
59
60 public function checkPermissions() {
61 parent::checkPermissions();
62
63 $user = $this->getUser();
64 $status = AuthManager::singleton()->checkAccountCreatePermissions( $user );
65 if ( !$status->isGood() ) {
66 throw new ErrorPageError( 'createacct-error', $status->getMessage() );
67 }
68 }
69
70 protected function getLoginSecurityLevel() {
71 return false;
72 }
73
74 protected function getDefaultAction( $subPage ) {
75 return AuthManager::ACTION_CREATE;
76 }
77
78 public function getDescription() {
79 return $this->msg( 'createaccount' )->text();
80 }
81
82 protected function isSignup() {
83 return true;
84 }
85
93 protected function successfulAction( $direct = false, $extraMessages = null ) {
94 $session = $this->getRequest()->getSession();
95 $user = $this->targetUser ?: $this->getUser();
96
97 if ( $direct ) {
98 # Only save preferences if the user is not creating an account for someone else.
99 if ( !$this->proxyAccountCreation ) {
100 Hooks::run( 'AddNewAccount', [ $user, false ] );
101
102 // If the user does not have a session cookie at this point, they probably need to
103 // do something to their browser.
104 if ( !$this->hasSessionCookie() ) {
105 $this->mainLoginForm( [ /*?*/ ], $session->getProvider()->whyNoSession() );
106 // TODO something more specific? This used to use nocookiesnew
107 // FIXME should redirect to login page instead?
108 return;
109 }
110 } else {
111 $byEmail = false; // FIXME no way to set this
112
113 Hooks::run( 'AddNewAccount', [ $user, $byEmail ] );
114
115 $out = $this->getOutput();
116 $out->setPageTitle( $this->msg( $byEmail ? 'accmailtitle' : 'accountcreated' ) );
117 if ( $byEmail ) {
118 $out->addWikiMsg( 'accmailtext', $user->getName(), $user->getEmail() );
119 } else {
120 $out->addWikiMsg( 'accountcreatedtext', $user->getName() );
121 }
122
123 $rt = Title::newFromText( $this->mReturnTo );
124 $out->addReturnTo(
125 ( $rt && !$rt->isExternal() ) ? $rt : $this->getPageTitle(),
126 wfCgiToArray( $this->mReturnToQuery )
127 );
128 return;
129 }
130 }
131
132 $this->clearToken();
133
134 # Run any hooks; display injected HTML
135 $injected_html = '';
136 $welcome_creation_msg = 'welcomecreation-msg';
137 Hooks::run( 'UserLoginComplete', [ &$user, &$injected_html, $direct ] );
138
144 Hooks::run( 'BeforeWelcomeCreation', [ &$welcome_creation_msg, &$injected_html ] );
145
146 $this->showSuccessPage( 'signup', $this->msg( 'welcomeuser', $this->getUser()->getName() ),
147 $welcome_creation_msg, $injected_html, $extraMessages );
148 }
149
150 protected function getToken() {
151 return $this->getRequest()->getSession()->getToken( '', 'createaccount' );
152 }
153
154 protected function clearToken() {
155 return $this->getRequest()->getSession()->resetToken( 'createaccount' );
156 }
157
158 protected function getTokenName() {
159 return 'wpCreateaccountToken';
160 }
161
162 protected function getGroupName() {
163 return 'login';
164 }
165
166 protected function logAuthResult( $success, $status = null ) {
167 LoggerFactory::getInstance( 'authevents' )->info( 'Account creation attempt', [
168 'event' => 'accountcreation',
169 'successful' => $success,
170 'status' => $status,
171 ] );
172 }
173}
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
wfCgiToArray( $query)
This is the logical opposite of wfArrayToCgi(): it accepts a query string as its argument and returns...
string $subPage
Subpage of the special page.
getRequest()
Get the WebRequest being used for this instance.
An error page which can definitely be safely rendered using the OutputPage.
Holds shared logic for login and account creation pages.
mainLoginForm(array $requests, $msg='', $msgtype='error')
showSuccessPage( $type, $title, $msgname, $injected_html, $extraMessages)
Show the success page.
hasSessionCookie()
Check if a session cookie is present.
This serves as the entry point to the authentication system.
PSR-3 logger instance factory.
Implements Special:CreateAccount.
getTokenName()
Returns the name of the CSRF token (under which it should be found in the POST or GET data).
successfulAction( $direct=false, $extraMessages=null)
Run any hooks registered for logins, then display a message welcoming the user.
getToken()
Returns the CSRF token.
logAuthResult( $success, $status=null)
Logs to the authmanager-stats channel.
getGroupName()
Under which header this special page is listed in Special:SpecialPages See messages 'specialpages-gro...
doesWrites()
Indicates whether this special page may perform database writes.
checkPermissions()
Checks if userCanExecute, and if not throws a PermissionsError.
isRestricted()
Can be overridden by subclasses with more complicated permissions schemes.
getDescription()
Returns the name that goes in the <h1> in the special page itself, and also the name that will be l...
userCanExecute(User $user)
Checks if the given user (identified by an object) can execute this special page (as defined by $mRes...
getLoginSecurityLevel()
Tells if the special page does something security-sensitive and needs extra defense against a stolen ...
getDefaultAction( $subPage)
Get the default action for this special page, if none is given via URL/POST data.
getName()
Get the name of this Special Page.
getOutput()
Get the OutputPage being used for this instance.
getUser()
Shortcut to get the User executing this instance.
getPageTitle( $subpage=false)
Get a self-referential title object.
msg()
Wrapper around wfMessage that sets the current context.
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition User.php:48
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
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output $out
Definition hooks.txt:886
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