chore: 增加登出地址长度的限制
--bug=1031705 --user=刘瑞斌 [系统设置] github#27040MeterSphere对接OIDC后无法正常忽略MeterSphere登录页面 https://www.tapd.cn/55049933/s/1426284
This commit is contained in:
parent
e477be9c1b
commit
147c7e4f8f
|
@ -23,11 +23,6 @@ if (window.location.pathname.startsWith('/' + packageJSON.name)) {
|
||||||
}
|
}
|
||||||
|
|
||||||
let urlParams = getUrlParams(window.location.href);
|
let urlParams = getUrlParams(window.location.href);
|
||||||
// OIDC 返回三方登录地址的话保存到本地,下次可以直接跳转
|
|
||||||
let oidcLoginUrl = urlParams['oidcLoginUrl']
|
|
||||||
if (oidcLoginUrl) {
|
|
||||||
localStorage.setItem('oidcLoginUrl', oidcLoginUrl);
|
|
||||||
}
|
|
||||||
|
|
||||||
const instance = axios.create({
|
const instance = axios.create({
|
||||||
baseURL, // url = base url + request url
|
baseURL, // url = base url + request url
|
||||||
|
|
|
@ -370,14 +370,19 @@ export function checkMicroMode() {
|
||||||
}
|
}
|
||||||
|
|
||||||
export function getUrlParams(url) {
|
export function getUrlParams(url) {
|
||||||
const arrSearch = url.split("?").pop().split("#").shift().split("&");
|
if (!url) url = window.location.href;
|
||||||
|
// 通过 ? 分割获取后面的参数字符串
|
||||||
|
let urlStr = url.split('?')[1]
|
||||||
|
// 创建空对象存储参数
|
||||||
let obj = {};
|
let obj = {};
|
||||||
arrSearch.forEach((item) => {
|
// 再通过 & 将每一个参数单独分割出来
|
||||||
const [k, v] = item.split("=");
|
let paramsArr = urlStr?.split('&')
|
||||||
obj[k] = v;
|
for(let i = 0,len = paramsArr?.length;i < len;i++){
|
||||||
return obj;
|
// 再通过 = 将每一个参数分割为 key:value 的形式
|
||||||
});
|
let arr = paramsArr[i].split('=')
|
||||||
return obj;
|
obj[arr[0]] = arr[1];
|
||||||
|
}
|
||||||
|
return obj
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
lombok.addLombokGeneratedAnnotation = true
|
||||||
|
lombok.equalsAndHashCode.callSuper=call
|
|
@ -182,13 +182,13 @@
|
||||||
<el-form-item prop="configuration.loginUrl">
|
<el-form-item prop="configuration.loginUrl">
|
||||||
<template v-slot:label>
|
<template v-slot:label>
|
||||||
Login Endpoint
|
Login Endpoint
|
||||||
<el-tooltip content="Login URL: https://cloud2.metersphere.com, 输入后将自动转到第三方登录页面"
|
<el-tooltip content="Login URL: https://cloud.metersphere.com, 输入后将自动转到第三方登录页面"
|
||||||
effect="light"
|
effect="light"
|
||||||
trigger="hover">
|
trigger="hover">
|
||||||
<i class="el-icon-info"></i>
|
<i class="el-icon-info"></i>
|
||||||
</el-tooltip>
|
</el-tooltip>
|
||||||
</template>
|
</template>
|
||||||
<el-input v-model="form.configuration.loginUrl" show-word-limit maxlength="200"/>
|
<el-input v-model="form.configuration.loginUrl" show-word-limit maxlength="1000"/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
|
|
Loading…
Reference in New Issue