| |
| |
| |
| import page from '@automattic/calypso-router'; |
| import { Button, Card, FormInputValidation, FormLabel, Gridicon } from '@automattic/components'; |
| import clsx from 'clsx'; |
| import { localize } from 'i18n-calypso'; |
| import { flowRight } from 'lodash'; |
| import { Component, Fragment } from 'react'; |
| import { connect } from 'react-redux'; |
| import FormattedHeader from 'calypso/components/formatted-header'; |
| import FormButton from 'calypso/components/forms/form-button'; |
| import FormPasswordInput from 'calypso/components/forms/form-password-input'; |
| import FormTextInput from 'calypso/components/forms/form-text-input'; |
| import LoggedOutFormLinkItem from 'calypso/components/logged-out-form/link-item'; |
| import LoggedOutFormLinks from 'calypso/components/logged-out-form/links'; |
| import { addQueryArgs } from 'calypso/lib/route'; |
| import { recordTracksEvent } from 'calypso/state/analytics/actions'; |
| import { getConnectingSite } from 'calypso/state/jetpack-connect/selectors'; |
| import { |
| jetpackRemoteInstall, |
| jetpackRemoteInstallUpdateError, |
| } from 'calypso/state/jetpack-remote-install/actions'; |
| import getJetpackRemoteInstallErrorCode from 'calypso/state/selectors/get-jetpack-remote-install-error-code'; |
| import getJetpackRemoteInstallErrorMessage from 'calypso/state/selectors/get-jetpack-remote-install-error-message'; |
| import isJetpackRemoteInstallComplete from 'calypso/state/selectors/is-jetpack-remote-install-complete'; |
| import isRemoteInstallingJetpack from 'calypso/state/selectors/is-remote-installing-jetpack'; |
| import { |
| ACTIVATION_FAILURE, |
| ACTIVATION_RESPONSE_ERROR, |
| INSTALL_RESPONSE_ERROR, |
| INVALID_CREDENTIALS, |
| INVALID_PERMISSIONS, |
| UNKNOWN_REMOTE_INSTALL_ERROR, |
| } from './connection-notice-types'; |
| import { REMOTE_PATH_AUTH } from './constants'; |
| import HelpButton from './help-button'; |
| import JetpackConnectNotices from './jetpack-connect-notices'; |
| import JetpackRemoteInstallNotices from './jetpack-remote-install-notices'; |
| import MainWrapper from './main-wrapper'; |
| import { addCalypsoEnvQueryArg } from './utils'; |
|
|
| export class OrgCredentialsForm extends Component { |
| state = { |
| username: '', |
| password: '', |
| isUnloading: false, |
| }; |
|
|
| handleSubmit = ( event ) => { |
| const { siteToConnect } = this.props; |
| event.preventDefault(); |
|
|
| if ( this.props.isRemoteInstalling ) { |
| return; |
| } |
|
|
| this.props.recordTracksEvent( 'calypso_jpc_remoteinstall_submit', { |
| url: siteToConnect, |
| } ); |
| this.props.jetpackRemoteInstall( siteToConnect, this.state.username, this.state.password ); |
| }; |
|
|
| componentDidMount() { |
| const { siteToConnect } = this.props; |
|
|
| if ( ! siteToConnect ) { |
| page.redirect( '/jetpack/connect' ); |
| } |
|
|
| this.props.recordTracksEvent( 'calypso_jpc_remoteinstall_view', { |
| url: siteToConnect, |
| } ); |
|
|
| window.addEventListener( 'beforeunload', this.beforeUnloadHandler ); |
| } |
|
|
| componentWillUnmount() { |
| window.removeEventListener( 'beforeunload', this.beforeUnloadHandler ); |
| } |
|
|
| componentDidUpdate() { |
| const { isResponseCompleted } = this.props; |
|
|
| if ( isResponseCompleted ) { |
| |
| this.buildRemoteSiteLoginForm().submit(); |
| } |
| } |
|
|
| buildRemoteSiteLoginForm() { |
| const { siteToConnect } = this.props; |
|
|
| const form = document.createElement( 'form' ); |
| form.setAttribute( 'method', 'post' ); |
|
|
| const redirectUrl = addCalypsoEnvQueryArg( siteToConnect + REMOTE_PATH_AUTH ); |
| const actionUrl = addQueryArgs( { redirect_to: redirectUrl }, siteToConnect + '/wp-login.php' ); |
| form.setAttribute( 'action', actionUrl ); |
|
|
| const user = document.createElement( 'input' ); |
| user.setAttribute( 'type', 'hidden' ); |
| user.setAttribute( 'name', 'log' ); |
| user.setAttribute( 'value', this.state.username ); |
| form.appendChild( user ); |
|
|
| const pwd = document.createElement( 'input' ); |
| pwd.setAttribute( 'type', 'hidden' ); |
| pwd.setAttribute( 'name', 'pwd' ); |
| pwd.setAttribute( 'value', this.state.password ); |
| form.appendChild( pwd ); |
|
|
| document.body.appendChild( form ); |
| return form; |
| } |
|
|
| getChangeHandler = ( field ) => ( event ) => { |
| this.setState( { [ field ]: event.target.value } ); |
| }; |
|
|
| getHeaderText() { |
| const { translate } = this.props; |
|
|
| return translate( "Let's connect your site" ); |
| } |
|
|
| getSubHeaderText() { |
| const { translate } = this.props; |
| const subheader = translate( |
| "Add your self-hosted site login details below and we'll get Jetpack installed for you. Your details are not stored." |
| ); |
| return <span>{ subheader }</span>; |
| } |
|
|
| getError( installError ) { |
| if ( installError === null ) { |
| return undefined; |
| } |
|
|
| if ( |
| installError === 'ACTIVATION_FAILURE' || |
| installError === 'ACTIVATION_ON_INSTALL_FAILURE' |
| ) { |
| return ACTIVATION_FAILURE; |
| } |
| if ( installError === 'INVALID_CREDENTIALS' ) { |
| return INVALID_CREDENTIALS; |
| } |
| if ( installError === 'ACTIVATION_RESPONSE_ERROR' ) { |
| return ACTIVATION_RESPONSE_ERROR; |
| } |
| if ( installError === 'INSTALL_RESPONSE_ERROR' ) { |
| return INSTALL_RESPONSE_ERROR; |
| } |
| if ( installError === 'FORBIDDEN' ) { |
| return INVALID_PERMISSIONS; |
| } |
| if ( installError === 'LOGIN_FAILURE' ) { |
| |
| return UNKNOWN_REMOTE_INSTALL_ERROR; |
| } |
|
|
| return UNKNOWN_REMOTE_INSTALL_ERROR; |
| } |
|
|
| isInvalidCreds() { |
| return this.getError( this.props.installError ) === INVALID_CREDENTIALS; |
| } |
|
|
| isInvalidUsername() { |
| return this.props.installErrorMessage === 'bad username'; |
| } |
|
|
| isInvalidPassword() { |
| return this.props.installErrorMessage === 'bad password'; |
| } |
|
|
| formFields() { |
| const { translate, isRemoteInstalling } = this.props; |
| const { password, username, isUnloading } = this.state; |
|
|
| const isDisabled = isRemoteInstalling || isUnloading; |
|
|
| const userClassName = clsx( 'jetpack-connect__credentials-form-input', { |
| 'is-error': this.isInvalidUsername(), |
| } ); |
| const passwordClassName = clsx( 'jetpack-connect__password-form-input', { |
| 'is-error': this.isInvalidPassword(), |
| } ); |
| const removedProtocolURL = this.props.siteToConnect.replace( /(^\w+:|^)\/\//, '' ); |
| return ( |
| <Fragment> |
| <div className="jetpack-connect__site-address"> |
| <div className="jetpack-connect__globe"> |
| <Gridicon size={ 24 } icon="globe" /> |
| </div>{ ' ' } |
| { removedProtocolURL } |
| </div> |
| <FormLabel htmlFor="username">{ translate( 'WordPress username or email' ) }</FormLabel> |
| <div className="jetpack-connect__site-address-container"> |
| <Gridicon size={ 24 } icon="user" /> |
| <FormTextInput |
| autoCapitalize="off" |
| autoCorrect="off" |
| className={ userClassName } |
| disabled={ isDisabled } |
| id="username" |
| name="username" |
| onChange={ this.getChangeHandler( 'username' ) } |
| value={ username || '' } |
| /> |
| { this.isInvalidUsername() && ( |
| <FormInputValidation |
| isError |
| text={ translate( 'Username or email does not exist. Please try again.' ) } |
| /> |
| ) } |
| </div> |
| <div className="jetpack-connect__password-container"> |
| <FormLabel htmlFor="password">{ translate( 'WordPress password' ) }</FormLabel> |
| <div className="jetpack-connect__password-form"> |
| <Gridicon size={ 24 } icon="lock" /> |
| <FormPasswordInput |
| className={ passwordClassName } |
| disabled={ isDisabled } |
| id="password" |
| name="password" |
| onChange={ this.getChangeHandler( 'password' ) } |
| value={ password || '' } |
| /> |
| { this.isInvalidPassword() && ( |
| <FormInputValidation |
| isError |
| text={ translate( 'Your password is incorrect, please try again' ) } |
| /> |
| ) } |
| </div> |
| </div> |
| </Fragment> |
| ); |
| } |
|
|
| renderButtonLabel() { |
| const { isResponseCompleted, translate, isRemoteInstalling } = this.props; |
|
|
| if ( isResponseCompleted ) { |
| return translate( 'Connecting account…' ); |
| } |
|
|
| if ( ! isRemoteInstalling ) { |
| return translate( 'Install Jetpack' ); |
| } |
|
|
| return translate( 'Installing Jetpack…' ); |
| } |
|
|
| formFooter() { |
| const { isRemoteInstalling } = this.props; |
| const { username, password, isUnloading } = this.state; |
|
|
| const isBusy = isRemoteInstalling || isUnloading; |
|
|
| return ( |
| <div className="jetpack-connect__creds-form-footer"> |
| <FormButton |
| className="jetpack-connect__credentials-submit" |
| disabled={ ! username || ! password } |
| busy={ isBusy } |
| > |
| { this.renderButtonLabel() } |
| </FormButton> |
| </div> |
| ); |
| } |
|
|
| onClickBack = () => { |
| const { installError, siteToConnect } = this.props; |
| if ( installError && ! this.isInvalidCreds() ) { |
| this.props.jetpackRemoteInstallUpdateError( siteToConnect, null, null ); |
| return; |
| } |
| page.redirect( '/jetpack/connect' ); |
| }; |
|
|
| beforeUnloadHandler = () => { |
| this.setState( { |
| isUnloading: true, |
| } ); |
| }; |
|
|
| footerLink() { |
| const { installError, siteToConnect, translate } = this.props; |
| const manualInstallUrl = addQueryArgs( |
| { url: siteToConnect }, |
| '/jetpack/connect/instructions' |
| ); |
| const manualInstallClick = () => { |
| this.props.recordTracksEvent( 'calypso_jpc_remoteinstall_instructionsclick', { |
| url: siteToConnect, |
| } ); |
| }; |
|
|
| return ( |
| <LoggedOutFormLinks> |
| { ( this.isInvalidCreds() || ! installError ) && ( |
| <LoggedOutFormLinkItem href={ manualInstallUrl } onClick={ manualInstallClick }> |
| { translate( 'Install Jetpack manually' ) } |
| </LoggedOutFormLinkItem> |
| ) } |
| <HelpButton /> |
| <div className="jetpack-connect__navigation"> |
| <Button |
| compact |
| borderless |
| className="jetpack-connect__back-button" |
| onClick={ this.onClickBack } |
| > |
| <Gridicon icon="arrow-left" size={ 18 } /> |
| { translate( 'Back' ) } |
| </Button> |
| </div> |
| </LoggedOutFormLinks> |
| ); |
| } |
|
|
| renderHeadersText() { |
| return ( |
| <FormattedHeader |
| headerText={ this.getHeaderText() } |
| subHeaderText={ this.getSubHeaderText() } |
| /> |
| ); |
| } |
|
|
| render() { |
| const { installError } = this.props; |
|
|
| return ( |
| <MainWrapper> |
| { ! this.isInvalidCreds() && installError && ( |
| <div className="jetpack-connect__notice"> |
| <JetpackRemoteInstallNotices noticeType={ this.getError( installError ) } /> |
| </div> |
| ) } |
| { ( this.isInvalidCreds() || ! installError ) && this.props.siteToConnect && ( |
| <div className="jetpack-connect__site-url-entry-container"> |
| { this.renderHeadersText() } |
| <Card className="jetpack-connect__site-url-input-container"> |
| { this.isInvalidCreds() && ( |
| <JetpackConnectNotices noticeType={ this.getError( installError ) } /> |
| ) } |
| <form onSubmit={ this.handleSubmit }> |
| { this.formFields() } |
| { this.formFooter() } |
| </form> |
| </Card> |
| </div> |
| ) } |
| { this.footerLink() } |
| </MainWrapper> |
| ); |
| } |
| } |
|
|
| const connectComponent = connect( |
| ( state ) => { |
| const jetpackConnectSite = getConnectingSite( state ); |
| const siteData = jetpackConnectSite.data || {}; |
| const siteToConnect = siteData.urlAfterRedirects || jetpackConnectSite.url; |
|
|
| return { |
| installError: getJetpackRemoteInstallErrorCode( state, siteToConnect ), |
| installErrorMessage: getJetpackRemoteInstallErrorMessage( state, siteToConnect ), |
| isRemoteInstalling: isRemoteInstallingJetpack( state, siteToConnect ), |
| isResponseCompleted: isJetpackRemoteInstallComplete( state, siteToConnect ), |
| siteToConnect, |
| }; |
| }, |
| { |
| jetpackRemoteInstall, |
| jetpackRemoteInstallUpdateError, |
| recordTracksEvent, |
| } |
| ); |
|
|
| export default flowRight( connectComponent, localize )( OrgCredentialsForm ); |
|
|