194 lines
5.7 KiB
TypeScript
194 lines
5.7 KiB
TypeScript
/*
|
|
* Copyright (C) 2026 Fluxer Contributors
|
|
*
|
|
* This file is part of Fluxer.
|
|
*
|
|
* Fluxer is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Fluxer is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with Fluxer. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
import * as ModalActionCreators from '@app/actions/ModalActionCreators';
|
|
import {TurnstileWidget} from '@app/components/captcha/TurnstileWidget';
|
|
import styles from '@app/components/modals/CaptchaModal.module.css';
|
|
import * as Modal from '@app/components/modals/Modal';
|
|
import {Button} from '@app/components/uikit/button/Button';
|
|
import {Logger} from '@app/lib/Logger';
|
|
import RuntimeConfigStore from '@app/stores/RuntimeConfigStore';
|
|
import HCaptcha from '@hcaptcha/react-hcaptcha';
|
|
import {Trans, useLingui} from '@lingui/react/macro';
|
|
import {observer} from 'mobx-react-lite';
|
|
import {useCallback, useEffect, useRef, useState} from 'react';
|
|
|
|
const logger = new Logger('CaptchaModal');
|
|
|
|
export type CaptchaType = 'turnstile' | 'hcaptcha';
|
|
|
|
interface HCaptchaComponentProps {
|
|
sitekey: string;
|
|
onVerify?: (token: string) => void;
|
|
onExpire?: () => void;
|
|
onError?: (error: string) => void;
|
|
theme?: 'light' | 'dark';
|
|
ref?: React.Ref<HCaptcha>;
|
|
}
|
|
|
|
const HCaptchaComponent = HCaptcha as React.ComponentType<HCaptchaComponentProps>;
|
|
|
|
interface CaptchaModalProps {
|
|
onVerify: (token: string, captchaType: CaptchaType) => void;
|
|
onCancel?: () => void;
|
|
preferredType?: CaptchaType;
|
|
error?: string | null;
|
|
isVerifying?: boolean;
|
|
closeOnVerify?: boolean;
|
|
}
|
|
|
|
export const CaptchaModal = observer(
|
|
({onVerify, onCancel, preferredType, error, isVerifying, closeOnVerify = true}: CaptchaModalProps) => {
|
|
const {t} = useLingui();
|
|
const hcaptchaRef = useRef<HCaptcha>(null);
|
|
const [captchaType, setCaptchaType] = useState<CaptchaType>(() => {
|
|
if (preferredType) return preferredType;
|
|
|
|
if (RuntimeConfigStore.captchaProvider === 'turnstile' && RuntimeConfigStore.turnstileSiteKey) {
|
|
return 'turnstile';
|
|
}
|
|
if (RuntimeConfigStore.captchaProvider === 'hcaptcha' && RuntimeConfigStore.hcaptchaSiteKey) {
|
|
return 'hcaptcha';
|
|
}
|
|
|
|
return RuntimeConfigStore.turnstileSiteKey ? 'turnstile' : 'hcaptcha';
|
|
});
|
|
|
|
useEffect(() => {
|
|
if (captchaType === 'hcaptcha') {
|
|
const timer = setTimeout(() => {
|
|
hcaptchaRef.current?.resetCaptcha();
|
|
}, 100);
|
|
return () => clearTimeout(timer);
|
|
}
|
|
return;
|
|
}, [captchaType]);
|
|
|
|
useEffect(() => {
|
|
if (error) {
|
|
if (captchaType === 'hcaptcha') {
|
|
hcaptchaRef.current?.resetCaptcha();
|
|
}
|
|
}
|
|
}, [error, captchaType]);
|
|
|
|
const handleVerify = useCallback(
|
|
(token: string) => {
|
|
onVerify(token, captchaType);
|
|
if (closeOnVerify) {
|
|
ModalActionCreators.pop();
|
|
}
|
|
},
|
|
[onVerify, captchaType, closeOnVerify],
|
|
);
|
|
|
|
const handleCancel = useCallback(() => {
|
|
onCancel?.();
|
|
ModalActionCreators.pop();
|
|
}, [onCancel]);
|
|
|
|
const handleExpire = useCallback(() => {
|
|
if (captchaType === 'hcaptcha') {
|
|
hcaptchaRef.current?.resetCaptcha();
|
|
}
|
|
}, [captchaType]);
|
|
|
|
const handleError = useCallback(
|
|
(error: string) => {
|
|
logger.error(`${captchaType} error:`, error);
|
|
},
|
|
[captchaType],
|
|
);
|
|
|
|
const handleSwitchToHCaptcha = useCallback(() => {
|
|
setCaptchaType('hcaptcha');
|
|
}, []);
|
|
|
|
const handleSwitchToTurnstile = useCallback(() => {
|
|
setCaptchaType('turnstile');
|
|
}, []);
|
|
|
|
const showSwitchButton =
|
|
(captchaType === 'turnstile' && RuntimeConfigStore.hcaptchaSiteKey) ||
|
|
(captchaType === 'hcaptcha' && RuntimeConfigStore.turnstileSiteKey);
|
|
|
|
return (
|
|
<Modal.Root size="small" centered onClose={handleCancel}>
|
|
<Modal.Header title={t`Verify You're Human`} onClose={handleCancel} />
|
|
<Modal.Content>
|
|
<Modal.ContentLayout className={styles.container}>
|
|
<p className={styles.description}>
|
|
<Trans>We need to make sure you're not a bot. Please complete the verification below.</Trans>
|
|
</p>
|
|
|
|
{error && (
|
|
<div className={styles.errorBox}>
|
|
<p className={styles.errorText}>{error}</p>
|
|
</div>
|
|
)}
|
|
|
|
<div className={styles.captchaContainer}>
|
|
{captchaType === 'turnstile' ? (
|
|
<TurnstileWidget
|
|
sitekey={RuntimeConfigStore.turnstileSiteKey ?? ''}
|
|
onVerify={handleVerify}
|
|
onExpire={handleExpire}
|
|
onError={handleError}
|
|
theme="dark"
|
|
/>
|
|
) : (
|
|
<HCaptchaComponent
|
|
ref={hcaptchaRef}
|
|
sitekey={RuntimeConfigStore.hcaptchaSiteKey ?? ''}
|
|
onVerify={handleVerify}
|
|
onExpire={handleExpire}
|
|
onError={handleError}
|
|
theme="dark"
|
|
/>
|
|
)}
|
|
</div>
|
|
|
|
{showSwitchButton && (
|
|
<div className={styles.switchContainer}>
|
|
<button
|
|
type="button"
|
|
onClick={captchaType === 'turnstile' ? handleSwitchToHCaptcha : handleSwitchToTurnstile}
|
|
className={styles.switchButton}
|
|
disabled={isVerifying}
|
|
>
|
|
{captchaType === 'turnstile' ? (
|
|
<Trans>Having issues? Try hCaptcha instead</Trans>
|
|
) : (
|
|
<Trans>Try Turnstile instead</Trans>
|
|
)}
|
|
</button>
|
|
</div>
|
|
)}
|
|
</Modal.ContentLayout>
|
|
</Modal.Content>
|
|
<Modal.Footer>
|
|
<Button variant="secondary" onClick={handleCancel} disabled={isVerifying}>
|
|
<Trans>Cancel</Trans>
|
|
</Button>
|
|
</Modal.Footer>
|
|
</Modal.Root>
|
|
);
|
|
},
|
|
);
|