227 lines
4.9 KiB
Vue
227 lines
4.9 KiB
Vue
<script setup lang="ts">
|
|
import { ref, onMounted } from "vue";
|
|
import { useRouter } from "vue-router";
|
|
import { useI18n } from "vue-i18n";
|
|
import { setApiKey, hasApiKey } from "@/api/client";
|
|
import { fetchAuthStatus, loginWithPassword } from "@/api/auth";
|
|
|
|
const { t } = useI18n();
|
|
const router = useRouter();
|
|
|
|
const username = ref("");
|
|
const password = ref("");
|
|
const loading = ref(false);
|
|
const errorMsg = ref("");
|
|
const showLockResetHint = ref(false);
|
|
|
|
// If already has a key, try to go to main page
|
|
if (hasApiKey()) {
|
|
router.replace("/hermes/chat");
|
|
}
|
|
|
|
onMounted(async () => {
|
|
try {
|
|
await fetchAuthStatus();
|
|
} catch {
|
|
// Login remains available; the submit request will surface connection errors.
|
|
}
|
|
});
|
|
|
|
async function handleLogin() {
|
|
await handlePasswordLogin();
|
|
}
|
|
|
|
async function handlePasswordLogin() {
|
|
if (!username.value.trim() || !password.value) {
|
|
errorMsg.value = t("login.credentialsRequired");
|
|
return;
|
|
}
|
|
|
|
loading.value = true;
|
|
errorMsg.value = "";
|
|
showLockResetHint.value = false;
|
|
|
|
try {
|
|
const sessionToken = await loginWithPassword(username.value.trim(), password.value);
|
|
setApiKey(sessionToken);
|
|
router.replace("/hermes/chat");
|
|
} catch (err: any) {
|
|
if (err.status === 429 || err.status === 503) {
|
|
errorMsg.value = t("login.tooManyAttempts");
|
|
showLockResetHint.value = true;
|
|
} else {
|
|
errorMsg.value = err.message || t("login.invalidCredentials");
|
|
}
|
|
} finally {
|
|
loading.value = false;
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div class="login-view">
|
|
<div class="login-card">
|
|
<div class="login-logo">
|
|
<img src="/logo.png" alt="新觅源码库" width="80" height="80" />
|
|
</div>
|
|
<h1 class="login-title">{{ t("login.title") }}</h1>
|
|
<p class="login-desc">{{ t("login.description") }}</p>
|
|
<p class="login-default-hint">{{ t("login.defaultCredentialsHint") }}</p>
|
|
|
|
<form class="login-form" @submit.prevent="handleLogin">
|
|
<input
|
|
v-model="username"
|
|
type="text"
|
|
class="login-input"
|
|
:placeholder="t('login.usernamePlaceholder')"
|
|
autofocus
|
|
/>
|
|
<input
|
|
v-model="password"
|
|
type="password"
|
|
class="login-input"
|
|
:placeholder="t('login.passwordPlaceholder')"
|
|
@keyup.enter="handleLogin"
|
|
/>
|
|
|
|
<div v-if="errorMsg" class="login-error">{{ errorMsg }}</div>
|
|
<div v-if="showLockResetHint" class="login-lock-hint">
|
|
<span>{{ t("login.lockResetHint") }}</span>
|
|
<code>xinmi-hermes-ui clear-login-locks --restart</code>
|
|
<span>{{ t("login.defaultLoginResetHint") }}</span>
|
|
<code>xinmi-hermes-ui reset-default-login</code>
|
|
</div>
|
|
<button type="submit" class="login-btn" :disabled="loading">
|
|
{{ loading ? "..." : t("login.submit") }}
|
|
</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped lang="scss">
|
|
@use "@/styles/variables" as *;
|
|
|
|
.login-view {
|
|
height: calc(100 * var(--vh));
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: $bg-primary;
|
|
}
|
|
|
|
.login-card {
|
|
width: 480px;
|
|
max-width: calc(100vw - 32px);
|
|
padding: 56px;
|
|
border: 1px solid $border-color;
|
|
border-radius: $radius-lg;
|
|
background: $bg-card;
|
|
text-align: center;
|
|
|
|
@media (max-width: $breakpoint-mobile) {
|
|
padding: 32px 24px;
|
|
}
|
|
}
|
|
|
|
.login-logo {
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
.login-title {
|
|
font-size: 26px;
|
|
font-weight: 600;
|
|
color: $text-primary;
|
|
margin: 0 0 10px;
|
|
}
|
|
|
|
.login-desc {
|
|
font-size: 14px;
|
|
color: $text-muted;
|
|
margin: 0 0 12px;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.login-default-hint {
|
|
margin: 0 0 28px;
|
|
font-family: $font-code;
|
|
font-size: 13px;
|
|
color: $text-secondary;
|
|
}
|
|
|
|
.login-form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 14px;
|
|
}
|
|
|
|
.login-input {
|
|
width: 100%;
|
|
padding: 14px 16px;
|
|
border: 1px solid $border-color;
|
|
border-radius: $radius-sm;
|
|
font-size: 15px;
|
|
color: $text-primary;
|
|
background: $bg-input;
|
|
outline: none;
|
|
transition: border-color $transition-fast;
|
|
box-sizing: border-box;
|
|
font-family: $font-code;
|
|
|
|
&::placeholder {
|
|
color: $text-muted;
|
|
}
|
|
|
|
&:focus {
|
|
border-color: $accent-primary;
|
|
}
|
|
}
|
|
|
|
.login-error {
|
|
font-size: 13px;
|
|
color: $error;
|
|
text-align: left;
|
|
}
|
|
|
|
.login-lock-hint {
|
|
padding: 10px 12px;
|
|
border: 1px solid rgba(var(--warning-rgb), 0.35);
|
|
border-radius: $radius-sm;
|
|
background: rgba(var(--warning-rgb), 0.08);
|
|
color: $text-secondary;
|
|
font-size: 12px;
|
|
line-height: 1.5;
|
|
text-align: left;
|
|
|
|
code {
|
|
display: block;
|
|
margin-top: 4px;
|
|
color: $text-primary;
|
|
font-family: $font-code;
|
|
word-break: break-all;
|
|
}
|
|
}
|
|
|
|
.login-btn {
|
|
width: 100%;
|
|
padding: 14px;
|
|
border: none;
|
|
border-radius: $radius-sm;
|
|
background: $text-primary;
|
|
color: var(--text-on-accent);
|
|
font-size: 15px;
|
|
font-weight: 500;
|
|
cursor: pointer;
|
|
transition: opacity $transition-fast;
|
|
|
|
&:hover {
|
|
opacity: 0.85;
|
|
}
|
|
|
|
&:disabled {
|
|
opacity: 0.5;
|
|
cursor: not-allowed;
|
|
}
|
|
}
|
|
</style>
|