129 lines
3.9 KiB
JavaScript
129 lines
3.9 KiB
JavaScript
// @flow
|
|
import React, { useState } from 'react';
|
|
import { withRouter } from 'react-router';
|
|
import Page from 'component/page';
|
|
import ReCAPTCHA from 'react-google-recaptcha';
|
|
import Button from 'component/button';
|
|
import { Lbryio } from 'lbryinc';
|
|
import I18nMessage from 'component/i18nMessage';
|
|
import * as PAGES from 'constants/pages';
|
|
|
|
type Props = {
|
|
history: { push: string => void, location: { search: string } },
|
|
doToast: ({}) => void,
|
|
};
|
|
|
|
function SignInVerifyPage(props: Props) {
|
|
const {
|
|
history: { push, location },
|
|
doToast,
|
|
} = props;
|
|
const [isAuthenticationSuccess, setIsAuthenticationSuccess] = useState(false);
|
|
const [showCaptchaMessage, setShowCaptchaMessage] = useState(false);
|
|
const [captchaLoaded, setCaptchaLoaded] = useState(false);
|
|
const urlParams = new URLSearchParams(location.search);
|
|
const authToken = urlParams.get('auth_token');
|
|
const userSubmittedEmail = urlParams.get('email');
|
|
const verificationToken = urlParams.get('verification_token');
|
|
const needsRecaptcha = urlParams.get('needs_recaptcha') === 'true';
|
|
|
|
function onAuthError(message) {
|
|
doToast({
|
|
message: message || __('Authentication failure.'),
|
|
isError: true,
|
|
});
|
|
push(`/$/${PAGES.AUTH}`);
|
|
}
|
|
|
|
React.useEffect(() => {
|
|
if (!authToken || !userSubmittedEmail || !verificationToken) {
|
|
onAuthError(__('Invalid or expired sign-in link.'));
|
|
}
|
|
}, [authToken, userSubmittedEmail, verificationToken, doToast, push]);
|
|
|
|
React.useEffect(() => {
|
|
if (!needsRecaptcha) {
|
|
verifyUser();
|
|
}
|
|
}, [needsRecaptcha]);
|
|
|
|
React.useEffect(() => {
|
|
let captchaTimeout;
|
|
|
|
if (needsRecaptcha && !captchaLoaded) {
|
|
captchaTimeout = setTimeout(() => {
|
|
setShowCaptchaMessage(true);
|
|
}, 2000);
|
|
}
|
|
|
|
return () => {
|
|
if (captchaTimeout) {
|
|
clearTimeout(captchaTimeout);
|
|
}
|
|
};
|
|
}, [needsRecaptcha, captchaLoaded]);
|
|
|
|
function onCaptchaChange(value) {
|
|
verifyUser(value);
|
|
}
|
|
|
|
function onCaptchaReady() {
|
|
setCaptchaLoaded(true);
|
|
}
|
|
|
|
function verifyUser(captchaValue) {
|
|
Lbryio.call('user_email', 'confirm', {
|
|
auth_token: authToken,
|
|
email: userSubmittedEmail,
|
|
verification_token: verificationToken,
|
|
...(captchaValue ? { recaptcha: captchaValue } : {}),
|
|
})
|
|
.then(() => {
|
|
setIsAuthenticationSuccess(true);
|
|
})
|
|
.catch(() => {
|
|
onAuthError(__('Invalid captcha response or other authentication error.'));
|
|
});
|
|
}
|
|
|
|
return (
|
|
<Page authPage className="main--auth-page">
|
|
<section className="main--contained">
|
|
<h1 className="section__title--large">
|
|
{isAuthenticationSuccess ? __('Sign In Success!') : __('Sign In to lbry.tv')}
|
|
</h1>
|
|
<p className="section__subtitle">
|
|
{isAuthenticationSuccess
|
|
? __('You can now close this tab.')
|
|
: needsRecaptcha
|
|
? __('Click below to sign in to lbry.tv')
|
|
: __('Welcome back! You are automatically being signed in.')}
|
|
</p>
|
|
<p className="section__subtitle">
|
|
{showCaptchaMessage && !isAuthenticationSuccess && (
|
|
<I18nMessage
|
|
tokens={{
|
|
refresh: <Button button="link" label={__('refreshing')} onClick={() => window.location.reload()} />,
|
|
}}
|
|
>
|
|
Not seeing a captcha? Check your ad blocker or try %refresh%.
|
|
</I18nMessage>
|
|
)}
|
|
</p>
|
|
{!isAuthenticationSuccess && needsRecaptcha && (
|
|
<div className="section__actions">
|
|
<ReCAPTCHA
|
|
sitekey="6LePsJgUAAAAAFTuWOKRLnyoNKhm0HA4C3elrFMG"
|
|
onChange={onCaptchaChange}
|
|
asyncScriptOnLoad={onCaptchaReady}
|
|
onExpired={onAuthError}
|
|
onErrored={onAuthError}
|
|
/>
|
|
</div>
|
|
)}
|
|
</section>
|
|
</Page>
|
|
);
|
|
}
|
|
|
|
export default withRouter(SignInVerifyPage);
|