123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308 |
- <script setup lang="ts">
- import { KeyOutlined, LockOutlined, UserOutlined } from '@ant-design/icons-vue'
- import { startAuthentication } from '@simplewebauthn/browser'
- import { Form, message } from 'ant-design-vue'
- import auth from '@/api/auth'
- import install from '@/api/install'
- import passkey from '@/api/passkey'
- import ICP from '@/components/ICP'
- import SetLanguage from '@/components/SetLanguage'
- import SwitchAppearance from '@/components/SwitchAppearance'
- import Authorization from '@/components/TwoFA'
- import gettext from '@/gettext'
- import { useUserStore } from '@/pinia'
- const thisYear = new Date().getFullYear()
- const route = useRoute()
- const router = useRouter()
- install.get_lock().then(async (r: { lock: boolean }) => {
- if (!r.lock)
- await router.push('/install')
- })
- const loading = ref(false)
- const enabled2FA = ref(false)
- const refOTP = useTemplateRef('refOTP')
- const passcode = ref('')
- const recoveryCode = ref('')
- const passkeyConfigStatus = ref(false)
- const modelRef = reactive({
- username: '',
- password: '',
- })
- const rulesRef = reactive({
- username: [
- {
- required: true,
- message: () => $gettext('Please input your username!'),
- },
- ],
- password: [
- {
- required: true,
- message: () => $gettext('Please input your password!'),
- },
- ],
- })
- const { validate, validateInfos, clearValidate } = Form.useForm(modelRef, rulesRef)
- const userStore = useUserStore()
- const { login, passkeyLogin } = userStore
- const { secureSessionId } = storeToRefs(userStore)
- function onSubmit() {
- validate().then(async () => {
- loading.value = true
- await auth.login(modelRef.username, modelRef.password, passcode.value, recoveryCode.value).then(async r => {
- const next = (route.query?.next || '').toString() || '/'
- switch (r.code) {
- case 200:
- message.success($gettext('Login successful'), 1)
- login(r.token)
- await nextTick()
- secureSessionId.value = r.secure_session_id
- await userStore.getCurrentUser()
- await nextTick()
- await router.push(next)
- break
- case 199:
- enabled2FA.value = true
- break
- }
- }).catch(e => {
- if (e.code === 4043) {
- refOTP.value?.clearInput()
- }
- })
- loading.value = false
- })
- }
- const user = useUserStore()
- if (user.isLogin) {
- const next = (route.query?.next || '').toString() || '/dashboard'
- router.push(next)
- }
- watch(() => gettext.current, () => {
- clearValidate()
- })
- const has_casdoor = ref(false)
- const casdoor_uri = ref('')
- auth.get_casdoor_uri()
- .then(r => {
- if (r?.uri) {
- has_casdoor.value = true
- casdoor_uri.value = r.uri
- }
- })
- function loginWithCasdoor() {
- window.location.href = casdoor_uri.value
- }
- if (route.query?.code !== undefined && route.query?.state !== undefined) {
- loading.value = true
- auth.casdoor_login(route.query?.code?.toString(), route.query?.state?.toString()).then(async () => {
- message.success($gettext('Login successful'), 1)
- const next = (route.query?.next || '').toString() || '/'
- await userStore.getCurrentUser()
- await nextTick()
- await router.push(next)
- })
- loading.value = false
- }
- function handleOTPSubmit(code: string, recovery: string) {
- passcode.value = code
- recoveryCode.value = recovery
- nextTick(() => {
- onSubmit()
- })
- }
- passkey.get_config_status().then(r => {
- passkeyConfigStatus.value = r.status
- })
- const passkeyLoginLoading = ref(false)
- async function handlePasskeyLogin() {
- passkeyLoginLoading.value = true
- const begin = await auth.begin_passkey_login()
- const asseResp = await startAuthentication({ optionsJSON: begin.options.publicKey })
- const r = await auth.finish_passkey_login({
- session_id: begin.session_id,
- options: asseResp,
- })
- if (r.token) {
- const next = (route.query?.next || '').toString() || '/'
- passkeyLogin(asseResp.rawId, r.token)
- secureSessionId.value = r.secure_session_id
- await userStore.getCurrentUser()
- await nextTick()
- await router.push(next)
- }
- passkeyLoginLoading.value = false
- }
- </script>
- <template>
- <ALayout>
- <ALayoutContent>
- <div class="login-container">
- <div class="login-form">
- <div class="project-title">
- <h1>Nginx UI</h1>
- </div>
- <AForm id="components-form-demo-normal-login">
- <template v-if="!enabled2FA">
- <AFormItem v-bind="validateInfos.username">
- <AInput
- v-model:value="modelRef.username"
- :placeholder="$gettext('Username')"
- >
- <template #prefix>
- <UserOutlined style="color: rgba(0, 0, 0, 0.25)" />
- </template>
- </AInput>
- </AFormItem>
- <AFormItem v-bind="validateInfos.password">
- <AInputPassword
- v-model:value="modelRef.password"
- :placeholder="$gettext('Password')"
- >
- <template #prefix>
- <LockOutlined style="color: rgba(0, 0, 0, 0.25)" />
- </template>
- </AInputPassword>
- </AFormItem>
- <AButton
- v-if="has_casdoor"
- block
- :loading="loading"
- class="mb-5"
- @click="loginWithCasdoor"
- >
- {{ $gettext('SSO Login') }}
- </AButton>
- </template>
- <div v-else>
- <Authorization
- ref="refOTP"
- :two-f-a-status="{
- enabled: true,
- otp_status: true,
- passkey_status: false,
- recovery_codes_generated: true,
- }"
- @submit-o-t-p="handleOTPSubmit"
- />
- </div>
- <AFormItem v-if="!enabled2FA">
- <AButton
- type="primary"
- block
- html-type="submit"
- :loading="loading"
- class="mb-2"
- @click="onSubmit"
- >
- {{ $gettext('Login') }}
- </AButton>
- <div
- v-if="passkeyConfigStatus"
- class="flex flex-col justify-center"
- >
- <ADivider>
- <div class="text-sm font-normal opacity-75">
- {{ $gettext('Or') }}
- </div>
- </ADivider>
- <AButton
- :loading="passkeyLoginLoading"
- @click="handlePasskeyLogin"
- >
- <KeyOutlined />
- {{ $gettext('Sign in with a passkey') }}
- </AButton>
- </div>
- </AFormItem>
- </AForm>
- <div class="footer">
- <p class="mb-4">
- Copyright © 2021 - {{ thisYear }} Nginx UI
- </p>
- <ICP class="mb-4" />
- Language
- <SetLanguage class="inline" />
- <div class="flex justify-center mt-4">
- <SwitchAppearance />
- </div>
- </div>
- </div>
- </div>
- </ALayoutContent>
- </ALayout>
- </template>
- <style lang="less" scoped>
- .ant-layout-content {
- background: #fff;
- }
- .dark .ant-layout-content {
- background: transparent;
- }
- .login-container {
- display: flex;
- align-items: center;
- justify-content: center;
- height: 100vh;
- .login-form {
- max-width: 420px;
- width: 80%;
- .project-title {
- margin: 50px;
- h1 {
- font-size: 50px;
- font-weight: 100;
- text-align: center;
- }
- }
- .anticon {
- color: #a8a5a5 !important;
- }
- .footer {
- padding: 30px 20px;
- text-align: center;
- font-size: 14px;
- }
- }
- }
- </style>
|