2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
<template>
|
2023-02-20 07:40:24 +00:00
|
|
|
<FormSection :first="first">
|
|
|
|
<template #label>{{ i18n.ts['2fa'] }}</template>
|
|
|
|
|
|
|
|
<div v-if="$i" class="_gaps_s">
|
|
|
|
<MkFolder>
|
|
|
|
<template #icon><i class="ti ti-shield-lock"></i></template>
|
|
|
|
<template #label>{{ i18n.ts.totp }}</template>
|
|
|
|
<template #caption>{{ i18n.ts.totpDescription }}</template>
|
|
|
|
<div v-if="$i.twoFactorEnabled" class="_gaps_s">
|
|
|
|
<div v-text="i18n.ts._2fa.alreadyRegistered"/>
|
|
|
|
<template v-if="$i.securityKeysList.length > 0">
|
|
|
|
<MkButton @click="renewTOTP">{{ i18n.ts._2fa.renewTOTP }}</MkButton>
|
|
|
|
<MkInfo>{{ i18n.ts._2fa.whyTOTPOnlyRenew }}</MkInfo>
|
|
|
|
</template>
|
|
|
|
<MkButton v-else @click="unregisterTOTP">{{ i18n.ts.unregister }}</MkButton>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<MkButton v-else-if="!twoFactorData && !$i.twoFactorEnabled" @click="registerTOTP">{{ i18n.ts._2fa.registerTOTP }}</MkButton>
|
|
|
|
</MkFolder>
|
|
|
|
|
|
|
|
<MkFolder>
|
|
|
|
<template #icon><i class="ti ti-key"></i></template>
|
|
|
|
<template #label>{{ i18n.ts.securityKeyAndPasskey }}</template>
|
|
|
|
<div class="_gaps_s">
|
|
|
|
<MkInfo>
|
|
|
|
{{ i18n.ts._2fa.securityKeyInfo }}<br>
|
|
|
|
<br>
|
|
|
|
{{ i18n.ts._2fa.chromePasskeyNotSupported }}
|
|
|
|
</MkInfo>
|
|
|
|
|
|
|
|
<MkInfo v-if="!supportsCredentials" warn>
|
|
|
|
{{ i18n.ts._2fa.securityKeyNotSupported }}
|
|
|
|
</MkInfo>
|
|
|
|
|
|
|
|
<MkInfo v-else-if="supportsCredentials && !$i.twoFactorEnabled" warn>
|
|
|
|
{{ i18n.ts._2fa.registerTOTPBeforeKey }}
|
|
|
|
</MkInfo>
|
|
|
|
|
|
|
|
<template v-else>
|
|
|
|
<MkButton primary @click="addSecurityKey">{{ i18n.ts._2fa.registerSecurityKey }}</MkButton>
|
|
|
|
<MkFolder v-for="key in $i.securityKeysList" :key="key.id">
|
|
|
|
<template #label>{{ key.name }}</template>
|
|
|
|
<template #suffix><I18n :src="i18n.ts.lastUsedAt"><template #t><MkTime :time="key.lastUsed"/></template></I18n></template>
|
|
|
|
<div class="_buttons">
|
|
|
|
<MkButton @click="renameKey(key)"><i class="ti ti-forms"></i> {{ i18n.ts.rename }}</MkButton>
|
|
|
|
<MkButton danger @click="unregisterKey(key)"><i class="ti ti-trash"></i> {{ i18n.ts.unregister }}</MkButton>
|
|
|
|
</div>
|
|
|
|
</MkFolder>
|
|
|
|
</template>
|
2021-11-28 11:07:37 +00:00
|
|
|
</div>
|
2023-02-20 07:40:24 +00:00
|
|
|
</MkFolder>
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-05-19 11:52:15 +00:00
|
|
|
<MkSwitch :disabled="!$i.twoFactorEnabled || $i.securityKeysList.length === 0" :modelValue="usePasswordLessLogin" @update:modelValue="v => updatePasswordLessLogin(v)">
|
2023-02-20 07:40:24 +00:00
|
|
|
<template #label>{{ i18n.ts.passwordLessLogin }}</template>
|
|
|
|
<template #caption>{{ i18n.ts.passwordLessLoginDescription }}</template>
|
|
|
|
</MkSwitch>
|
2020-01-29 19:37:25 +00:00
|
|
|
</div>
|
2023-02-20 07:40:24 +00:00
|
|
|
</FormSection>
|
2020-01-29 19:37:25 +00:00
|
|
|
</template>
|
|
|
|
|
2022-05-05 13:41:10 +00:00
|
|
|
<script lang="ts" setup>
|
2023-02-20 07:40:24 +00:00
|
|
|
import { ref, defineAsyncComponent } from 'vue';
|
2021-11-11 17:02:25 +00:00
|
|
|
import { hostname } from '@/config';
|
|
|
|
import { byteify, hexify, stringify } from '@/scripts/2fa';
|
2022-09-06 09:21:49 +00:00
|
|
|
import MkButton from '@/components/MkButton.vue';
|
|
|
|
import MkInfo from '@/components/MkInfo.vue';
|
2023-01-07 05:59:54 +00:00
|
|
|
import MkSwitch from '@/components/MkSwitch.vue';
|
2023-02-20 07:40:24 +00:00
|
|
|
import FormSection from '@/components/form/section.vue';
|
|
|
|
import MkFolder from '@/components/MkFolder.vue';
|
2021-11-11 17:02:25 +00:00
|
|
|
import * as os from '@/os';
|
2022-05-05 13:41:10 +00:00
|
|
|
import { $i } from '@/account';
|
|
|
|
import { i18n } from '@/i18n';
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-02-20 07:40:24 +00:00
|
|
|
// メモ: 各エンドポイントはmeUpdatedを発行するため、refreshAccountは不要
|
|
|
|
|
|
|
|
withDefaults(defineProps<{
|
|
|
|
first?: boolean;
|
|
|
|
}>(), {
|
|
|
|
first: false,
|
|
|
|
});
|
|
|
|
|
2022-05-05 13:41:10 +00:00
|
|
|
const twoFactorData = ref<any>(null);
|
|
|
|
const supportsCredentials = ref(!!navigator.credentials);
|
2023-02-20 07:40:24 +00:00
|
|
|
const usePasswordLessLogin = $computed(() => $i!.usePasswordLessLogin);
|
2020-11-25 12:31:34 +00:00
|
|
|
|
2023-02-20 07:40:24 +00:00
|
|
|
async function registerTOTP() {
|
|
|
|
const password = await os.inputText({
|
|
|
|
title: i18n.ts._2fa.registerTOTP,
|
|
|
|
text: i18n.ts._2fa.passwordToTOTP,
|
2022-12-20 02:00:05 +00:00
|
|
|
type: 'password',
|
2023-02-20 07:40:24 +00:00
|
|
|
autocomplete: 'current-password',
|
|
|
|
});
|
|
|
|
if (password.canceled) return;
|
|
|
|
|
|
|
|
const twoFactorData = await os.apiWithDialog('i/2fa/register', {
|
|
|
|
password: password.result,
|
|
|
|
});
|
|
|
|
|
|
|
|
const qrdialog = await new Promise<boolean>(res => {
|
|
|
|
os.popup(defineAsyncComponent(() => import('./2fa.qrdialog.vue')), {
|
|
|
|
twoFactorData,
|
|
|
|
}, {
|
|
|
|
'ok': () => res(true),
|
|
|
|
'cancel': () => res(false),
|
|
|
|
}, 'closed');
|
|
|
|
});
|
|
|
|
if (!qrdialog) return;
|
|
|
|
|
|
|
|
const token = await os.inputNumber({
|
|
|
|
title: i18n.ts._2fa.step3Title,
|
|
|
|
text: i18n.ts._2fa.step3,
|
|
|
|
autocomplete: 'one-time-code',
|
|
|
|
});
|
|
|
|
if (token.canceled) return;
|
|
|
|
|
|
|
|
await os.apiWithDialog('i/2fa/done', {
|
|
|
|
token: token.result.toString(),
|
|
|
|
});
|
|
|
|
|
|
|
|
await os.alert({
|
|
|
|
type: 'success',
|
|
|
|
text: i18n.ts._2fa.step4,
|
2022-05-05 13:41:10 +00:00
|
|
|
});
|
|
|
|
}
|
2020-11-25 12:31:34 +00:00
|
|
|
|
2023-02-20 07:40:24 +00:00
|
|
|
function unregisterTOTP() {
|
2022-05-05 13:41:10 +00:00
|
|
|
os.inputText({
|
|
|
|
title: i18n.ts.password,
|
2022-12-20 02:00:05 +00:00
|
|
|
type: 'password',
|
2023-02-20 07:40:24 +00:00
|
|
|
autocomplete: 'current-password',
|
2022-05-05 13:41:10 +00:00
|
|
|
}).then(({ canceled, result: password }) => {
|
|
|
|
if (canceled) return;
|
2023-02-20 07:40:24 +00:00
|
|
|
os.apiWithDialog('i/2fa/unregister', {
|
2022-12-20 02:00:05 +00:00
|
|
|
password: password,
|
2023-02-20 07:40:24 +00:00
|
|
|
}).catch(error => {
|
|
|
|
os.alert({
|
|
|
|
type: 'error',
|
|
|
|
text: error,
|
|
|
|
});
|
2022-05-05 13:41:10 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-02-20 07:40:24 +00:00
|
|
|
function renewTOTP() {
|
|
|
|
os.confirm({
|
|
|
|
type: 'question',
|
|
|
|
title: i18n.ts._2fa.renewTOTP,
|
|
|
|
text: i18n.ts._2fa.renewTOTPConfirm,
|
|
|
|
okText: i18n.ts._2fa.renewTOTPOk,
|
|
|
|
cancelText: i18n.ts._2fa.renewTOTPCancel,
|
|
|
|
}).then(({ canceled }) => {
|
|
|
|
if (canceled) return;
|
|
|
|
registerTOTP();
|
2022-05-05 13:41:10 +00:00
|
|
|
});
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-02-20 07:40:24 +00:00
|
|
|
async function unregisterKey(key) {
|
|
|
|
const confirm = await os.confirm({
|
|
|
|
type: 'question',
|
|
|
|
title: i18n.ts._2fa.removeKey,
|
|
|
|
text: i18n.t('_2fa.removeKeyConfirm', { name: key.name }),
|
2022-06-10 05:36:55 +00:00
|
|
|
});
|
2023-02-20 07:40:24 +00:00
|
|
|
if (confirm.canceled) return;
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-02-20 07:40:24 +00:00
|
|
|
const password = await os.inputText({
|
2022-05-05 13:41:10 +00:00
|
|
|
title: i18n.ts.password,
|
2022-12-20 02:00:05 +00:00
|
|
|
type: 'password',
|
2023-02-20 07:40:24 +00:00
|
|
|
autocomplete: 'current-password',
|
|
|
|
});
|
|
|
|
if (password.canceled) return;
|
|
|
|
|
|
|
|
await os.apiWithDialog('i/2fa/remove-key', {
|
|
|
|
password: password.result,
|
|
|
|
credentialId: key.id,
|
2022-05-05 13:41:10 +00:00
|
|
|
});
|
2023-02-20 07:40:24 +00:00
|
|
|
os.success();
|
2022-05-05 13:41:10 +00:00
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-02-20 07:40:24 +00:00
|
|
|
async function renameKey(key) {
|
|
|
|
const name = await os.inputText({
|
|
|
|
title: i18n.ts.rename,
|
|
|
|
default: key.name,
|
|
|
|
type: 'text',
|
|
|
|
minLength: 1,
|
|
|
|
maxLength: 30,
|
|
|
|
});
|
|
|
|
if (name.canceled) return;
|
|
|
|
|
|
|
|
await os.apiWithDialog('i/2fa/update-key', {
|
|
|
|
name: name.result,
|
|
|
|
credentialId: key.id,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async function addSecurityKey() {
|
|
|
|
const password = await os.inputText({
|
2022-05-05 13:41:10 +00:00
|
|
|
title: i18n.ts.password,
|
2022-12-20 02:00:05 +00:00
|
|
|
type: 'password',
|
2023-02-20 07:40:24 +00:00
|
|
|
autocomplete: 'current-password',
|
|
|
|
});
|
|
|
|
if (password.canceled) return;
|
|
|
|
|
|
|
|
const challenge: any = await os.apiWithDialog('i/2fa/register-key', {
|
|
|
|
password: password.result,
|
|
|
|
});
|
|
|
|
|
|
|
|
const name = await os.inputText({
|
|
|
|
title: i18n.ts._2fa.registerSecurityKey,
|
|
|
|
text: i18n.ts._2fa.securityKeyName,
|
|
|
|
type: 'text',
|
|
|
|
minLength: 1,
|
|
|
|
maxLength: 30,
|
|
|
|
});
|
|
|
|
if (name.canceled) return;
|
|
|
|
|
|
|
|
const webAuthnCreation = navigator.credentials.create({
|
|
|
|
publicKey: {
|
|
|
|
challenge: byteify(challenge.challenge, 'base64'),
|
|
|
|
rp: {
|
|
|
|
id: hostname,
|
|
|
|
name: 'Misskey',
|
|
|
|
},
|
|
|
|
user: {
|
|
|
|
id: byteify($i!.id, 'ascii'),
|
|
|
|
name: $i!.username,
|
|
|
|
displayName: $i!.name,
|
|
|
|
},
|
|
|
|
pubKeyCredParams: [{ alg: -7, type: 'public-key' }],
|
|
|
|
timeout: 60000,
|
|
|
|
attestation: 'direct',
|
|
|
|
},
|
|
|
|
}) as Promise<PublicKeyCredential & { response: AuthenticatorAttestationResponse; } | null>;
|
|
|
|
|
|
|
|
const credential = await os.promiseDialog(
|
|
|
|
webAuthnCreation,
|
|
|
|
null,
|
|
|
|
() => {}, // ユーザーのキャンセルはrejectなのでエラーダイアログを出さない
|
|
|
|
i18n.ts._2fa.tapSecurityKey,
|
|
|
|
);
|
|
|
|
if (!credential) return;
|
|
|
|
|
|
|
|
await os.apiWithDialog('i/2fa/key-done', {
|
|
|
|
password: password.result,
|
|
|
|
name: name.result,
|
|
|
|
challengeId: challenge.challengeId,
|
|
|
|
// we convert each 16 bits to a string to serialise
|
|
|
|
clientDataJSON: stringify(credential.response.clientDataJSON),
|
|
|
|
attestationObject: hexify(credential.response.attestationObject),
|
2022-05-05 13:41:10 +00:00
|
|
|
});
|
|
|
|
}
|
2020-11-25 12:31:34 +00:00
|
|
|
|
2023-02-20 07:40:24 +00:00
|
|
|
async function updatePasswordLessLogin(value: boolean) {
|
|
|
|
await os.apiWithDialog('i/2fa/password-less', {
|
|
|
|
value,
|
2022-05-05 13:41:10 +00:00
|
|
|
});
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
</script>
|