hippofish/packages/client/src/components/MkSignin.vue

366 lines
8.1 KiB
Vue
Raw Normal View History

2018-02-10 08:22:14 +01:00
<template>
2023-04-08 02:01:42 +02:00
<form
class="eppvobhk _monolithic_"
:class="{ signing, totpLogin }"
@submit.prevent="onSubmit"
>
<div class="auth _section _formRoot">
<div
v-show="withAvatar"
class="avatar"
:style="{
backgroundImage: user ? `url('${user.avatarUrl}')` : null,
marginBottom: message ? '1.5em' : null,
}"
></div>
<MkInfo v-if="message">
{{ message }}
</MkInfo>
<div v-if="!totpLogin" class="normal-signin">
<MkInput
v-model="username"
class="_formBlock"
:placeholder="i18n.ts.username"
type="text"
pattern="^[a-zA-Z0-9_]+$"
:spellcheck="false"
autofocus
required
data-cy-signin-username
@update:modelValue="onUsernameChange"
>
<template #prefix>@</template>
<template #suffix>@{{ host }}</template>
2020-10-31 01:39:22 +01:00
</MkInput>
2023-04-08 02:01:42 +02:00
<MkInput
v-if="!user || (user && !user.usePasswordLessLogin)"
v-model="password"
class="_formBlock"
:placeholder="i18n.ts.password"
type="password"
:with-password-toggle="true"
autocomplete="current-password"
2023-04-08 02:01:42 +02:00
required
data-cy-signin-password
>
<template #prefix
><i class="ph-lock ph-bold ph-lg"></i
></template>
<template #caption
><button
class="_textButton"
type="button"
@click="resetPassword"
>
{{ i18n.ts.forgotPassword }}
</button></template
>
2020-10-31 01:39:22 +01:00
</MkInput>
2023-04-08 02:01:42 +02:00
<MkButton
class="_formBlock"
type="submit"
primary
:disabled="signing"
style="margin: 1rem auto"
>{{ signing ? i18n.ts.loggingIn : i18n.ts.login }}</MkButton
>
2020-10-31 01:39:22 +01:00
</div>
2023-04-08 02:01:42 +02:00
<div
v-if="totpLogin"
class="2fa-signin"
:class="{ securityKeys: user && user.securityKeys }"
>
<div
v-if="user && user.securityKeys"
class="twofa-group tap-group"
>
<p>{{ i18n.ts.tapSecurityKey }}</p>
<MkButton v-if="!queryingKey" @click="queryKey">
{{ i18n.ts.retry }}
</MkButton>
</div>
<div v-if="user && user.securityKeys" class="or-hr">
<p class="or-msg">{{ i18n.ts.or }}</p>
</div>
<div class="twofa-group totp-group">
<p style="margin-bottom: 0">
{{ i18n.ts.twoStepAuthentication }}
</p>
<MkInput
v-if="user && user.usePasswordLessLogin"
v-model="password"
type="password"
:with-password-toggle="true"
autocomplete="current-password"
2023-04-08 02:01:42 +02:00
required
>
<template #label>{{ i18n.ts.password }}</template>
<template #prefix
><i class="ph-lock ph-bold ph-lg"></i
></template>
</MkInput>
<MkInput
2023-04-08 02:01:42 +02:00
v-model="token"
type="text"
autocomplete="one-time-code"
pattern="^[0-9]{6}$"
:spellcheck="false"
2023-04-08 02:01:42 +02:00
required
>
<template #label>{{ i18n.ts._2fa.token }}</template>
<template #prefix
><i class="ph-poker-chip ph-bold ph-lg"></i
></template>
</MkInput>
2023-04-08 02:01:42 +02:00
<MkButton
type="submit"
:disabled="signing"
primary
style="margin: 1rem auto auto"
2023-04-08 02:01:42 +02:00
>{{
signing ? i18n.ts.loggingIn : i18n.ts.login
}}</MkButton
>
</div>
</div>
</div>
</form>
2018-02-10 08:22:14 +01:00
</template>
<script lang="ts" setup>
2023-09-02 01:27:33 +02:00
import { computed, defineAsyncComponent, ref } from "vue";
2023-04-08 02:01:42 +02:00
import { toUnicode } from "punycode/";
import MkButton from "@/components/MkButton.vue";
import MkInput from "@/components/form/input.vue";
import MkInfo from "@/components/MkInfo.vue";
import { apiUrl, host as configHost } from "@/config";
import { byteify, hexify } from "@/scripts/2fa";
import * as os from "@/os";
import { login } from "@/account";
import { i18n } from "@/i18n";
2018-02-10 08:22:14 +01:00
2023-09-02 01:27:33 +02:00
const signing = ref(false);
const user = ref(null);
const username = ref("");
const password = ref("");
const token = ref("");
const host = ref(toUnicode(configHost));
const totpLogin = ref(false);
const challengeData = ref(null);
const queryingKey = ref(false);
const hCaptchaResponse = ref(null);
const reCaptchaResponse = ref(null);
2018-12-18 16:40:29 +01:00
const emit = defineEmits<{
2023-04-08 02:01:42 +02:00
(ev: "login", v: any): void;
}>();
2018-12-18 16:40:29 +01:00
const props = defineProps({
withAvatar: {
type: Boolean,
required: false,
2022-11-16 10:29:18 +01:00
default: true,
},
autoSet: {
type: Boolean,
required: false,
default: false,
},
message: {
type: String,
required: false,
2023-04-08 02:01:42 +02:00
default: "",
2022-11-16 10:29:18 +01:00
},
});
function onUsernameChange() {
2023-04-08 02:01:42 +02:00
os.api("users/show", {
username: username.value,
2023-04-08 02:01:42 +02:00
}).then(
(userResponse) => {
user.value = userResponse;
2023-04-08 02:01:42 +02:00
},
() => {
user.value = null;
2023-07-06 03:28:27 +02:00
},
2023-04-08 02:01:42 +02:00
);
}
function onLogin(res) {
if (props.autoSet) {
return login(res.i);
}
}
function queryKey() {
queryingKey.value = true;
2023-04-08 02:01:42 +02:00
return navigator.credentials
.get({
publicKey: {
challenge: byteify(challengeData.value.challenge, "base64"),
allowCredentials: challengeData.value.securityKeys.map(
(key) => ({
id: byteify(key.id, "hex"),
type: "public-key",
transports: ["usb", "nfc", "ble", "internal"],
}),
),
2023-04-08 02:01:42 +02:00
timeout: 60 * 1000,
},
})
.catch(() => {
queryingKey.value = false;
2023-04-08 02:01:42 +02:00
return Promise.reject(null);
})
.then((credential) => {
queryingKey.value = false;
signing.value = true;
2023-04-08 02:01:42 +02:00
return os.api("signin", {
username: username.value,
password: password.value,
2023-04-08 02:01:42 +02:00
signature: hexify(credential.response.signature),
authenticatorData: hexify(
2023-07-06 03:28:27 +02:00
credential.response.authenticatorData,
2023-04-08 02:01:42 +02:00
),
clientDataJSON: hexify(credential.response.clientDataJSON),
credentialId: credential.id,
challengeId: challengeData.value.challengeId,
"hcaptcha-response": hCaptchaResponse.value,
"g-recaptcha-response": reCaptchaResponse.value,
2023-04-08 02:01:42 +02:00
});
})
.then((res) => {
emit("login", res);
return onLogin(res);
})
.catch((err) => {
if (err === null) return;
os.alert({
type: "error",
text: i18n.ts.signinFailed,
});
signing.value = false;
});
}
function onSubmit() {
signing.value = true;
2023-04-08 02:01:42 +02:00
console.log("submit");
if (!totpLogin.value && user.value && user.value.twoFactorEnabled) {
if (window.PublicKeyCredential && user.value.securityKeys) {
2023-04-08 02:01:42 +02:00
os.api("signin", {
username: username.value,
password: password.value,
"hcaptcha-response": hCaptchaResponse.value,
"g-recaptcha-response": reCaptchaResponse.value,
2023-04-08 02:01:42 +02:00
})
.then((res) => {
totpLogin.value = true;
signing.value = false;
challengeData.value = res;
2023-04-08 02:01:42 +02:00
return queryKey();
})
.catch(loginFailed);
} else {
totpLogin.value = true;
signing.value = false;
}
} else {
2023-04-08 02:01:42 +02:00
os.api("signin", {
username: username.value,
password: password.value,
"hcaptcha-response": hCaptchaResponse.value,
"g-recaptcha-response": reCaptchaResponse.value,
token:
user.value && user.value.twoFactorEnabled
? token.value
: undefined,
2023-04-08 02:01:42 +02:00
})
.then((res) => {
emit("login", res);
onLogin(res);
})
.catch(loginFailed);
}
}
function loginFailed(err) {
switch (err.id) {
2023-04-08 02:01:42 +02:00
case "6cc579cc-885d-43d8-95c2-b8c7fc963280": {
os.alert({
2023-04-08 02:01:42 +02:00
type: "error",
title: i18n.ts.loginFailed,
2022-11-16 10:29:18 +01:00
text: i18n.ts.noSuchUser,
});
break;
}
2023-04-08 02:01:42 +02:00
case "932c904e-9460-45b7-9ce6-7ed33be7eb2c": {
os.alert({
2023-04-08 02:01:42 +02:00
type: "error",
title: i18n.ts.loginFailed,
text: i18n.ts.incorrectPassword,
});
break;
}
2023-04-08 02:01:42 +02:00
case "e03a5f46-d309-4865-9b69-56282d94e1eb": {
showSuspendedDialog();
break;
}
2023-04-08 02:01:42 +02:00
case "22d05606-fbcf-421a-a2db-b32610dcfd1b": {
os.alert({
2023-04-08 02:01:42 +02:00
type: "error",
title: i18n.ts.loginFailed,
text: i18n.ts.rateLimitExceeded,
});
break;
}
default: {
console.log(err);
os.alert({
2023-04-08 02:01:42 +02:00
type: "error",
title: i18n.ts.loginFailed,
2022-11-16 10:29:18 +01:00
text: JSON.stringify(err),
});
2018-02-10 08:22:14 +01:00
}
}
challengeData.value = null;
totpLogin.value = false;
signing.value = false;
}
function resetPassword() {
2023-04-08 02:01:42 +02:00
os.popup(
defineAsyncComponent(() => import("@/components/MkForgotPassword.vue")),
{},
{},
2023-07-06 03:28:27 +02:00
"closed",
2023-04-08 02:01:42 +02:00
);
}
function showSuspendedDialog() {
os.alert({
type: "error",
title: i18n.ts.yourAccountSuspendedTitle,
text: i18n.ts.yourAccountSuspendedDescription,
});
}
2018-02-10 08:22:14 +01:00
</script>
<style lang="scss" scoped>
.eppvobhk {
2020-10-31 01:39:22 +01:00
> .auth {
> .avatar {
margin: 0 auto 0 auto;
width: 64px;
height: 64px;
background: var(--accentedBg);
2020-10-31 01:39:22 +01:00
background-position: center;
background-size: cover;
border-radius: 100%;
transition: background-image 0.2s ease-in;
2020-10-31 01:39:22 +01:00
}
}
}
2018-02-10 08:22:14 +01:00
</style>