/** * External dependencies */ import { __ } from '@wordpress/i18n'; import { Component, Fragment } from '@wordpress/element'; import { compose } from '@wordpress/compose'; import apiFetch from '@wordpress/api-fetch'; import { withDispatch, withSelect } from '@wordpress/data'; import interpolateComponents from 'interpolate-components'; import { Button } from '@wordpress/components'; import { Form, Link, Stepper, TextControl } from '@woocommerce/components'; import { getAdminLink } from '@woocommerce/wc-admin-settings'; import { getQuery } from '@woocommerce/navigation'; import { PLUGINS_STORE_NAME, OPTIONS_STORE_NAME, WCS_NAMESPACE, } from '@woocommerce/data'; class Stripe extends Component { constructor( props ) { super( props ); this.state = { oAuthConnectFailed: false, connectURL: null, isPending: false, }; this.updateSettings = this.updateSettings.bind( this ); } componentDidMount() { const { oAuthConnectFailed } = this.state; const { stripeSettings } = this.props; const query = getQuery(); // Handle redirect back from Stripe. if ( query[ 'stripe-connect' ] && query[ 'stripe-connect' ] === '1' ) { const isStripeConnected = stripeSettings.publishable_key && stripeSettings.secret_key; if ( isStripeConnected ) { this.completeMethod(); return; } } if ( ! oAuthConnectFailed ) { this.fetchOAuthConnectURL(); } } componentDidUpdate( prevProps ) { const { activePlugins } = this.props; if ( ! prevProps.activePlugins.includes( 'woocommerce-gateway-stripe' ) && activePlugins.includes( 'woocommerce-gateway-stripe' ) ) { this.fetchOAuthConnectURL(); } } completeMethod() { const { createNotice, markConfigured } = this.props; this.setState( { isPending: false } ); createNotice( 'success', __( 'Stripe connected successfully.', 'woocommerce-admin' ) ); markConfigured( 'stripe' ); } async fetchOAuthConnectURL() { const { activePlugins } = this.props; if ( ! activePlugins.includes( 'woocommerce-gateway-stripe' ) ) { return; } try { this.setState( { isPending: true } ); const result = await apiFetch( { path: WCS_NAMESPACE + '/connect/stripe/oauth/init', method: 'POST', data: { returnUrl: getAdminLink( 'admin.php?page=wc-admin&task=payments&method=stripe&stripe-connect=1' ), }, } ); if ( ! result || ! result.oauthUrl ) { this.setState( { oAuthConnectFailed: true, isPending: false, } ); return; } this.setState( { connectURL: result.oauthUrl, isPending: false, } ); } catch ( error ) { this.setState( { oAuthConnectFailed: true, isPending: false, } ); } } renderConnectButton() { const { connectURL } = this.state; return ( ); } async updateSettings( values ) { const { updateOptions, stripeSettings, createNotice } = this.props; const prefix = values.publishable_key.match( /^pk_live_/ ) ? '' : 'test_'; const update = await updateOptions( { woocommerce_stripe_settings: { ...stripeSettings, [ prefix + 'publishable_key' ]: values.publishable_key, [ prefix + 'secret_key' ]: values.secret_key, testmode: prefix === 'test_' ? 'yes' : 'no', enabled: 'yes', }, } ); if ( update.success ) { this.completeMethod(); } else { createNotice( 'error', __( 'There was a problem saving your payment settings', 'woocommerce-admin' ) ); } } getInitialConfigValues() { return { publishable_key: '', secret_key: '', }; } validateManualConfig( values ) { const errors = {}; if ( values.publishable_key.match( /^pk_(live|test)_[a-zA-Z0-9_]+/ ) === null ) { errors.publishable_key = __( 'Please enter a valid publishable key (starting with "pk_").', 'woocommerce-admin' ); } if ( values.secret_key.match( /^[rs]k_(live|test)_[a-zA-Z0-9_]+/ ) === null ) { errors.secret_key = __( 'Please enter a valid secret key (starting with "sk_" or "rk_").', 'woocommerce-admin' ); } else if ( values.secret_key.slice( 3, 7 ) !== values.publishable_key.slice( 3, 7 ) ) { errors.secret_key = __( 'Please enter a secret key in the same mode as the publishable key.', 'woocommerce-admin' ); } return errors; } renderManualConfig() { const { isOptionsUpdating } = this.props; const stripeHelp = interpolateComponents( { mixedString: __( 'Your API details can be obtained from your {{docsLink}}Stripe account{{/docsLink}}. Don’t have a Stripe account? {{registerLink}}Create one.{{/registerLink}}', 'woocommerce-admin' ), components: { docsLink: ( ), registerLink: ( ), }, } ); return (
{ ( { getInputProps, handleSubmit } ) => { return (

{ stripeHelp }

); } }
); } renderOauthConfig() { const tosPrompt = interpolateComponents( { mixedString: __( 'By clicking "Connect," you agree to the {{tosLink}}Terms of Service{{/tosLink}}. Or {{manualConfigLink}}manually enter your Stripe API details{{/manualConfigLink}} instead.', 'woocommerce-admin' ), components: { tosLink: ( ), manualConfigLink: (