4 * Helper functions for the login form that need to be shared with other special pages
5 * (such as CentralAuth's SpecialCentralLogin).
8 class LoginHelper
extends ContextSource
{
10 * Valid error and warning messages
12 * Special:Userlogin can show an error or warning message on the form when
13 * coming from another page. This is done via the ?error= or ?warning= GET
16 * This array is the list of valid message keys. Further keys can be added by the
17 * LoginFormValidErrorMessages hook. All other values will be ignored.
21 public static $validErrorMessages = [
22 'exception-nologin-text',
24 'changeemail-no-info',
26 'confirmemail_needlogin',
31 * Returns an array of all valid error messages.
34 * @see LoginHelper::$validErrorMessages
36 public static function getValidErrorMessages() {
37 static $messages = null;
39 $messages = self
::$validErrorMessages;
40 Hooks
::run( 'LoginFormValidErrorMessages', [ &$messages ] );
46 public function __construct( IContextSource
$context ) {
47 $this->setContext( $context );
51 * Show a return link or redirect to it.
52 * Extensions can change where the link should point or inject content into the page
53 * (which will change it from redirect to link mode).
55 * @param string $type One of the following:
56 * - error: display a return to link ignoring $wgRedirectOnLogin
57 * - success: display a return to link using $wgRedirectOnLogin if needed
58 * - successredirect: send an HTTP redirect using $wgRedirectOnLogin if needed
59 * @param string $returnTo
60 * @param array|string $returnToQuery
61 * @param bool $stickHTTPS Keep redirect link on HTTPS
63 public function showReturnToPage(
64 $type, $returnTo = '', $returnToQuery = '', $stickHTTPS = false
66 global $wgRedirectOnLogin, $wgSecureLogin;
68 if ( $type !== 'error' && $wgRedirectOnLogin !== null ) {
69 $returnTo = $wgRedirectOnLogin;
71 } elseif ( is_string( $returnToQuery ) ) {
72 $returnToQuery = wfCgiToArray( $returnToQuery );
75 // Allow modification of redirect behavior
76 Hooks
::run( 'PostLoginRedirect', [ &$returnTo, &$returnToQuery, &$type ] );
78 $returnToTitle = Title
::newFromText( $returnTo ) ?
: Title
::newMainPage();
80 if ( $wgSecureLogin && !$stickHTTPS ) {
81 $options = [ 'http' ];
83 } elseif ( $wgSecureLogin ) {
84 $options = [ 'https' ];
88 $proto = PROTO_RELATIVE
;
91 if ( $type === 'successredirect' ) {
92 $redirectUrl = $returnToTitle->getFullURL( $returnToQuery, false, $proto );
93 $this->getOutput()->redirect( $redirectUrl );
95 $this->getOutput()->addReturnTo( $returnToTitle, $returnToQuery, null, $options );