mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-11-15 15:56:25 +01:00
406b4bdbe7
* refactor(frontend): 非推奨となったReactivity Transformを使わないように * refactor: 不要な括弧を除去 * fix: 不要なアノテーションを除去 * fix: Refの配列をrefしている部分の対応 * refactor: 不要な括弧を除去 * fix: lint * refactor: Ref、ShallowRef、ComputedRefの変数の宣言をletからconstに置換 * fix: type error * chore: drop reactivity transform from eslint configuration * refactor: remove unnecessary import * fix: 対応漏れ
300 lines
12 KiB
Vue
300 lines
12 KiB
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<div>
|
|
<div :class="$style.banner">
|
|
<i class="ti ti-user-edit"></i>
|
|
</div>
|
|
<MkSpacer :marginMin="20" :marginMax="32">
|
|
<form class="_gaps_m" autocomplete="new-password" @submit.prevent="onSubmit">
|
|
<MkInput v-if="instance.disableRegistration" v-model="invitationCode" type="text" :spellcheck="false" required>
|
|
<template #label>{{ i18n.ts.invitationCode }}</template>
|
|
<template #prefix><i class="ti ti-key"></i></template>
|
|
</MkInput>
|
|
<MkInput v-model="username" type="text" pattern="^[a-zA-Z0-9_]{1,20}$" :spellcheck="false" autocomplete="username" required data-cy-signup-username @update:modelValue="onChangeUsername">
|
|
<template #label>{{ i18n.ts.username }} <div v-tooltip:dialog="i18n.ts.usernameInfo" class="_button _help"><i class="ti ti-help-circle"></i></div></template>
|
|
<template #prefix>@</template>
|
|
<template #suffix>@{{ host }}</template>
|
|
<template #caption>
|
|
<div><i class="ti ti-alert-triangle ti-fw"></i> {{ i18n.ts.cannotBeChangedLater }}</div>
|
|
<span v-if="usernameState === 'wait'" style="color:#999"><MkLoading :em="true"/> {{ i18n.ts.checking }}</span>
|
|
<span v-else-if="usernameState === 'ok'" style="color: var(--success)"><i class="ti ti-check ti-fw"></i> {{ i18n.ts.available }}</span>
|
|
<span v-else-if="usernameState === 'unavailable'" style="color: var(--error)"><i class="ti ti-alert-triangle ti-fw"></i> {{ i18n.ts.unavailable }}</span>
|
|
<span v-else-if="usernameState === 'error'" style="color: var(--error)"><i class="ti ti-alert-triangle ti-fw"></i> {{ i18n.ts.error }}</span>
|
|
<span v-else-if="usernameState === 'invalid-format'" style="color: var(--error)"><i class="ti ti-alert-triangle ti-fw"></i> {{ i18n.ts.usernameInvalidFormat }}</span>
|
|
<span v-else-if="usernameState === 'min-range'" style="color: var(--error)"><i class="ti ti-alert-triangle ti-fw"></i> {{ i18n.ts.tooShort }}</span>
|
|
<span v-else-if="usernameState === 'max-range'" style="color: var(--error)"><i class="ti ti-alert-triangle ti-fw"></i> {{ i18n.ts.tooLong }}</span>
|
|
</template>
|
|
</MkInput>
|
|
<MkInput v-if="instance.emailRequiredForSignup" v-model="email" :debounce="true" type="email" :spellcheck="false" required data-cy-signup-email @update:modelValue="onChangeEmail">
|
|
<template #label>{{ i18n.ts.emailAddress }} <div v-tooltip:dialog="i18n.ts._signup.emailAddressInfo" class="_button _help"><i class="ti ti-help-circle"></i></div></template>
|
|
<template #prefix><i class="ti ti-mail"></i></template>
|
|
<template #caption>
|
|
<span v-if="emailState === 'wait'" style="color:#999"><MkLoading :em="true"/> {{ i18n.ts.checking }}</span>
|
|
<span v-else-if="emailState === 'ok'" style="color: var(--success)"><i class="ti ti-check ti-fw"></i> {{ i18n.ts.available }}</span>
|
|
<span v-else-if="emailState === 'unavailable:used'" style="color: var(--error)"><i class="ti ti-alert-triangle ti-fw"></i> {{ i18n.ts._emailUnavailable.used }}</span>
|
|
<span v-else-if="emailState === 'unavailable:format'" style="color: var(--error)"><i class="ti ti-alert-triangle ti-fw"></i> {{ i18n.ts._emailUnavailable.format }}</span>
|
|
<span v-else-if="emailState === 'unavailable:disposable'" style="color: var(--error)"><i class="ti ti-alert-triangle ti-fw"></i> {{ i18n.ts._emailUnavailable.disposable }}</span>
|
|
<span v-else-if="emailState === 'unavailable:mx'" style="color: var(--error)"><i class="ti ti-alert-triangle ti-fw"></i> {{ i18n.ts._emailUnavailable.mx }}</span>
|
|
<span v-else-if="emailState === 'unavailable:smtp'" style="color: var(--error)"><i class="ti ti-alert-triangle ti-fw"></i> {{ i18n.ts._emailUnavailable.smtp }}</span>
|
|
<span v-else-if="emailState === 'unavailable'" style="color: var(--error)"><i class="ti ti-alert-triangle ti-fw"></i> {{ i18n.ts.unavailable }}</span>
|
|
<span v-else-if="emailState === 'error'" style="color: var(--error)"><i class="ti ti-alert-triangle ti-fw"></i> {{ i18n.ts.error }}</span>
|
|
</template>
|
|
</MkInput>
|
|
<MkInput v-model="password" type="password" autocomplete="new-password" required data-cy-signup-password @update:modelValue="onChangePassword">
|
|
<template #label>{{ i18n.ts.password }}</template>
|
|
<template #prefix><i class="ti ti-lock"></i></template>
|
|
<template #caption>
|
|
<span v-if="passwordStrength == 'low'" style="color: var(--error)"><i class="ti ti-alert-triangle ti-fw"></i> {{ i18n.ts.weakPassword }}</span>
|
|
<span v-if="passwordStrength == 'medium'" style="color: var(--warn)"><i class="ti ti-check ti-fw"></i> {{ i18n.ts.normalPassword }}</span>
|
|
<span v-if="passwordStrength == 'high'" style="color: var(--success)"><i class="ti ti-check ti-fw"></i> {{ i18n.ts.strongPassword }}</span>
|
|
</template>
|
|
</MkInput>
|
|
<MkInput v-model="retypedPassword" type="password" autocomplete="new-password" required data-cy-signup-password-retype @update:modelValue="onChangePasswordRetype">
|
|
<template #label>{{ i18n.ts.password }} ({{ i18n.ts.retype }})</template>
|
|
<template #prefix><i class="ti ti-lock"></i></template>
|
|
<template #caption>
|
|
<span v-if="passwordRetypeState == 'match'" style="color: var(--success)"><i class="ti ti-check ti-fw"></i> {{ i18n.ts.passwordMatched }}</span>
|
|
<span v-if="passwordRetypeState == 'not-match'" style="color: var(--error)"><i class="ti ti-alert-triangle ti-fw"></i> {{ i18n.ts.passwordNotMatched }}</span>
|
|
</template>
|
|
</MkInput>
|
|
<MkCaptcha v-if="instance.enableHcaptcha" ref="hcaptcha" v-model="hCaptchaResponse" :class="$style.captcha" provider="hcaptcha" :sitekey="instance.hcaptchaSiteKey"/>
|
|
<MkCaptcha v-if="instance.enableRecaptcha" ref="recaptcha" v-model="reCaptchaResponse" :class="$style.captcha" provider="recaptcha" :sitekey="instance.recaptchaSiteKey"/>
|
|
<MkCaptcha v-if="instance.enableTurnstile" ref="turnstile" v-model="turnstileResponse" :class="$style.captcha" provider="turnstile" :sitekey="instance.turnstileSiteKey"/>
|
|
<MkButton type="submit" :disabled="shouldDisableSubmitting" large gradate rounded data-cy-signup-submit style="margin: 0 auto;">
|
|
<template v-if="submitting">
|
|
<MkLoading :em="true" :colored="false"/>
|
|
</template>
|
|
<template v-else>{{ i18n.ts.start }}</template>
|
|
</MkButton>
|
|
</form>
|
|
</MkSpacer>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref, computed } from 'vue';
|
|
import { toUnicode } from 'punycode/';
|
|
import MkButton from './MkButton.vue';
|
|
import MkInput from './MkInput.vue';
|
|
import MkSwitch from './MkSwitch.vue';
|
|
import MkCaptcha, { type Captcha } from '@/components/MkCaptcha.vue';
|
|
import * as config from '@/config.js';
|
|
import * as os from '@/os.js';
|
|
import { login } from '@/account.js';
|
|
import { instance } from '@/instance.js';
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
const props = withDefaults(defineProps<{
|
|
autoSet?: boolean;
|
|
}>(), {
|
|
autoSet: false,
|
|
});
|
|
|
|
const emit = defineEmits<{
|
|
(ev: 'signup', user: Record<string, any>): void;
|
|
(ev: 'signupEmailPending'): void;
|
|
}>();
|
|
|
|
const host = toUnicode(config.host);
|
|
|
|
const hcaptcha = ref<Captcha | undefined>();
|
|
const recaptcha = ref<Captcha | undefined>();
|
|
const turnstile = ref<Captcha | undefined>();
|
|
|
|
const username = ref<string>('');
|
|
const password = ref<string>('');
|
|
const retypedPassword = ref<string>('');
|
|
const invitationCode = ref<string>('');
|
|
const email = ref('');
|
|
const usernameState = ref<null | 'wait' | 'ok' | 'unavailable' | 'error' | 'invalid-format' | 'min-range' | 'max-range'>(null);
|
|
const emailState = ref<null | 'wait' | 'ok' | 'unavailable:used' | 'unavailable:format' | 'unavailable:disposable' | 'unavailable:mx' | 'unavailable:smtp' | 'unavailable' | 'error'>(null);
|
|
const passwordStrength = ref<'' | 'low' | 'medium' | 'high'>('');
|
|
const passwordRetypeState = ref<null | 'match' | 'not-match'>(null);
|
|
const submitting = ref<boolean>(false);
|
|
const hCaptchaResponse = ref(null);
|
|
const reCaptchaResponse = ref(null);
|
|
const turnstileResponse = ref(null);
|
|
const usernameAbortController = ref<null | AbortController>(null);
|
|
const emailAbortController = ref<null | AbortController>(null);
|
|
|
|
const shouldDisableSubmitting = computed((): boolean => {
|
|
return submitting.value ||
|
|
instance.enableHcaptcha && !hCaptchaResponse.value ||
|
|
instance.enableRecaptcha && !reCaptchaResponse.value ||
|
|
instance.enableTurnstile && !turnstileResponse.value ||
|
|
instance.emailRequiredForSignup && emailState.value !== 'ok' ||
|
|
usernameState.value !== 'ok' ||
|
|
passwordRetypeState.value !== 'match';
|
|
});
|
|
|
|
function getPasswordStrength(source: string): number {
|
|
let strength = 0;
|
|
let power = 0.018;
|
|
|
|
// 英数字
|
|
if (/[a-zA-Z]/.test(source) && /[0-9]/.test(source)) {
|
|
power += 0.020;
|
|
}
|
|
|
|
// 大文字と小文字が混ざってたら
|
|
if (/[a-z]/.test(source) && /[A-Z]/.test(source)) {
|
|
power += 0.015;
|
|
}
|
|
|
|
// 記号が混ざってたら
|
|
if (/[!\x22\#$%&@'()*+,-./_]/.test(source)) {
|
|
power += 0.02;
|
|
}
|
|
|
|
strength = power * source.length;
|
|
|
|
return Math.max(0, Math.min(1, strength));
|
|
}
|
|
|
|
function onChangeUsername(): void {
|
|
if (username.value === '') {
|
|
usernameState.value = null;
|
|
return;
|
|
}
|
|
|
|
{
|
|
const err =
|
|
!username.value.match(/^[a-zA-Z0-9_]+$/) ? 'invalid-format' :
|
|
username.value.length < 1 ? 'min-range' :
|
|
username.value.length > 20 ? 'max-range' :
|
|
null;
|
|
|
|
if (err) {
|
|
usernameState.value = err;
|
|
return;
|
|
}
|
|
}
|
|
|
|
if (usernameAbortController.value != null) {
|
|
usernameAbortController.value.abort();
|
|
}
|
|
usernameState.value = 'wait';
|
|
usernameAbortController.value = new AbortController();
|
|
|
|
os.api('username/available', {
|
|
username: username.value,
|
|
}, undefined, usernameAbortController.value.signal).then(result => {
|
|
usernameState.value = result.available ? 'ok' : 'unavailable';
|
|
}).catch((err) => {
|
|
if (err.name !== 'AbortError') {
|
|
usernameState.value = 'error';
|
|
}
|
|
});
|
|
}
|
|
|
|
function onChangeEmail(): void {
|
|
if (email.value === '') {
|
|
emailState.value = null;
|
|
return;
|
|
}
|
|
|
|
if (emailAbortController.value != null) {
|
|
emailAbortController.value.abort();
|
|
}
|
|
emailState.value = 'wait';
|
|
emailAbortController.value = new AbortController();
|
|
|
|
os.api('email-address/available', {
|
|
emailAddress: email.value,
|
|
}, undefined, emailAbortController.value.signal).then(result => {
|
|
emailState.value = result.available ? 'ok' :
|
|
result.reason === 'used' ? 'unavailable:used' :
|
|
result.reason === 'format' ? 'unavailable:format' :
|
|
result.reason === 'disposable' ? 'unavailable:disposable' :
|
|
result.reason === 'mx' ? 'unavailable:mx' :
|
|
result.reason === 'smtp' ? 'unavailable:smtp' :
|
|
'unavailable';
|
|
}).catch((err) => {
|
|
if (err.name !== 'AbortError') {
|
|
emailState.value = 'error';
|
|
}
|
|
});
|
|
}
|
|
|
|
function onChangePassword(): void {
|
|
if (password.value === '') {
|
|
passwordStrength.value = '';
|
|
return;
|
|
}
|
|
|
|
const strength = getPasswordStrength(password.value);
|
|
passwordStrength.value = strength > 0.7 ? 'high' : strength > 0.3 ? 'medium' : 'low';
|
|
}
|
|
|
|
function onChangePasswordRetype(): void {
|
|
if (retypedPassword.value === '') {
|
|
passwordRetypeState.value = null;
|
|
return;
|
|
}
|
|
|
|
passwordRetypeState.value = password.value === retypedPassword.value ? 'match' : 'not-match';
|
|
}
|
|
|
|
async function onSubmit(): Promise<void> {
|
|
if (submitting.value) return;
|
|
submitting.value = true;
|
|
|
|
try {
|
|
await os.api('signup', {
|
|
username: username.value,
|
|
password: password.value,
|
|
emailAddress: email.value,
|
|
invitationCode: invitationCode.value,
|
|
'hcaptcha-response': hCaptchaResponse.value,
|
|
'g-recaptcha-response': reCaptchaResponse.value,
|
|
'turnstile-response': turnstileResponse.value,
|
|
});
|
|
if (instance.emailRequiredForSignup) {
|
|
os.alert({
|
|
type: 'success',
|
|
title: i18n.ts._signup.almostThere,
|
|
text: i18n.t('_signup.emailSent', { email: email.value }),
|
|
});
|
|
emit('signupEmailPending');
|
|
} else {
|
|
const res = await os.api('signin', {
|
|
username: username.value,
|
|
password: password.value,
|
|
});
|
|
emit('signup', res);
|
|
|
|
if (props.autoSet) {
|
|
return login(res.i);
|
|
}
|
|
}
|
|
} catch {
|
|
submitting.value = false;
|
|
hcaptcha.value?.reset?.();
|
|
recaptcha.value?.reset?.();
|
|
turnstile.value?.reset?.();
|
|
|
|
os.alert({
|
|
type: 'error',
|
|
text: i18n.ts.somethingHappened,
|
|
});
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
.banner {
|
|
padding: 16px;
|
|
text-align: center;
|
|
font-size: 26px;
|
|
background-color: var(--accentedBg);
|
|
color: var(--accent);
|
|
}
|
|
|
|
.captcha {
|
|
margin: 16px 0;
|
|
}
|
|
</style>
|