|
|
import page from '@automattic/calypso-router'; |
|
|
import { Gridicon } from '@automattic/components'; |
|
|
import { localizeUrl } from '@automattic/i18n-utils'; |
|
|
import clsx from 'clsx'; |
|
|
import { localize } from 'i18n-calypso'; |
|
|
import { get } from 'lodash'; |
|
|
import PropTypes from 'prop-types'; |
|
|
import { Component } from 'react'; |
|
|
import { connect } from 'react-redux'; |
|
|
import LoginBlock from 'calypso/blocks/login'; |
|
|
import DocumentHead from 'calypso/components/data/document-head'; |
|
|
import LocaleSuggestions from 'calypso/components/locale-suggestions'; |
|
|
import Main from 'calypso/components/main'; |
|
|
import isAkismetRedirect from 'calypso/lib/akismet/is-akismet-redirect'; |
|
|
import { |
|
|
isJetpackCloudOAuth2Client, |
|
|
isA4AOAuth2Client, |
|
|
isBlazeProOAuth2Client, |
|
|
isWooOAuth2Client, |
|
|
isStudioAppOAuth2Client, |
|
|
isCrowdsignalOAuth2Client, |
|
|
isVIPOAuth2Client, |
|
|
} from 'calypso/lib/oauth2-clients'; |
|
|
import { login } from 'calypso/lib/paths'; |
|
|
import { getHeaderText } from 'calypso/login/wp-login/hooks/get-header-text'; |
|
|
import { |
|
|
recordPageViewWithClientId as recordPageView, |
|
|
recordTracksEventWithClientId as recordTracksEvent, |
|
|
enhanceWithSiteType, |
|
|
} from 'calypso/state/analytics/actions'; |
|
|
import { wasManualRenewalImmediateLoginAttempted } from 'calypso/state/immediate-login/selectors'; |
|
|
import { getRedirectToOriginal } from 'calypso/state/login/selectors'; |
|
|
import { getCurrentOAuth2Client } from 'calypso/state/oauth2-clients/ui/selectors'; |
|
|
import getCurrentLocaleSlug from 'calypso/state/selectors/get-current-locale-slug'; |
|
|
import getCurrentQueryArguments from 'calypso/state/selectors/get-current-query-arguments'; |
|
|
import getCurrentRoute from 'calypso/state/selectors/get-current-route'; |
|
|
import getInitialQueryArguments from 'calypso/state/selectors/get-initial-query-arguments'; |
|
|
import getIsBlazePro from 'calypso/state/selectors/get-is-blaze-pro'; |
|
|
import getIsWCCOM from 'calypso/state/selectors/get-is-wccom'; |
|
|
import getIsWoo from 'calypso/state/selectors/get-is-woo'; |
|
|
import isWooJPCFlow from 'calypso/state/selectors/is-woo-jpc-flow'; |
|
|
import { withEnhancers } from 'calypso/state/utils'; |
|
|
import { LoginContext } from '../login-context'; |
|
|
import OneLoginLayout from './components/one-login-layout'; |
|
|
import GravPoweredLoginBlockFooter from './gravatar/grav-powered-login-block-footer'; |
|
|
import getHeadingSubText from './hooks/get-heading-subtext'; |
|
|
import LoginBlockFooter from './login-block-footer'; |
|
|
|
|
|
import './style.scss'; |
|
|
|
|
|
export class Login extends Component { |
|
|
static propTypes = { |
|
|
clientId: PropTypes.string, |
|
|
isLoginView: PropTypes.bool, |
|
|
isJetpack: PropTypes.bool.isRequired, |
|
|
locale: PropTypes.string.isRequired, |
|
|
oauth2Client: PropTypes.object, |
|
|
path: PropTypes.string.isRequired, |
|
|
recordPageView: PropTypes.func.isRequired, |
|
|
socialConnect: PropTypes.bool, |
|
|
socialService: PropTypes.string, |
|
|
socialServiceResponse: PropTypes.object, |
|
|
translate: PropTypes.func.isRequired, |
|
|
twoFactorAuthType: PropTypes.string, |
|
|
action: PropTypes.string, |
|
|
isGravPoweredClient: PropTypes.bool, |
|
|
}; |
|
|
|
|
|
static defaultProps = { isJetpack: false, isLoginView: true }; |
|
|
static contextType = LoginContext; |
|
|
|
|
|
state = { |
|
|
usernameOrEmail: '', |
|
|
}; |
|
|
|
|
|
constructor( props ) { |
|
|
super(); |
|
|
|
|
|
this.state.usernameOrEmail = props.emailQueryParam ?? ''; |
|
|
} |
|
|
|
|
|
componentDidMount() { |
|
|
this.recordPageView(); |
|
|
this.updateHeadingText(); |
|
|
} |
|
|
|
|
|
componentDidUpdate( prevProps ) { |
|
|
|
|
|
if ( this.props.twoFactorAuthType !== prevProps.twoFactorAuthType ) { |
|
|
this.recordPageView(); |
|
|
} |
|
|
if ( this.props.socialConnect !== prevProps.socialConnect ) { |
|
|
this.recordPageView(); |
|
|
} |
|
|
|
|
|
|
|
|
const headingProps = [ |
|
|
'twoFactorAuthType', |
|
|
'isManualRenewalImmediateLoginAttempt', |
|
|
'socialConnect', |
|
|
'linkingSocialService', |
|
|
'action', |
|
|
'oauth2Client', |
|
|
'isWooJPC', |
|
|
'isJetpack', |
|
|
'isWCCOM', |
|
|
'isFromAkismet', |
|
|
'isFromAutomatticForAgenciesPlugin', |
|
|
'isGravPoweredClient', |
|
|
'twoFactorEnabled', |
|
|
'currentQuery', |
|
|
'translate', |
|
|
]; |
|
|
|
|
|
const headingChanged = headingProps.some( ( key ) => this.props[ key ] !== prevProps[ key ] ); |
|
|
|
|
|
if ( headingChanged ) { |
|
|
this.updateHeadingText(); |
|
|
} |
|
|
} |
|
|
|
|
|
recordPageView() { |
|
|
const { socialConnect, twoFactorAuthType } = this.props; |
|
|
|
|
|
let url = '/log-in'; |
|
|
let title = 'Login'; |
|
|
|
|
|
if ( twoFactorAuthType ) { |
|
|
const authTypeTitle = |
|
|
twoFactorAuthType.charAt( 0 ).toUpperCase() + twoFactorAuthType.slice( 1 ); |
|
|
url += `/${ twoFactorAuthType }`; |
|
|
title += ` > Two-Step Authentication > ${ authTypeTitle }`; |
|
|
} |
|
|
|
|
|
if ( socialConnect ) { |
|
|
url += `/${ socialConnect }`; |
|
|
title += ' > Social Connect'; |
|
|
} |
|
|
|
|
|
this.props.recordPageView( url, title ); |
|
|
} |
|
|
|
|
|
handleUsernameChange( usernameOrEmail ) { |
|
|
this.setState( { usernameOrEmail } ); |
|
|
} |
|
|
|
|
|
renderI18nSuggestions() { |
|
|
const { locale, path, isLoginView } = this.props; |
|
|
|
|
|
if ( ! isLoginView ) { |
|
|
return null; |
|
|
} |
|
|
|
|
|
return <LocaleSuggestions locale={ locale } path={ path } />; |
|
|
} |
|
|
|
|
|
getLostPasswordLink() { |
|
|
if ( this.props.twoFactorAuthType ) { |
|
|
return null; |
|
|
} |
|
|
|
|
|
return ( |
|
|
<a |
|
|
className="login__lost-password-link" |
|
|
href="/" |
|
|
onClick={ ( event ) => { |
|
|
event.preventDefault(); |
|
|
this.props.recordTracksEvent( 'calypso_login_reset_password_link_click' ); |
|
|
page( |
|
|
login( { |
|
|
redirectTo: this.props.redirectTo, |
|
|
locale: this.props.locale, |
|
|
action: |
|
|
this.props.isWooJPC || this.props.isJetpack |
|
|
? 'jetpack/lostpassword' |
|
|
: 'lostpassword', |
|
|
oauth2ClientId: this.props.oauth2Client && this.props.oauth2Client.id, |
|
|
from: get( this.props.currentQuery, 'from' ), |
|
|
} ) |
|
|
); |
|
|
} } |
|
|
> |
|
|
{ this.props.translate( 'Lost your password?' ) } |
|
|
</a> |
|
|
); |
|
|
} |
|
|
|
|
|
getLoginLink() { |
|
|
return ( |
|
|
<a |
|
|
className="wp-login__login-block-footer-back-link" |
|
|
href="/" |
|
|
onClick={ ( event ) => { |
|
|
event.preventDefault(); |
|
|
page( |
|
|
login( { |
|
|
redirectTo: this.props.redirectTo, |
|
|
locale: this.props.locale, |
|
|
oauth2ClientId: this.props.oauth2Client && this.props.oauth2Client.id, |
|
|
from: get( this.props.currentQuery, 'from' ), |
|
|
isJetpack: this.props.isJetpack, |
|
|
} ) |
|
|
); |
|
|
} } |
|
|
> |
|
|
<Gridicon icon="arrow-left" size={ 18 } /> |
|
|
{ this.props.translate( 'Back to Login' ) } |
|
|
</a> |
|
|
); |
|
|
} |
|
|
|
|
|
renderContent( isSocialFirst ) { |
|
|
const { |
|
|
clientId, |
|
|
domain, |
|
|
isJetpack, |
|
|
isGravPoweredClient, |
|
|
oauth2Client, |
|
|
socialConnect, |
|
|
twoFactorAuthType, |
|
|
socialService, |
|
|
socialServiceResponse, |
|
|
fromSite, |
|
|
locale, |
|
|
signupUrl, |
|
|
action, |
|
|
currentRoute, |
|
|
isLoginView, |
|
|
} = this.props; |
|
|
|
|
|
|
|
|
const isGravPoweredLoginPage = |
|
|
isGravPoweredClient && |
|
|
! currentRoute.startsWith( '/log-in/push' ) && |
|
|
! currentRoute.startsWith( '/log-in/authenticator' ) && |
|
|
! currentRoute.startsWith( '/log-in/sms' ) && |
|
|
! currentRoute.startsWith( '/log-in/webauthn' ) && |
|
|
! currentRoute.startsWith( '/log-in/backup' ); |
|
|
|
|
|
return ( |
|
|
<LoginBlock |
|
|
action={ action } |
|
|
twoFactorAuthType={ twoFactorAuthType } |
|
|
socialConnect={ socialConnect } |
|
|
clientId={ clientId } |
|
|
isJetpack={ isJetpack } |
|
|
isGravPoweredClient={ isGravPoweredClient } |
|
|
isGravPoweredLoginPage={ isGravPoweredLoginPage } |
|
|
oauth2Client={ oauth2Client } |
|
|
socialService={ socialService } |
|
|
socialServiceResponse={ socialServiceResponse } |
|
|
domain={ domain } |
|
|
fromSite={ fromSite } |
|
|
footer={ |
|
|
isGravPoweredLoginPage ? ( |
|
|
<GravPoweredLoginBlockFooter /> |
|
|
) : ( |
|
|
<LoginBlockFooter |
|
|
isLoginView={ isLoginView } |
|
|
lostPasswordLink={ this.getLostPasswordLink() } |
|
|
loginLink={ this.getLoginLink() } |
|
|
/> |
|
|
) |
|
|
} |
|
|
locale={ locale } |
|
|
handleUsernameChange={ this.handleUsernameChange.bind( this ) } |
|
|
signupUrl={ signupUrl } |
|
|
isSocialFirst={ isSocialFirst } |
|
|
/> |
|
|
); |
|
|
} |
|
|
|
|
|
updateHeadingText() { |
|
|
const { |
|
|
twoFactorAuthType, |
|
|
isManualRenewalImmediateLoginAttempt, |
|
|
socialConnect, |
|
|
linkingSocialService, |
|
|
action, |
|
|
oauth2Client, |
|
|
isWooJPC, |
|
|
isJetpack, |
|
|
isWCCOM, |
|
|
isFromAkismet, |
|
|
isFromAutomatticForAgenciesPlugin, |
|
|
isGravPoweredClient, |
|
|
twoFactorEnabled, |
|
|
currentQuery, |
|
|
translate, |
|
|
} = this.props; |
|
|
|
|
|
|
|
|
const isSocialFirst = ! isGravPoweredClient; |
|
|
|
|
|
const headingText = getHeaderText( { |
|
|
isSocialFirst, |
|
|
twoFactorAuthType, |
|
|
isManualRenewalImmediateLoginAttempt, |
|
|
socialConnect, |
|
|
linkingSocialService, |
|
|
action, |
|
|
oauth2Client, |
|
|
isWooJPC, |
|
|
isJetpack, |
|
|
isWCCOM, |
|
|
isFromAkismet, |
|
|
isFromAutomatticForAgenciesPlugin, |
|
|
isGravPoweredClient, |
|
|
twoFactorEnabled, |
|
|
currentQuery, |
|
|
translate, |
|
|
} ); |
|
|
|
|
|
const headingSubText = getHeadingSubText( { |
|
|
isSocialFirst, |
|
|
twoFactorAuthType, |
|
|
action, |
|
|
translate, |
|
|
isWooJPC, |
|
|
} ); |
|
|
|
|
|
this.context.setHeaders( { |
|
|
heading: headingText, |
|
|
subHeading: headingSubText?.primary, |
|
|
subHeadingSecondary: headingSubText?.secondary, |
|
|
} ); |
|
|
} |
|
|
|
|
|
render() { |
|
|
const { locale, translate, isGenericOauth, isGravPoweredClient, isJetpack, isFromAkismet } = |
|
|
this.props; |
|
|
|
|
|
const canonicalUrl = localizeUrl( 'https://wordpress.com/log-in', locale ); |
|
|
|
|
|
|
|
|
const isSocialFirst = ! isGravPoweredClient; |
|
|
|
|
|
const mainContent = ( |
|
|
<Main |
|
|
className={ clsx( 'wp-login__main', { |
|
|
'is-social-first': isSocialFirst, |
|
|
'is-generic-oauth': isGenericOauth, |
|
|
'is-jetpack': isJetpack, |
|
|
} ) } |
|
|
> |
|
|
{ isGravPoweredClient && this.renderI18nSuggestions() } |
|
|
|
|
|
<DocumentHead |
|
|
title={ translate( 'Log In' ) } |
|
|
link={ [ { rel: 'canonical', href: canonicalUrl } ] } |
|
|
meta={ [ |
|
|
{ |
|
|
name: 'description', |
|
|
content: translate( |
|
|
'Log in to your WordPress.com account to manage your website, publish content, and access all your tools securely and easily.' |
|
|
), |
|
|
}, |
|
|
] } |
|
|
/> |
|
|
|
|
|
<div className="wp-login__container">{ this.renderContent( isSocialFirst ) }</div> |
|
|
|
|
|
{ ! isGravPoweredClient && this.renderI18nSuggestions() } |
|
|
</Main> |
|
|
); |
|
|
|
|
|
return ( |
|
|
<> |
|
|
{ ! isGravPoweredClient && ( |
|
|
<OneLoginLayout |
|
|
isJetpack={ isJetpack } |
|
|
isFromAkismet={ isFromAkismet } |
|
|
signupUrl={ this.props.signupUrl } |
|
|
> |
|
|
{ mainContent } |
|
|
</OneLoginLayout> |
|
|
) } |
|
|
{ isGravPoweredClient && mainContent } |
|
|
</> |
|
|
); |
|
|
} |
|
|
} |
|
|
|
|
|
export default connect( |
|
|
( state, props ) => { |
|
|
const currentQuery = getCurrentQueryArguments( state ); |
|
|
const oauth2Client = getCurrentOAuth2Client( state ); |
|
|
const currentRoute = getCurrentRoute( state ); |
|
|
|
|
|
return { |
|
|
locale: getCurrentLocaleSlug( state ), |
|
|
oauth2Client, |
|
|
isLoginView: |
|
|
! props.twoFactorAuthType && |
|
|
! props.socialConnect && |
|
|
|
|
|
! currentRoute.includes( '/lostpassword' ) && |
|
|
|
|
|
|
|
|
! currentRoute.includes( '/start' ), |
|
|
emailQueryParam: |
|
|
currentQuery.email_address || getInitialQueryArguments( state ).email_address, |
|
|
isFromAkismet: isAkismetRedirect( |
|
|
new URLSearchParams( getRedirectToOriginal( state )?.split( '?' )[ 1 ] ).get( 'back' ) |
|
|
), |
|
|
isWooJPC: isWooJPCFlow( state ), |
|
|
isWCCOM: getIsWCCOM( state ), |
|
|
isWoo: getIsWoo( state ), |
|
|
isBlazePro: getIsBlazePro( state ), |
|
|
|
|
|
isGenericOauth: |
|
|
oauth2Client && |
|
|
! isA4AOAuth2Client( oauth2Client ) && |
|
|
! isBlazeProOAuth2Client( oauth2Client ) && |
|
|
! isJetpackCloudOAuth2Client( oauth2Client ) && |
|
|
! isWooOAuth2Client( oauth2Client ) && |
|
|
! isCrowdsignalOAuth2Client( oauth2Client ) && |
|
|
! isStudioAppOAuth2Client( oauth2Client ) && |
|
|
! isVIPOAuth2Client( oauth2Client ), |
|
|
currentRoute, |
|
|
currentQuery, |
|
|
redirectTo: getRedirectToOriginal( state ), |
|
|
isFromAutomatticForAgenciesPlugin: |
|
|
'automattic-for-agencies-client' === get( getCurrentQueryArguments( state ), 'from' ) || |
|
|
'automattic-for-agencies-client' === |
|
|
new URLSearchParams( getRedirectToOriginal( state )?.split( '?' )[ 1 ] ).get( 'from' ), |
|
|
isManualRenewalImmediateLoginAttempt: wasManualRenewalImmediateLoginAttempted( state ), |
|
|
}; |
|
|
}, |
|
|
{ |
|
|
recordPageView: withEnhancers( recordPageView, [ enhanceWithSiteType ] ), |
|
|
recordTracksEvent, |
|
|
} |
|
|
)( localize( Login ) ); |
|
|
|