2020-04-29 00:15:18 +00:00
|
|
|
<template>
|
|
|
|
<div>
|
2022-01-28 02:39:49 +00:00
|
|
|
<span v-if="!available">{{ i18n.ts.waiting }}<MkEllipsis/></span>
|
2022-01-10 15:05:18 +00:00
|
|
|
<div ref="captchaEl"></div>
|
2020-04-29 00:15:18 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-01-10 15:05:18 +00:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { ref, computed, onMounted, onBeforeUnmount, watch } from 'vue';
|
|
|
|
import { defaultStore } from '@/store';
|
|
|
|
import { i18n } from '@/i18n';
|
2020-04-29 00:15:18 +00:00
|
|
|
|
|
|
|
type Captcha = {
|
|
|
|
render(container: string | Node, options: {
|
|
|
|
readonly [_ in 'sitekey' | 'theme' | 'type' | 'size' | 'tabindex' | 'callback' | 'expired' | 'expired-callback' | 'error-callback' | 'endpoint']?: unknown;
|
|
|
|
}): string;
|
|
|
|
remove(id: string): void;
|
|
|
|
execute(id: string): void;
|
2022-01-10 15:05:18 +00:00
|
|
|
reset(id?: string): void;
|
2020-04-29 00:15:18 +00:00
|
|
|
getResponse(id: string): string;
|
|
|
|
};
|
|
|
|
|
2022-10-13 00:19:57 +00:00
|
|
|
type CaptchaProvider = 'hcaptcha' | 'recaptcha' | 'turnstile';
|
2020-04-29 00:15:18 +00:00
|
|
|
|
|
|
|
type CaptchaContainer = {
|
|
|
|
readonly [_ in CaptchaProvider]?: Captcha;
|
|
|
|
};
|
|
|
|
|
|
|
|
declare global {
|
2022-06-10 05:36:55 +00:00
|
|
|
interface Window extends CaptchaContainer { }
|
2020-04-29 00:15:18 +00:00
|
|
|
}
|
|
|
|
|
2022-01-10 15:05:18 +00:00
|
|
|
const props = defineProps<{
|
|
|
|
provider: CaptchaProvider;
|
|
|
|
sitekey: string;
|
|
|
|
modelValue?: string | null;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
const emit = defineEmits<{
|
2022-01-25 18:26:34 +00:00
|
|
|
(ev: 'update:modelValue', v: string | null): void;
|
2022-01-10 15:05:18 +00:00
|
|
|
}>();
|
|
|
|
|
|
|
|
const available = ref(false);
|
|
|
|
|
|
|
|
const captchaEl = ref<HTMLDivElement | undefined>();
|
|
|
|
|
|
|
|
const variable = computed(() => {
|
|
|
|
switch (props.provider) {
|
|
|
|
case 'hcaptcha': return 'hcaptcha';
|
|
|
|
case 'recaptcha': return 'grecaptcha';
|
2022-10-13 00:19:57 +00:00
|
|
|
case 'turnstile': return 'turnstile';
|
2022-01-10 15:05:18 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2022-06-28 15:36:06 +00:00
|
|
|
const loaded = !!window[variable.value];
|
2022-01-10 15:05:18 +00:00
|
|
|
|
|
|
|
const src = computed(() => {
|
2022-01-21 08:43:14 +00:00
|
|
|
switch (props.provider) {
|
|
|
|
case 'hcaptcha': return 'https://js.hcaptcha.com/1/api.js?render=explicit&recaptchacompat=off';
|
|
|
|
case 'recaptcha': return 'https://www.recaptcha.net/recaptcha/api.js?render=explicit';
|
2022-10-13 00:19:57 +00:00
|
|
|
case 'turnstile': return 'https://challenges.cloudflare.com/turnstile/v0/api.js?render=explicit';
|
2022-01-21 08:43:14 +00:00
|
|
|
}
|
2020-04-29 00:15:18 +00:00
|
|
|
});
|
2022-01-10 15:05:18 +00:00
|
|
|
|
2022-12-19 16:31:21 +00:00
|
|
|
const scriptId = computed(() => `script-${props.provider}`)
|
|
|
|
|
2022-01-10 15:05:18 +00:00
|
|
|
const captcha = computed<Captcha>(() => window[variable.value] || {} as unknown as Captcha);
|
|
|
|
|
2022-06-28 15:36:06 +00:00
|
|
|
if (loaded) {
|
2022-01-10 15:05:18 +00:00
|
|
|
available.value = true;
|
|
|
|
} else {
|
2022-12-19 16:31:21 +00:00
|
|
|
(document.getElementById(scriptId.value) || document.head.appendChild(Object.assign(document.createElement('script'), {
|
2022-01-10 15:05:18 +00:00
|
|
|
async: true,
|
2022-12-19 16:31:21 +00:00
|
|
|
id: scriptId.value,
|
2022-01-10 15:05:18 +00:00
|
|
|
src: src.value,
|
|
|
|
})))
|
|
|
|
.addEventListener('load', () => available.value = true);
|
|
|
|
}
|
|
|
|
|
|
|
|
function reset() {
|
2022-06-28 15:36:06 +00:00
|
|
|
if (captcha.value.reset) captcha.value.reset();
|
2022-01-10 15:05:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function requestRender() {
|
|
|
|
if (captcha.value.render && captchaEl.value instanceof Element) {
|
|
|
|
captcha.value.render(captchaEl.value, {
|
|
|
|
sitekey: props.sitekey,
|
|
|
|
theme: defaultStore.state.darkMode ? 'dark' : 'light',
|
|
|
|
callback: callback,
|
|
|
|
'expired-callback': callback,
|
|
|
|
'error-callback': callback,
|
|
|
|
});
|
|
|
|
} else {
|
2022-01-16 01:14:14 +00:00
|
|
|
window.setTimeout(requestRender, 1);
|
2022-01-10 15:05:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function callback(response?: string) {
|
2022-03-01 12:36:20 +00:00
|
|
|
emit('update:modelValue', typeof response === 'string' ? response : null);
|
2022-01-10 15:05:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
if (available.value) {
|
|
|
|
requestRender();
|
|
|
|
} else {
|
|
|
|
watch(available, requestRender);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
onBeforeUnmount(() => {
|
|
|
|
reset();
|
|
|
|
});
|
|
|
|
|
|
|
|
defineExpose({
|
|
|
|
reset,
|
|
|
|
});
|
|
|
|
|
2020-04-29 00:15:18 +00:00
|
|
|
</script>
|