UnisKB/ui/src/views/login/index.vue

276 lines
7.5 KiB
Vue
Raw Normal View History

2023-09-15 09:40:35 +00:00
<template>
2024-07-23 10:21:46 +00:00
<login-layout v-if="user.isEnterprise() ? user.themeInfo : true" v-loading="loading">
2024-09-10 02:39:08 +00:00
<LoginContainer :subTitle="user.themeInfo?.slogan || '欢迎使用 MaxKB 智能知识库问答系统'">
2024-10-09 02:59:45 +00:00
<h2 class="mb-24" v-if="!showQrCodeTab">{{ loginMode || '' }}</h2>
<div v-if="!showQrCodeTab">
<el-form
class="login-form"
:rules="rules"
:model="loginForm"
ref="loginFormRef"
@keyup.enter="login"
2024-10-09 02:59:45 +00:00
>
<div class="mb-24">
<el-form-item prop="username">
<el-input
size="large"
class="input-item"
v-model="loginForm.username"
placeholder="请输入用户名"
2024-10-09 02:59:45 +00:00
>
</el-input>
</el-form-item>
</div>
<div class="mb-24">
<el-form-item prop="password">
<el-input
type="password"
size="large"
class="input-item"
v-model="loginForm.password"
placeholder="请输入密码"
show-password
2024-10-09 02:59:45 +00:00
>
</el-input>
</el-form-item>
</div>
</el-form>
<el-button size="large" type="primary" class="w-full" @click="login"></el-button>
<div class="operate-container flex-between mt-12">
<!-- <el-button class="register" @click="router.push('/register')" link type="primary">
2023-10-12 08:36:16 +00:00
注册
2024-03-21 06:19:01 +00:00
</el-button> -->
2024-10-09 02:59:45 +00:00
<el-button
class="forgot-password"
@click="router.push('/forgot_password')"
link
type="primary"
2024-10-09 02:59:45 +00:00
>
忘记密码?
</el-button>
</div>
</div>
<div v-if="showQrCodeTab">
<QrCodeTab :tabs="orgOptions" />
2023-10-12 08:36:16 +00:00
</div>
2024-07-11 06:44:18 +00:00
2024-07-11 11:51:28 +00:00
<div class="login-gradient-divider lighter mt-24" v-if="modeList.length > 1">
2024-07-11 06:44:18 +00:00
<span>更多登录方式</span>
</div>
<div class="text-center mt-16">
2024-07-11 11:51:28 +00:00
<template v-for="item in modeList">
<el-button
2024-10-09 02:59:45 +00:00
v-if="item !== '' && loginMode !== item && item !== 'QR_CODE'"
circle
:key="item"
class="login-button-circle color-secondary"
@click="changeMode(item)"
>{{ item }}
2024-07-11 11:51:28 +00:00
</el-button>
<el-button
2024-10-09 02:59:45 +00:00
v-if="item === 'QR_CODE' && loginMode !== item"
circle
:key="item"
class="login-button-circle color-secondary"
@click="changeMode('QR_CODE')"
>
<img src="@/assets/icon_qr_outlined.svg" width="25px" />
</el-button>
<el-button
v-if="item === '' && loginMode !== ''"
circle
:key="item"
class="login-button-circle color-secondary"
style="font-size: 24px"
icon="UserFilled"
@click="changeMode('')"
2024-07-11 11:51:28 +00:00
/>
</template>
</div>
2023-10-12 08:36:16 +00:00
</LoginContainer>
</login-layout>
2023-09-15 09:40:35 +00:00
</template>
<script setup lang="ts">
2024-10-09 02:59:45 +00:00
import { onMounted, ref, onBeforeMount } from 'vue'
import type { LoginRequest } from '@/api/type/user'
import { useRouter } from 'vue-router'
import type { FormInstance, FormRules } from 'element-plus'
2023-10-19 10:18:45 +00:00
import useStore from '@/stores'
2024-10-09 02:59:45 +00:00
import authApi from '@/api/auth-setting'
import { MsgConfirm, MsgSuccess } from '@/utils/message'
import { t } from '@/locales'
import QrCodeTab from '@/views/login/components/QrCodeTab.vue'
2023-10-12 08:36:16 +00:00
const loading = ref<boolean>(false)
2024-10-09 02:59:45 +00:00
const { user } = useStore()
2023-09-15 09:40:35 +00:00
const router = useRouter()
const loginForm = ref<LoginRequest>({
2023-10-12 08:36:16 +00:00
username: '',
password: ''
})
2023-09-15 09:40:35 +00:00
const rules = ref<FormRules<LoginRequest>>({
2023-10-12 08:36:16 +00:00
username: [
{
required: true,
message: '请输入用户名',
trigger: 'blur'
}
],
password: [
{
required: true,
message: '请输入密码',
trigger: 'blur'
2024-03-21 06:19:01 +00:00
}
2023-10-12 08:36:16 +00:00
]
2023-09-15 09:40:35 +00:00
})
const loginFormRef = ref<FormInstance>()
2024-07-16 09:32:27 +00:00
const modeList = ref<string[]>([''])
2024-10-09 02:59:45 +00:00
const QrList = ref<any[]>([''])
2024-07-11 06:44:18 +00:00
const loginMode = ref('')
2024-10-09 02:59:45 +00:00
const showQrCodeTab = ref(false)
interface qrOption {
key: string
value: string
}
const orgOptions = ref<qrOption[]>([])
function redirectAuth(authType: string) {
if (authType === 'LDAP' || authType === '') {
2024-10-09 02:59:45 +00:00
return
}
authApi.getAuthSetting(authType, loading).then((res: any) => {
if (!res.data) {
2024-10-09 02:59:45 +00:00
return
}
2024-10-09 02:59:45 +00:00
MsgConfirm(`${t('login.jump_tip')}`, t(''), {
confirmButtonText: t('login.jump'),
cancelButtonText: t('views.applicationOverview.appInfo.APIKeyDialog.cancel'),
confirmButtonClass: ''
})
.then(() => {
if (!res.data.config_data) {
return
}
2024-10-09 02:59:45 +00:00
const config = res.data.config_data
const redirectUrl = eval(`\`${config.redirectUrl}\``)
let url
if (authType === 'CAS') {
url = `${config.ldpUri}?service=${encodeURIComponent(redirectUrl)}`
}
if (authType === 'OIDC') {
url = `${config.authEndpoint}?client_id=${config.clientId}&redirect_uri=${redirectUrl}&response_type=code&scope=openid+profile+email`
}
if (url) {
window.location.href = url
}
})
.catch(() => {})
})
}
2024-07-11 06:44:18 +00:00
function changeMode(val: string) {
2024-10-09 02:59:45 +00:00
loginMode.value = val === 'LDAP' ? val : ''
if (val === 'QR_CODE') {
loginMode.value = val
showQrCodeTab.value = true
return
}
showQrCodeTab.value = false
2024-07-11 06:44:18 +00:00
loginForm.value = {
username: '',
password: ''
}
redirectAuth(val)
2024-07-11 06:44:18 +00:00
loginFormRef.value?.clearValidate()
}
2023-09-15 09:40:35 +00:00
const login = () => {
2023-10-12 08:36:16 +00:00
loginFormRef.value?.validate().then(() => {
loading.value = true
2023-10-19 10:18:45 +00:00
user
2024-10-09 02:59:45 +00:00
.login(loginMode.value, loginForm.value.username, loginForm.value.password)
.then(() => {
router.push({ name: 'home' })
})
.finally(() => (loading.value = false))
2023-10-12 08:36:16 +00:00
})
2023-09-15 09:40:35 +00:00
}
2024-07-11 11:51:28 +00:00
onMounted(() => {
user.asyncGetProfile().then((res) => {
2024-07-30 03:02:49 +00:00
if (user.isEnterprise()) {
2024-07-11 11:51:28 +00:00
loading.value = true
2024-07-16 09:32:27 +00:00
user
2024-10-09 02:59:45 +00:00
.getAuthType()
.then((res) => {
//如果结果包含LDAP把LDAP放在第一个
const ldapIndex = res.indexOf('LDAP')
if (ldapIndex !== -1) {
const [ldap] = res.splice(ldapIndex, 1)
res.unshift(ldap)
}
2024-10-09 02:59:45 +00:00
modeList.value = [...modeList.value, ...res]
})
.finally(() => (loading.value = false))
user
.getQrType()
.then((res) => {
if (res.length > 0) {
modeList.value = ['QR_CODE', ...modeList.value]
QrList.value = res
QrList.value.forEach((item) => {
orgOptions.value.push({
key: item,
value: item === 'wecom' ? '企业微信' : item === 'dingtalk' ? '钉钉' : '飞书'
})
})
}
})
.finally(() => (loading.value = false))
2024-07-11 11:51:28 +00:00
}
})
})
2024-07-23 10:21:46 +00:00
onBeforeMount(() => {
if (user.isEnterprise()) {
user.theme(loading)
}
})
2023-09-15 09:40:35 +00:00
</script>
2024-07-11 06:44:18 +00:00
<style lang="scss" scope>
.login-gradient-divider {
position: relative;
text-align: center;
color: var(--el-color-info);
::before {
content: '';
width: 25%;
height: 1px;
background: linear-gradient(90deg, rgba(222, 224, 227, 0) 0%, #dee0e3 100%);
position: absolute;
left: 16px;
top: 50%;
}
::after {
content: '';
width: 25%;
height: 1px;
background: linear-gradient(90deg, #dee0e3 0%, rgba(222, 224, 227, 0) 100%);
position: absolute;
right: 16px;
top: 50%;
}
}
2024-07-11 11:51:28 +00:00
2024-07-11 06:44:18 +00:00
.login-button-circle {
2024-10-09 02:59:45 +00:00
padding: 20px !important;
margin: 0 4px;
width: 32px;
height: 32px;
text-align: center;
2024-07-11 06:44:18 +00:00
}
</style>