feat(系统设置): 认证登陆

This commit is contained in:
guoyuqi 2024-07-05 19:21:45 +08:00 committed by Craftsman
parent 849a108af4
commit c8c096b86a
3 changed files with 76 additions and 8 deletions

View File

@ -78,6 +78,6 @@ public class TestPlanCollectionMinderEditDTO implements Serializable {
private Integer level;
@Schema(description = "关联关系的数据")
private List<TestPlanCollectionAssociateDTO>associateDTOS;
private List<TestPlanCollectionAssociateDTO> associateDTOS;
}

View File

@ -77,7 +77,7 @@
<tab-qr-code :tab-name="activeName === 'WE_COM' ? 'WE_COM' : orgOptions[0].value"></tab-qr-code>
</div>
<a-divider
v-if="isShowLDAP || isShowOIDC || isShowOAUTH || (isShowQRCode && orgOptions.length > 0)"
v-if="isShowLDAP || isShowOIDC || isShowOAUTH || isShowCAS || (isShowQRCode && orgOptions.length > 0)"
orientation="center"
type="dashed"
class="m-0 mb-2"
@ -98,14 +98,16 @@
<div v-if="userInfo.authenticate !== 'LOCAL'" class="loginType" @click="switchLoginType('LOCAL')">
<svg-icon width="18px" height="18px" name="userLogin"></svg-icon
></div>
<div v-if="isShowOIDC && userInfo.authenticate !== 'OIDC'" class="loginType">
<div v-if="isShowOIDC && userInfo.authenticate !== 'OIDC'" class="loginType" @click="redirectAuth('OIDC')">
<span class="type-text text-[10px]">OIDC</span>
</div>
<div v-if="isShowOAUTH && userInfo.authenticate !== 'OAuth2'" class="loginType">
<div v-if="isShowOAUTH && userInfo.authenticate !== 'OAUTH2'" class="loginType" @click="redirectAuth('OAUTH2')">
<span class="type-text text-[7px]">OAUTH</span>
</div>
<div v-if="isShowCAS && userInfo.authenticate !== 'CAS'" class="loginType" @click="redirectAuth('CAS')">
<span class="type-text text-[7px]">CAS</span>
</div>
</div>
<div v-if="props.isPreview" class="mask"></div>
</div>
</div>
@ -120,10 +122,12 @@
import TabQrCode from '@/views/login/components/tabQrCode.vue';
import { getProjectInfo } from '@/api/modules/project-management/basicInfo';
import { getAuthDetail } from '@/api/modules/setting/config';
import { getPlatformParamUrl } from '@/api/modules/user';
import { GetLoginLogoUrl } from '@/api/requrls/setting/config';
import { useI18n } from '@/hooks/useI18n';
import useLoading from '@/hooks/useLoading';
import useModal from '@/hooks/useModal';
import { NO_PROJECT_ROUTE_NAME, NO_RESOURCE_ROUTE_NAME } from '@/router/constants';
import { useAppStore, useUserStore } from '@/store';
import useLicenseStore from '@/store/modules/setting/license';
@ -142,6 +146,8 @@
const appStore = useAppStore();
const licenseStore = useLicenseStore();
const { openModal } = useModal();
const orgOptions = ref<SelectOptionData[]>([]);
const props = defineProps<{
@ -270,7 +276,10 @@
return userStore.loginType.includes('OIDC');
});
const isShowOAUTH = computed(() => {
return userStore.loginType.includes('OAuth2');
return userStore.loginType.includes('OAUTH2');
});
const isShowCAS = computed(() => {
return userStore.loginType.includes('CAS');
});
const isShowQRCode = ref(true);
@ -294,6 +303,66 @@
}
}
function redirectAuth(authId: string) {
if (authId === 'LDAP' || authId === 'LOCAL') {
return;
}
getAuthDetail(authId).then((res) => {
if (!res) {
return;
}
if (!res.enable) {
Message.error(t('login.auth_not_enable'));
return;
}
// cas
if (userInfo.value.authenticate === 'CAS') {
const config = JSON.parse(res.configuration);
if (config.casServerUrl && !config.loginUrl) {
return;
}
}
openModal({
type: 'warning',
title: t('commons.auth_redirect_tip'),
content: t('ms.minders.leaveUnsavedTip'),
okText: t('common.confirm'),
cancelText: t('common.cancel'),
okButtonProps: {
status: 'normal',
},
onBeforeOk: async () => {
const config = JSON.parse(res.configuration);
// eslint-disable-next-line no-eval
const redirectUrl = eval(`\`${config.redirectUrl}\``);
let url;
if (userInfo.value.authenticate === 'CAS') {
url = `${config.loginUrl}?service=${encodeURIComponent(redirectUrl)}`;
}
if (userInfo.value.authenticate === 'OIDC') {
url = `${config.authUrl}?client_id=${config.clientId}&redirect_uri=${redirectUrl}&response_type=code&scope=openid+profile+email&state=${authId}`;
//
if (config.loginUrl) {
localStorage.setItem('oidcLoginUrl', config.loginUrl);
}
}
if (userInfo.value.authenticate === 'OAUTH2') {
url =
`${config.authUrl}?client_id=${config.clientId}&response_type=code` +
`&redirect_uri=${redirectUrl}&state=${authId}`;
if (config.scope) {
url += `&scope=${config.scope}`;
}
}
if (url) {
window.location.href = url;
}
},
hideCancel: false,
});
});
}
onMounted(() => {
userStore.getAuthentication();
initPlatformInfo();

View File

@ -984,8 +984,7 @@
const showDrawer = ref(false);
const drawerLoading = ref(false);
const authFormRef = ref<FormInstance>();
// const authTypeList = ['CAS', 'OIDC', 'OAuth2', 'LDAP'];
const authTypeList = ['LDAP'];
const authTypeList = ['CAS', 'OIDC', 'OAUTH2', 'LDAP'];
const defaultAuth = {
id: '',
enable: true,