mirror of
https://github.com/certd/certd.git
synced 2026-04-24 12:27:25 +08:00
perf: 支持oidc单点登录
This commit is contained in:
@@ -16,7 +16,7 @@ export class SysPublicSettings extends BaseSettings {
|
|||||||
static __access__ = 'public';
|
static __access__ = 'public';
|
||||||
|
|
||||||
registerEnabled = false;
|
registerEnabled = false;
|
||||||
userValidTimeEnabled?:boolean = false;
|
userValidTimeEnabled?: boolean = false;
|
||||||
passwordLoginEnabled = true;
|
passwordLoginEnabled = true;
|
||||||
usernameRegisterEnabled = true;
|
usernameRegisterEnabled = true;
|
||||||
mobileRegisterEnabled = false;
|
mobileRegisterEnabled = false;
|
||||||
@@ -36,7 +36,7 @@ export class SysPublicSettings extends BaseSettings {
|
|||||||
captchaEnabled = false;
|
captchaEnabled = false;
|
||||||
//验证码类型
|
//验证码类型
|
||||||
captchaType?: string;
|
captchaType?: string;
|
||||||
captchaAddonId?:number;
|
captchaAddonId?: number;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -49,6 +49,14 @@ export class SysPublicSettings extends BaseSettings {
|
|||||||
// 固定证书有效期天数,0表示不固定
|
// 固定证书有效期天数,0表示不固定
|
||||||
fixedCertExpireDays?: number;
|
fixedCertExpireDays?: number;
|
||||||
|
|
||||||
|
// 第三方OAuth配置
|
||||||
|
oauthEnabled?: boolean = false;
|
||||||
|
oauthProviders: Record<string, {
|
||||||
|
type: string;
|
||||||
|
title: string;
|
||||||
|
addonId: number;
|
||||||
|
}> = {};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export class SysPrivateSettings extends BaseSettings {
|
export class SysPrivateSettings extends BaseSettings {
|
||||||
@@ -69,9 +77,9 @@ export class SysPrivateSettings extends BaseSettings {
|
|||||||
type?: string;
|
type?: string;
|
||||||
config?: any;
|
config?: any;
|
||||||
} = {
|
} = {
|
||||||
type: 'aliyun',
|
type: 'aliyun',
|
||||||
config: {},
|
config: {},
|
||||||
};
|
};
|
||||||
|
|
||||||
removeSecret() {
|
removeSecret() {
|
||||||
const clone = cloneDeep(this);
|
const clone = cloneDeep(this);
|
||||||
@@ -196,7 +204,7 @@ export class SysSuiteSetting extends BaseSettings {
|
|||||||
static __key__ = 'sys.suite';
|
static __key__ = 'sys.suite';
|
||||||
static __access__ = 'private';
|
static __access__ = 'private';
|
||||||
|
|
||||||
enabled:boolean = false;
|
enabled: boolean = false;
|
||||||
|
|
||||||
registerGift?: {
|
registerGift?: {
|
||||||
productId: number;
|
productId: number;
|
||||||
@@ -221,22 +229,9 @@ export class SysSafeSetting extends BaseSettings {
|
|||||||
static __access__ = 'private';
|
static __access__ = 'private';
|
||||||
|
|
||||||
// 站点隐藏
|
// 站点隐藏
|
||||||
hidden:SiteHidden = {
|
hidden: SiteHidden = {
|
||||||
enabled: false,
|
enabled: false,
|
||||||
hiddenOpenApi:false,
|
hiddenOpenApi: false,
|
||||||
autoHiddenTimes: 5,
|
autoHiddenTimes: 5,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
export class SysOauthSetting extends BaseSettings {
|
|
||||||
static __title__ = 'OAuth设置';
|
|
||||||
static __key__ = 'sys.oauth';
|
|
||||||
static __access__ = 'private';
|
|
||||||
|
|
||||||
oauths: Record<string, {
|
|
||||||
type: string;
|
|
||||||
title: string;
|
|
||||||
addonId: number;
|
|
||||||
}> = {};
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -76,7 +76,7 @@ export class AddonService extends BaseService<AddonEntity> {
|
|||||||
|
|
||||||
|
|
||||||
getDefineList(addonType: string) {
|
getDefineList(addonType: string) {
|
||||||
return addonRegistry.getDefineList();
|
return addonRegistry.getDefineList(addonType);
|
||||||
}
|
}
|
||||||
|
|
||||||
getDefineByType(type: string, prefix?: string) {
|
getDefineByType(type: string, prefix?: string) {
|
||||||
|
|||||||
@@ -32,6 +32,14 @@ export const outsideResource = [
|
|||||||
path: "/forgotPassword",
|
path: "/forgotPassword",
|
||||||
component: "/framework/forgot-password/index.vue",
|
component: "/framework/forgot-password/index.vue",
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
meta: {
|
||||||
|
title: "第三方登录回调",
|
||||||
|
},
|
||||||
|
name: "oauthCallback",
|
||||||
|
path: "/oauth/callback/:type",
|
||||||
|
component: "/framework/oauth/oauth-callback.vue",
|
||||||
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
...errorPage,
|
...errorPage,
|
||||||
|
|||||||
@@ -59,6 +59,17 @@ export type SysPublicSetting = {
|
|||||||
|
|
||||||
// 固定证书有效期天数,0表示不固定
|
// 固定证书有效期天数,0表示不固定
|
||||||
fixedCertExpireDays?: number;
|
fixedCertExpireDays?: number;
|
||||||
|
|
||||||
|
// 第三方OAuth配置
|
||||||
|
oauthEnabled?: boolean;
|
||||||
|
oauthProviders?: Record<
|
||||||
|
string,
|
||||||
|
{
|
||||||
|
type: string;
|
||||||
|
title: string;
|
||||||
|
addonId: number;
|
||||||
|
}
|
||||||
|
>;
|
||||||
};
|
};
|
||||||
export type SuiteSetting = {
|
export type SuiteSetting = {
|
||||||
enabled?: boolean;
|
enabled?: boolean;
|
||||||
|
|||||||
@@ -82,6 +82,7 @@ function createCrudOptionsWithApi(opts: any) {
|
|||||||
opts.context = {
|
opts.context = {
|
||||||
api,
|
api,
|
||||||
addonType: props.addonType,
|
addonType: props.addonType,
|
||||||
|
type: props.type,
|
||||||
};
|
};
|
||||||
return createCrudOptions(opts);
|
return createCrudOptions(opts);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -110,7 +110,8 @@ export function getCommonColumnDefine(crudExpose: any, typeRef: any, api: any, a
|
|||||||
type: "dict-select",
|
type: "dict-select",
|
||||||
dict: addonTypeDictRef,
|
dict: addonTypeDictRef,
|
||||||
search: {
|
search: {
|
||||||
show: false,
|
show: true,
|
||||||
|
valueChange: null,
|
||||||
},
|
},
|
||||||
column: {
|
column: {
|
||||||
width: 200,
|
width: 200,
|
||||||
|
|||||||
@@ -5,7 +5,12 @@ import { AddReq, CreateCrudOptionsProps, CreateCrudOptionsRet, DelReq, EditReq,
|
|||||||
export default function ({ crudExpose, context }: CreateCrudOptionsProps): CreateCrudOptionsRet {
|
export default function ({ crudExpose, context }: CreateCrudOptionsProps): CreateCrudOptionsRet {
|
||||||
const api = context.api;
|
const api = context.api;
|
||||||
const addonType = context.addonType;
|
const addonType = context.addonType;
|
||||||
|
const type = context.type;
|
||||||
const pageRequest = async (query: UserPageQuery): Promise<UserPageRes> => {
|
const pageRequest = async (query: UserPageQuery): Promise<UserPageRes> => {
|
||||||
|
if (query.query?.body) {
|
||||||
|
delete query.query.body;
|
||||||
|
}
|
||||||
|
|
||||||
return await api.GetList(query);
|
return await api.GetList(query);
|
||||||
};
|
};
|
||||||
const editRequest = async (req: EditReq) => {
|
const editRequest = async (req: EditReq) => {
|
||||||
@@ -44,6 +49,12 @@ export default function ({ crudExpose, context }: CreateCrudOptionsProps): Creat
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
addForm: {
|
||||||
|
initialForm: {
|
||||||
|
addonType: addonType,
|
||||||
|
type: type,
|
||||||
|
},
|
||||||
|
},
|
||||||
rowHandle: {
|
rowHandle: {
|
||||||
width: 200,
|
width: 200,
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -51,7 +51,7 @@
|
|||||||
{{ t("authentication.loginButton") }}
|
{{ t("authentication.loginButton") }}
|
||||||
</a-button>
|
</a-button>
|
||||||
|
|
||||||
<div v-if="!!settingStore.sysPublic.selfServicePasswordRetrievalEnabled" class="mt-2">
|
<div v-if="!!settingStore.sysPublic.selfServicePasswordRetrievalEnabled && !queryBindCode" class="mt-2">
|
||||||
<router-link :to="{ name: 'forgotPassword' }">
|
<router-link :to="{ name: 'forgotPassword' }">
|
||||||
{{ t("authentication.forgotPassword") }}
|
{{ t("authentication.forgotPassword") }}
|
||||||
</router-link>
|
</router-link>
|
||||||
@@ -61,10 +61,14 @@
|
|||||||
<a-form-item class="user-login-other">
|
<a-form-item class="user-login-other">
|
||||||
<div class="flex flex-between justify-between items-center">
|
<div class="flex flex-between justify-between items-center">
|
||||||
<language-toggle class="color-blue"></language-toggle>
|
<language-toggle class="color-blue"></language-toggle>
|
||||||
<router-link v-if="hasRegisterTypeEnabled()" class="register" :to="{ name: 'register' }">
|
<router-link v-if="hasRegisterTypeEnabled() && !queryBindCode" class="register" :to="{ name: 'register' }">
|
||||||
{{ t("authentication.registerLink") }}
|
{{ t("authentication.registerLink") }}
|
||||||
</router-link>
|
</router-link>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="flex flex-between justify-between items-center mt-5">
|
||||||
|
<oauth-footer></oauth-footer>
|
||||||
|
</div>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-form>
|
</a-form>
|
||||||
<a-form v-else ref="twoFactorFormRef" class="user-layout-login" :model="twoFactor" v-bind="layout">
|
<a-form v-else ref="twoFactorFormRef" class="user-layout-login" :model="twoFactor" v-bind="layout">
|
||||||
@@ -96,12 +100,18 @@ import { useI18n } from "/@/locales";
|
|||||||
import { LanguageToggle } from "/@/vben/layouts";
|
import { LanguageToggle } from "/@/vben/layouts";
|
||||||
import CaptchaInput from "/@/components/captcha/captcha-input.vue";
|
import CaptchaInput from "/@/components/captcha/captcha-input.vue";
|
||||||
import { useRoute } from "vue-router";
|
import { useRoute } from "vue-router";
|
||||||
|
import OauthFooter from "/@/views/framework/oauth/oauth-footer.vue";
|
||||||
|
import * as oauthApi from "../oauth/api";
|
||||||
|
import { notification } from "ant-design-vue";
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
name: "LoginPage",
|
name: "LoginPage",
|
||||||
components: { LanguageToggle, SmsCode, CaptchaInput },
|
components: { LanguageToggle, SmsCode, CaptchaInput, OauthFooter },
|
||||||
setup() {
|
setup() {
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
const route = useRoute();
|
const route = useRoute();
|
||||||
|
|
||||||
|
const queryBindCode = ref(route.query.bindCode as string | undefined);
|
||||||
|
|
||||||
const urlLoginType = route.query.loginType as string | undefined;
|
const urlLoginType = route.query.loginType as string | undefined;
|
||||||
const verifyCodeInputRef = ref();
|
const verifyCodeInputRef = ref();
|
||||||
const loading = ref(false);
|
const loading = ref(false);
|
||||||
@@ -160,6 +170,13 @@ export default defineComponent({
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
async function afterLoginSuccess() {
|
||||||
|
if (queryBindCode.value) {
|
||||||
|
await oauthApi.BindUser(queryBindCode.value);
|
||||||
|
notification.success({ message: "绑定第三方账号成功" });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
const twoFactor = reactive({
|
const twoFactor = reactive({
|
||||||
loginId: "",
|
loginId: "",
|
||||||
verifyCode: "",
|
verifyCode: "",
|
||||||
@@ -167,6 +184,7 @@ export default defineComponent({
|
|||||||
|
|
||||||
const handleTwoFactorSubmit = async () => {
|
const handleTwoFactorSubmit = async () => {
|
||||||
await userStore.loginByTwoFactor(twoFactor);
|
await userStore.loginByTwoFactor(twoFactor);
|
||||||
|
afterLoginSuccess();
|
||||||
};
|
};
|
||||||
|
|
||||||
const handleFinish = async () => {
|
const handleFinish = async () => {
|
||||||
@@ -178,6 +196,7 @@ export default defineComponent({
|
|||||||
// }
|
// }
|
||||||
const loginType = formState.loginType;
|
const loginType = formState.loginType;
|
||||||
await userStore.login(loginType, toRaw(formState));
|
await userStore.login(loginType, toRaw(formState));
|
||||||
|
afterLoginSuccess();
|
||||||
} catch (e: any) {
|
} catch (e: any) {
|
||||||
//@ts-ignore
|
//@ts-ignore
|
||||||
if (e.code === 10020) {
|
if (e.code === 10020) {
|
||||||
@@ -233,6 +252,7 @@ export default defineComponent({
|
|||||||
settingStore,
|
settingStore,
|
||||||
captchaInputRef,
|
captchaInputRef,
|
||||||
captchaInputForSmsCode,
|
captchaInputForSmsCode,
|
||||||
|
queryBindCode,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -0,0 +1,45 @@
|
|||||||
|
import { request } from "/src/api/service";
|
||||||
|
|
||||||
|
const apiPrefix = "/oauth";
|
||||||
|
|
||||||
|
export async function OauthLogin(type: string) {
|
||||||
|
return await request({
|
||||||
|
url: apiPrefix + `/login`,
|
||||||
|
method: "post",
|
||||||
|
data: {
|
||||||
|
type,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function OauthCallback(type: string, query: Record<string, string>) {
|
||||||
|
return await request({
|
||||||
|
url: apiPrefix + `/callback`,
|
||||||
|
method: "post",
|
||||||
|
data: {
|
||||||
|
type,
|
||||||
|
...query,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function AutoRegister(type: string, code: string) {
|
||||||
|
return await request({
|
||||||
|
url: apiPrefix + `/autoRegister`,
|
||||||
|
method: "post",
|
||||||
|
data: {
|
||||||
|
validationCode: code,
|
||||||
|
type,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function BindUser(code: string) {
|
||||||
|
return await request({
|
||||||
|
url: apiPrefix + `/bind`,
|
||||||
|
method: "post",
|
||||||
|
data: {
|
||||||
|
validationCode: code,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
@@ -0,0 +1,105 @@
|
|||||||
|
<template>
|
||||||
|
<div class="oauth-callback-page">
|
||||||
|
<div class="oauth-callback-content">
|
||||||
|
<div v-if="!bindRequired" class="oauth-callback-title">
|
||||||
|
<span>登录中...</span>
|
||||||
|
</div>
|
||||||
|
<div v-else class="oauth-callback-title">
|
||||||
|
<div>第三方登录成功,还未绑定账号,请选择</div>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<a-button class="w-full mt-5" type="primary" @click="goBindUser">绑定已有账号</a-button>
|
||||||
|
<a-button class="w-full mt-5" type="primary" @click="autoRegister">创建新账号</a-button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="w-full mt-5">
|
||||||
|
<router-link to="/login" class="w-full mt-5" type="primary">返回登录页</router-link>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
import { ref, onMounted } from "vue";
|
||||||
|
import * as api from "./api";
|
||||||
|
import { useRoute, useRouter } from "vue-router";
|
||||||
|
import { useUserStore } from "/@/store/user";
|
||||||
|
|
||||||
|
const route = useRoute();
|
||||||
|
const router = useRouter();
|
||||||
|
const oauthType = route.params.type as string;
|
||||||
|
|
||||||
|
const query = route.query as Record<string, string>;
|
||||||
|
|
||||||
|
const userStore = useUserStore();
|
||||||
|
|
||||||
|
const bindRequired = ref(false);
|
||||||
|
const bindCode = ref("");
|
||||||
|
|
||||||
|
async function handleOauthCallback() {
|
||||||
|
//处理第三方登录回调
|
||||||
|
const res = await api.OauthCallback(oauthType, query);
|
||||||
|
if (res.token) {
|
||||||
|
//登录成功
|
||||||
|
userStore.onLoginSuccess(res);
|
||||||
|
//跳转到首页
|
||||||
|
router.replace("/");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (res.bindRequired) {
|
||||||
|
//需要绑定
|
||||||
|
bindRequired.value = true;
|
||||||
|
bindCode.value = res.validationCode;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
onMounted(async () => {
|
||||||
|
await handleOauthCallback();
|
||||||
|
});
|
||||||
|
|
||||||
|
async function goBindUser() {
|
||||||
|
//绑定已有账号
|
||||||
|
router.replace({
|
||||||
|
path: "/login",
|
||||||
|
query: {
|
||||||
|
bindCode: bindCode.value,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
async function autoRegister() {
|
||||||
|
//自动注册账号
|
||||||
|
const res = await api.AutoRegister(oauthType, bindCode.value);
|
||||||
|
//登录成功
|
||||||
|
userStore.onLoginSuccess(res);
|
||||||
|
//跳转到首页
|
||||||
|
router.replace("/");
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<style lang="less">
|
||||||
|
.oauth-callback-page {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
gap: 16px;
|
||||||
|
|
||||||
|
.oauth-callback-content {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
gap: 16px;
|
||||||
|
padding: 16px;
|
||||||
|
border-radius: 16px;
|
||||||
|
box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
|
||||||
|
width: 500px;
|
||||||
|
margin: 0 auto;
|
||||||
|
margin-top: 50px;
|
||||||
|
|
||||||
|
.oauth-callback-title {
|
||||||
|
font-size: 24px;
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -0,0 +1,45 @@
|
|||||||
|
<template>
|
||||||
|
<div class="oauth-footer">
|
||||||
|
<div v-for="item in oauthList" :key="item.type">
|
||||||
|
<div class="oauth-icon-button pointer" @click="goOauthLogin(item.type)">
|
||||||
|
<el-icon :icon="item.icon" />
|
||||||
|
<span>{{ item.name }}</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<script setup lang="ts">
|
||||||
|
import { ref } from "vue";
|
||||||
|
import * as api from "./api";
|
||||||
|
|
||||||
|
const oauthList = ref([
|
||||||
|
{
|
||||||
|
name: "OIDC",
|
||||||
|
type: "oidc",
|
||||||
|
icon: "ion:oidc",
|
||||||
|
},
|
||||||
|
]);
|
||||||
|
|
||||||
|
async function goOauthLogin(type: string) {
|
||||||
|
//获取第三方登录URL
|
||||||
|
const res = await api.OauthLogin(type);
|
||||||
|
const loginUrl = res.loginUrl;
|
||||||
|
window.location.href = loginUrl;
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<style lang="less">
|
||||||
|
.oauth-footer {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
gap: 16px;
|
||||||
|
.oauth-icon-button {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
gap: 8px;
|
||||||
|
padding: 8px 16px;
|
||||||
|
border-radius: 100px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -111,3 +111,10 @@ export async function GetSmsTypeDefine(type: string) {
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export async function GetOauthProviders() {
|
||||||
|
return await request({
|
||||||
|
url: apiPrefix + "/oauth/providers",
|
||||||
|
method: "post",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|||||||
@@ -54,6 +54,33 @@
|
|||||||
<div class="helper">{{ t("certd.saveThenTest") }}</div>
|
<div class="helper">{{ t("certd.saveThenTest") }}</div>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</template>
|
</template>
|
||||||
|
<a-form-item :label="t('certd.enableOauth')" :name="['public', 'oauthEnabled']">
|
||||||
|
<div class="flex-o">
|
||||||
|
<a-switch v-model:checked="formState.public.oauthEnabled" :disabled="!settingsStore.isPlus" :title="t('certd.plusFeature')" />
|
||||||
|
<vip-button class="ml-5" mode="plus"></vip-button>
|
||||||
|
</div>
|
||||||
|
</a-form-item>
|
||||||
|
<a-form-item v-if="formState.public.oauthEnabled" :label="t('certd.oauthProviders')" :name="['public', 'oauthProviders']">
|
||||||
|
<div class="flex flex-wrap">
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<th>{{ t("certd.oauthType") }}</th>
|
||||||
|
<th>{{ t("certd.oauthConfig") }}</th>
|
||||||
|
</tr>
|
||||||
|
<tr v-for="(item, key) of oauthProviders" :key="key">
|
||||||
|
<td>
|
||||||
|
<div class="flex items-center">
|
||||||
|
<fs-icon :icon="item.icon" />
|
||||||
|
{{ item.title }}
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<AddonSelector v-model:model-value="item.addonId" addon-type="oauth" from="sys" :type="item.name" :placeholder="t('certd.clientIdPlaceholder')" />
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</a-form-item>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<a-form-item label=" " :colon="false" :wrapper-col="{ span: 16 }">
|
<a-form-item label=" " :colon="false" :wrapper-col="{ span: 16 }">
|
||||||
@@ -64,14 +91,14 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="tsx">
|
<script setup lang="tsx">
|
||||||
import { reactive, ref, Ref } from "vue";
|
import { computed, reactive, ref, Ref } from "vue";
|
||||||
import { GetSmsTypeDefine, SysSettings } from "/@/views/sys/settings/api";
|
import { GetSmsTypeDefine, SysSettings } from "/@/views/sys/settings/api";
|
||||||
import * as api from "/@/views/sys/settings/api";
|
import * as api from "/@/views/sys/settings/api";
|
||||||
import { merge } from "lodash-es";
|
import { merge } from "lodash-es";
|
||||||
import { useSettingStore } from "/@/store/settings";
|
import { useSettingStore } from "/@/store/settings";
|
||||||
import { notification } from "ant-design-vue";
|
import { notification } from "ant-design-vue";
|
||||||
import { useI18n } from "/src/locales";
|
import { useI18n } from "/src/locales";
|
||||||
|
import AddonSelector from "../../../certd/addon/addon-selector/index.vue";
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
|
|
||||||
defineOptions({
|
defineOptions({
|
||||||
@@ -158,6 +185,35 @@ async function loadTypeDefine(type: string) {
|
|||||||
smsTypeDefineInputs.value = inputs;
|
smsTypeDefineInputs.value = inputs;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const oauthProviders = ref([]);
|
||||||
|
async function loadOauthProviders() {
|
||||||
|
let list: any = await api.GetOauthProviders();
|
||||||
|
oauthProviders.value = list;
|
||||||
|
for (const item of list) {
|
||||||
|
debugger;
|
||||||
|
const type = item.name;
|
||||||
|
const provider = formState.public.oauthProviders?.[type];
|
||||||
|
if (provider) {
|
||||||
|
item.addonId = provider.addonId;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function fillOauthProviders(form: any) {
|
||||||
|
const providers: any = {};
|
||||||
|
for (const item of oauthProviders.value) {
|
||||||
|
const type = item.name;
|
||||||
|
providers[type] = {
|
||||||
|
type: type,
|
||||||
|
title: item.title,
|
||||||
|
icon: item.icon,
|
||||||
|
addonId: item.addonId || null,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
form.public.oauthProviders = providers;
|
||||||
|
return providers;
|
||||||
|
}
|
||||||
|
|
||||||
async function loadSysSettings() {
|
async function loadSysSettings() {
|
||||||
const data: any = await api.SysSettingsGet();
|
const data: any = await api.SysSettingsGet();
|
||||||
merge(formState, data);
|
merge(formState, data);
|
||||||
@@ -172,6 +228,7 @@ async function loadSysSettings() {
|
|||||||
if (!settingsStore.isComm) {
|
if (!settingsStore.isComm) {
|
||||||
formState.public.smsLoginEnabled = false;
|
formState.public.smsLoginEnabled = false;
|
||||||
}
|
}
|
||||||
|
await loadOauthProviders();
|
||||||
}
|
}
|
||||||
|
|
||||||
const saveLoading = ref(false);
|
const saveLoading = ref(false);
|
||||||
@@ -180,6 +237,7 @@ const settingsStore = useSettingStore();
|
|||||||
const onFinish = async (form: any) => {
|
const onFinish = async (form: any) => {
|
||||||
try {
|
try {
|
||||||
saveLoading.value = true;
|
saveLoading.value = true;
|
||||||
|
fillOauthProviders(form);
|
||||||
await api.SysSettingsSave(form);
|
await api.SysSettingsSave(form);
|
||||||
await settingsStore.loadSysSettings();
|
await settingsStore.loadSysSettings();
|
||||||
notification.success({
|
notification.success({
|
||||||
|
|||||||
@@ -0,0 +1,14 @@
|
|||||||
|
|
||||||
|
CREATE TABLE "cd_oauth_bound"
|
||||||
|
(
|
||||||
|
"id" integer PRIMARY KEY AUTOINCREMENT NOT NULL,
|
||||||
|
"user_id" integer NOT NULL,
|
||||||
|
"type" varchar(512) NOT NULL,
|
||||||
|
"open_id" varchar(512) NOT NULL,
|
||||||
|
"create_time" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP),
|
||||||
|
"update_time" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP)
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
CREATE INDEX "index_oauth_bound_user_id" ON "cd_oauth_bound" ("user_id");
|
||||||
|
CREATE INDEX "index_oauth_bound_open_id" ON "cd_oauth_bound" ("open_id");
|
||||||
@@ -0,0 +1,153 @@
|
|||||||
|
import { addonRegistry, BaseController, Constants, SysInstallInfo, SysSettingsService } from "@certd/lib-server";
|
||||||
|
import { ALL, Body, Controller, Inject, Post, Provide } from "@midwayjs/core";
|
||||||
|
import { AddonGetterService } from "../../../modules/pipeline/service/addon-getter-service.js";
|
||||||
|
import { IOauthProvider } from "../../../plugins/plugin-oauth/api.js";
|
||||||
|
import { LoginService } from "../../../modules/login/service/login-service.js";
|
||||||
|
import { CodeService } from "../../../modules/basic/service/code-service.js";
|
||||||
|
import { UserService } from "../../../modules/sys/authority/service/user-service.js";
|
||||||
|
import { UserEntity } from "../../../modules/sys/authority/entity/user.js";
|
||||||
|
import { simpleNanoId } from "@certd/basic";
|
||||||
|
import { OauthBoundService } from "../../../modules/login/service/oauth-bound-service.js";
|
||||||
|
import { OauthBoundEntity } from "../../../modules/login/entity/oauth-bound.js";
|
||||||
|
|
||||||
|
/**
|
||||||
|
*/
|
||||||
|
@Provide()
|
||||||
|
@Controller('/api/oauth')
|
||||||
|
export class ConnectController extends BaseController {
|
||||||
|
|
||||||
|
@Inject()
|
||||||
|
addonGetterService: AddonGetterService;
|
||||||
|
@Inject()
|
||||||
|
sysSettingsService: SysSettingsService;
|
||||||
|
@Inject()
|
||||||
|
loginService: LoginService;
|
||||||
|
@Inject()
|
||||||
|
codeService: CodeService;
|
||||||
|
@Inject()
|
||||||
|
userService: UserService;
|
||||||
|
|
||||||
|
@Inject()
|
||||||
|
oauthBoundService: OauthBoundService;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
private async getOauthProvider(type: string) {
|
||||||
|
const publicSettings = await this.sysSettingsService.getPublicSettings()
|
||||||
|
if (!publicSettings?.oauthEnabled) {
|
||||||
|
throw new Error("OAuth功能未启用");
|
||||||
|
}
|
||||||
|
const setting = publicSettings?.oauthProviders?.[type || ""]
|
||||||
|
if (!setting) {
|
||||||
|
throw new Error(`未配置该OAuth类型:${type}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
const addon = await this.addonGetterService.getAddonById(setting.addonId, true, 0);
|
||||||
|
if (!addon) {
|
||||||
|
throw new Error("初始化OAuth插件失败");
|
||||||
|
}
|
||||||
|
return addon as IOauthProvider;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Post('/login', { summary: Constants.per.guest })
|
||||||
|
public async login(@Body(ALL) body: { type: string }) {
|
||||||
|
|
||||||
|
const addon = await this.getOauthProvider(body.type);
|
||||||
|
const installInfo = await this.sysSettingsService.getSetting<SysInstallInfo>(SysInstallInfo);
|
||||||
|
const bindUrl = installInfo?.bindUrl || "";
|
||||||
|
//构造登录url
|
||||||
|
const redirectUrl = `${bindUrl}#/oauth/callback/${body.type}`;
|
||||||
|
const loginUrl = await addon.buildLoginUrl({ redirectUri: redirectUrl });
|
||||||
|
return this.ok({loginUrl});
|
||||||
|
}
|
||||||
|
@Post('/callback', { summary: Constants.per.guest })
|
||||||
|
public async callback(@Body(ALL) body: any) {
|
||||||
|
//处理登录回调
|
||||||
|
const addon = await this.getOauthProvider(body.type);
|
||||||
|
const tokenRes = await addon.onCallback({
|
||||||
|
code: body.code,
|
||||||
|
state: body.state,
|
||||||
|
});
|
||||||
|
|
||||||
|
const userInfo = tokenRes.userInfo;
|
||||||
|
|
||||||
|
const openId = userInfo.openId;
|
||||||
|
|
||||||
|
const loginRes = await this.loginService.loginByOpenId({ openId, type: body.type });
|
||||||
|
if (loginRes == null) {
|
||||||
|
// 用户还未绑定,让用户选择绑定已有账号还是自动注册新账号
|
||||||
|
const validationCode = await this.codeService.setValidationValue({
|
||||||
|
type: body.type,
|
||||||
|
userInfo,
|
||||||
|
});
|
||||||
|
return this.ok({
|
||||||
|
bindRequired: true,
|
||||||
|
validationCode,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
//返回登录成功token
|
||||||
|
return this.ok(loginRes);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Post('/bind', { summary: Constants.per.loginOnly })
|
||||||
|
public async bind(@Body(ALL) body: any) {
|
||||||
|
//需要已登录
|
||||||
|
const userId = this.getUserId();
|
||||||
|
const validationValue = this.codeService.getValidationValue(body.validationCode);
|
||||||
|
if (!validationValue) {
|
||||||
|
throw new Error("校验码错误");
|
||||||
|
}
|
||||||
|
|
||||||
|
await this.oauthBoundService.bind({
|
||||||
|
userId,
|
||||||
|
type: body.type,
|
||||||
|
openId: validationValue.openId,
|
||||||
|
});
|
||||||
|
return this.ok(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Post('/autoRegister', { summary: Constants.per.guest })
|
||||||
|
public async autoRegister(@Body(ALL) body: { validationCode: string, type: string }) {
|
||||||
|
|
||||||
|
const validationValue = this.codeService.getValidationValue(body.validationCode);
|
||||||
|
if (!validationValue) {
|
||||||
|
throw new Error("第三方认证授权已过期");
|
||||||
|
}
|
||||||
|
const userInfo = validationValue.userInfo;
|
||||||
|
const oauthType = validationValue.type;
|
||||||
|
let newUser = new UserEntity()
|
||||||
|
newUser.username = `${oauthType}:_${userInfo.nickName}_${simpleNanoId(6)}`;
|
||||||
|
newUser.avatar = userInfo.avatar;
|
||||||
|
newUser.nickName = userInfo.nickName;
|
||||||
|
|
||||||
|
newUser = await this.userService.register("username", newUser, async (txManager) => {
|
||||||
|
const oauthBound : OauthBoundEntity = new OauthBoundEntity()
|
||||||
|
oauthBound.userId = newUser.id;
|
||||||
|
oauthBound.type = oauthType;
|
||||||
|
oauthBound.openId = userInfo.openId;
|
||||||
|
await txManager.save(oauthBound);
|
||||||
|
});
|
||||||
|
|
||||||
|
const loginRes = await this.loginService.generateToken(newUser);
|
||||||
|
return this.ok(loginRes);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Post('/unbind', { summary: Constants.per.loginOnly })
|
||||||
|
public async unbind(@Body(ALL) body: any) {
|
||||||
|
//需要已登录
|
||||||
|
const userId = this.getUserId();
|
||||||
|
await this.oauthBoundService.unbind({
|
||||||
|
userId,
|
||||||
|
type: body.type,
|
||||||
|
});
|
||||||
|
return this.ok(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Post('/providers', { summary: Constants.per.guest })
|
||||||
|
public async providers() {
|
||||||
|
const list = addonRegistry.getDefineList("oauth");
|
||||||
|
return this.ok(list);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -1,67 +0,0 @@
|
|||||||
import { BaseController, Constants, SysInstallInfo, SysOauthSetting, SysSettingsService } from "@certd/lib-server";
|
|
||||||
import { ALL, Body, Controller, Inject, Post, Provide } from "@midwayjs/core";
|
|
||||||
import { AddonGetterService } from "../../../modules/pipeline/service/addon-getter-service.js";
|
|
||||||
import { IOauthProvider } from "../../../plugins/plugin-oauth/api.js";
|
|
||||||
|
|
||||||
/**
|
|
||||||
*/
|
|
||||||
@Provide()
|
|
||||||
@Controller('/api/connect')
|
|
||||||
export class ConnectController extends BaseController {
|
|
||||||
|
|
||||||
@Inject()
|
|
||||||
addonGetterService: AddonGetterService;
|
|
||||||
@Inject()
|
|
||||||
sysSettingsService: SysSettingsService;
|
|
||||||
|
|
||||||
private async getOauthProvider(type:string){
|
|
||||||
const oauthSetting = await this.sysSettingsService.getSetting<SysOauthSetting>(SysOauthSetting);
|
|
||||||
const setting = oauthSetting?.oauths?.[type||""]
|
|
||||||
if (!setting) {
|
|
||||||
throw new Error(`未配置该OAuth类型:${type}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
const addon = await this.addonGetterService.getAddonById(setting.addonId, true, 0);
|
|
||||||
if(!addon) {
|
|
||||||
throw new Error("初始化OAuth插件失败");
|
|
||||||
}
|
|
||||||
return addon as IOauthProvider;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Post('/login', { summary: Constants.per.guest })
|
|
||||||
public async login(@Body(ALL) body: {type:string}) {
|
|
||||||
|
|
||||||
const addon = await this.getOauthProvider(body.type);
|
|
||||||
const installInfo = await this.sysSettingsService.getSetting<SysInstallInfo>(SysInstallInfo);
|
|
||||||
const bindUrl = installInfo?.bindUrl || "";
|
|
||||||
//构造登录url
|
|
||||||
const redirectUrl = `${bindUrl}#/auth/callback/${body.type}`;
|
|
||||||
const loginUrl = await addon.buildLoginUrl({ redirectUri: redirectUrl});
|
|
||||||
return this.ok(loginUrl);
|
|
||||||
}
|
|
||||||
@Post('/callback', { summary: Constants.per.guest })
|
|
||||||
public async callback(@Body(ALL) body: any) {
|
|
||||||
//处理登录回调
|
|
||||||
const addon = await this.getOauthProvider(body.type);
|
|
||||||
const tokenRes = await addon.onCallback({
|
|
||||||
code: body.code,
|
|
||||||
redirectUri: body.redirectUri,
|
|
||||||
state: body.state,
|
|
||||||
});
|
|
||||||
|
|
||||||
const userInfo = tokenRes.userInfo;
|
|
||||||
|
|
||||||
const openId = userInfo.openId;
|
|
||||||
|
|
||||||
return this.ok(openId);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Post('/bind', { summary: Constants.per.guest })
|
|
||||||
public async bind(@Body(ALL) body: any) {
|
|
||||||
// const autoRegister = body.autoRegister || false;
|
|
||||||
// const bindInfo = body.bind || {};
|
|
||||||
//处理登录回调
|
|
||||||
return this.ok(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,5 +1,6 @@
|
|||||||
import { ALL, Body, Controller, Inject, Post, Provide, Query } from "@midwayjs/core";
|
import { ALL, Body, Controller, Inject, Post, Provide, Query } from "@midwayjs/core";
|
||||||
import {
|
import {
|
||||||
|
addonRegistry,
|
||||||
CrudController,
|
CrudController,
|
||||||
SysPrivateSettings,
|
SysPrivateSettings,
|
||||||
SysPublicSettings,
|
SysPublicSettings,
|
||||||
@@ -199,4 +200,10 @@ export class SysSettingsController extends CrudController<SysSettingsService> {
|
|||||||
await this.codeService.checkCaptcha(body)
|
await this.codeService.checkCaptcha(body)
|
||||||
return this.ok({});
|
return this.ok({});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Post('/oauth/providers', { summary: 'sys:settings:view' })
|
||||||
|
async oauthProviders() {
|
||||||
|
const list = await addonRegistry.getDefineList("oauth");
|
||||||
|
return this.ok(list);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import { Inject, Provide, Scope, ScopeEnum } from '@midwayjs/core';
|
import { Inject, Provide, Scope, ScopeEnum } from '@midwayjs/core';
|
||||||
import { cache, isDev, randomNumber } from '@certd/basic';
|
import { cache, isDev, randomNumber, simpleNanoId } from '@certd/basic';
|
||||||
import { SysSettingsService, SysSiteInfo } from '@certd/lib-server';
|
import { SysSettingsService, SysSiteInfo } from '@certd/lib-server';
|
||||||
import { SmsServiceFactory } from '../sms/factory.js';
|
import { SmsServiceFactory } from '../sms/factory.js';
|
||||||
import { ISmsService } from '../sms/api.js';
|
import { ISmsService } from '../sms/api.js';
|
||||||
@@ -188,4 +188,20 @@ export class CodeService {
|
|||||||
`
|
`
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
buildValidationValueKey(code:string) {
|
||||||
|
return `validationValue:${code}`;
|
||||||
|
}
|
||||||
|
setValidationValue(value:any) {
|
||||||
|
const randomCode = simpleNanoId(12);
|
||||||
|
const key = this.buildValidationValueKey(randomCode);
|
||||||
|
cache.set(key, value, {
|
||||||
|
ttl: 5 * 60 * 1000, //5分钟
|
||||||
|
});
|
||||||
|
return randomCode;
|
||||||
|
}
|
||||||
|
getValidationValue(code:string) {
|
||||||
|
return cache.get(this.buildValidationValueKey(code));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+2
-2
@@ -1,7 +1,7 @@
|
|||||||
import { Column, Entity, PrimaryGeneratedColumn } from 'typeorm';
|
import { Column, Entity, PrimaryGeneratedColumn } from 'typeorm';
|
||||||
|
|
||||||
@Entity('cd_oauth_bind')
|
@Entity('cd_oauth_bound')
|
||||||
export class OauthBindEntity {
|
export class OauthBoundEntity {
|
||||||
@PrimaryGeneratedColumn()
|
@PrimaryGeneratedColumn()
|
||||||
id: number;
|
id: number;
|
||||||
|
|
||||||
@@ -17,9 +17,9 @@ import { TwoFactorService } from "../../mine/service/two-factor-service.js";
|
|||||||
import { UserSettingsService } from "../../mine/service/user-settings-service.js";
|
import { UserSettingsService } from "../../mine/service/user-settings-service.js";
|
||||||
import { isPlus } from "@certd/plus-core";
|
import { isPlus } from "@certd/plus-core";
|
||||||
import { AddonService } from "@certd/lib-server";
|
import { AddonService } from "@certd/lib-server";
|
||||||
|
import { OauthBoundService } from "./oauth-bound-service.js";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 系统用户
|
|
||||||
*/
|
*/
|
||||||
@Provide()
|
@Provide()
|
||||||
@Scope(ScopeEnum.Request, {allowDowngrade: true})
|
@Scope(ScopeEnum.Request, {allowDowngrade: true})
|
||||||
@@ -42,6 +42,8 @@ export class LoginService {
|
|||||||
twoFactorService: TwoFactorService;
|
twoFactorService: TwoFactorService;
|
||||||
@Inject()
|
@Inject()
|
||||||
addonService: AddonService;
|
addonService: AddonService;
|
||||||
|
@Inject()
|
||||||
|
oauthBoundService: OauthBoundService;
|
||||||
|
|
||||||
checkIsBlocked(username: string) {
|
checkIsBlocked(username: string) {
|
||||||
const blockDurationKey = `login_block_duration:${username}`;
|
const blockDurationKey = `login_block_duration:${username}`;
|
||||||
@@ -204,6 +206,10 @@ export class LoginService {
|
|||||||
* @param roleIds
|
* @param roleIds
|
||||||
*/
|
*/
|
||||||
async generateToken(user: UserEntity) {
|
async generateToken(user: UserEntity) {
|
||||||
|
if (user.status === 0) {
|
||||||
|
throw new CommonException('用户已被禁用');
|
||||||
|
}
|
||||||
|
|
||||||
const roleIds = await this.roleService.getRoleIdsByUserId(user.id);
|
const roleIds = await this.roleService.getRoleIdsByUserId(user.id);
|
||||||
const tokenInfo = {
|
const tokenInfo = {
|
||||||
username: user.username,
|
username: user.username,
|
||||||
@@ -224,4 +230,20 @@ export class LoginService {
|
|||||||
expire,
|
expire,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
async loginByOpenId(req: { openId: string, type:string }) {
|
||||||
|
const {openId, type} = req;
|
||||||
|
const oauthBound = await this.oauthBoundService.findOne({
|
||||||
|
where:{openId, type}
|
||||||
|
});
|
||||||
|
if (oauthBound == null) {
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
const info = await this.userService.findOne({id: oauthBound.userId});
|
||||||
|
if (info == null) {
|
||||||
|
throw new CommonException('用户不存在');
|
||||||
|
}
|
||||||
|
return this.generateToken(info);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,74 @@
|
|||||||
|
import { BaseService, SysSettingsService } from "@certd/lib-server";
|
||||||
|
import { Inject, Provide, Scope, ScopeEnum } from "@midwayjs/core";
|
||||||
|
import { InjectEntityModel } from "@midwayjs/typeorm";
|
||||||
|
import { Repository } from "typeorm";
|
||||||
|
import { OauthBoundEntity } from "../entity/oauth-bound.js";
|
||||||
|
|
||||||
|
|
||||||
|
@Provide()
|
||||||
|
@Scope(ScopeEnum.Request, { allowDowngrade: true })
|
||||||
|
export class OauthBoundService extends BaseService<OauthBoundEntity> {
|
||||||
|
|
||||||
|
@InjectEntityModel(OauthBoundEntity)
|
||||||
|
repository: Repository<OauthBoundEntity>;
|
||||||
|
|
||||||
|
@Inject()
|
||||||
|
sysSettingsService: SysSettingsService;
|
||||||
|
|
||||||
|
|
||||||
|
//@ts-ignore
|
||||||
|
getRepository() {
|
||||||
|
return this.repository;
|
||||||
|
}
|
||||||
|
|
||||||
|
async unbind(req: { userId: any; type: any; }) {
|
||||||
|
const { userId, type } = req;
|
||||||
|
if (!userId || !type) {
|
||||||
|
throw new Error('参数错误');
|
||||||
|
}
|
||||||
|
|
||||||
|
await this.repository.delete({
|
||||||
|
userId,
|
||||||
|
type,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
async bind(req: { userId: any; type: any; openId: any; }) {
|
||||||
|
const { userId, type, openId } = req;
|
||||||
|
if (!userId || !type || !openId) {
|
||||||
|
throw new Error('参数错误');
|
||||||
|
}
|
||||||
|
const exist = await this.repository.findOne({
|
||||||
|
where: {
|
||||||
|
openId,
|
||||||
|
type,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
if (exist) {
|
||||||
|
throw new Error('该第三方账号已绑定用户');
|
||||||
|
}
|
||||||
|
|
||||||
|
const exist2 = await this.repository.findOne({
|
||||||
|
where: {
|
||||||
|
userId,
|
||||||
|
type,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
if (exist2) {
|
||||||
|
//覆盖绑定
|
||||||
|
exist2.openId = openId;
|
||||||
|
await this.update({
|
||||||
|
id: exist2.id,
|
||||||
|
openId,
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
//新增
|
||||||
|
await this.add({
|
||||||
|
userId,
|
||||||
|
type,
|
||||||
|
openId,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
import { Inject, Provide, Scope, ScopeEnum } from '@midwayjs/core';
|
import { Inject, Provide, Scope, ScopeEnum } from '@midwayjs/core';
|
||||||
import { InjectEntityModel } from '@midwayjs/typeorm';
|
import { InjectEntityModel } from '@midwayjs/typeorm';
|
||||||
import {In, MoreThan, Not, Repository} from 'typeorm';
|
import {EntityManager, In, MoreThan, Not, Repository} from 'typeorm';
|
||||||
import { UserEntity } from '../entity/user.js';
|
import { UserEntity } from '../entity/user.js';
|
||||||
import * as _ from 'lodash-es';
|
import * as _ from 'lodash-es';
|
||||||
import { BaseService, CommonException, Constants, FileService, SysInstallInfo, SysSettingsService } from '@certd/lib-server';
|
import { BaseService, CommonException, Constants, FileService, SysInstallInfo, SysSettingsService } from '@certd/lib-server';
|
||||||
@@ -171,7 +171,7 @@ export class UserService extends BaseService<UserEntity> {
|
|||||||
return await this.roleService.getPermissionByRoleIds(roleIds);
|
return await this.roleService.getPermissionByRoleIds(roleIds);
|
||||||
}
|
}
|
||||||
|
|
||||||
async register(type: string, user: UserEntity) {
|
async register(type: string, user: UserEntity,withTx?:(tx: EntityManager)=>Promise<void>) {
|
||||||
if (!user.password) {
|
if (!user.password) {
|
||||||
user.password = simpleNanoId();
|
user.password = simpleNanoId();
|
||||||
}
|
}
|
||||||
@@ -227,6 +227,10 @@ export class UserService extends BaseService<UserEntity> {
|
|||||||
newUser = await txManager.save(newUser);
|
newUser = await txManager.save(newUser);
|
||||||
const userRole: UserRoleEntity = UserRoleEntity.of(newUser.id, Constants.role.defaultUser);
|
const userRole: UserRoleEntity = UserRoleEntity.of(newUser.id, Constants.role.defaultUser);
|
||||||
await txManager.save(userRole);
|
await txManager.save(userRole);
|
||||||
|
|
||||||
|
if(withTx) {
|
||||||
|
await withTx(txManager);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
delete newUser.password;
|
delete newUser.password;
|
||||||
|
|||||||
@@ -38,3 +38,4 @@ export * from './plugin-godaddy/index.js'
|
|||||||
export * from './plugin-captcha/index.js'
|
export * from './plugin-captcha/index.js'
|
||||||
export * from './plugin-xinnet/index.js'
|
export * from './plugin-xinnet/index.js'
|
||||||
export * from './plugin-xinnetconnet/index.js'
|
export * from './plugin-xinnetconnet/index.js'
|
||||||
|
export * from './plugin-oauth/index.js'
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
export type OnCallbackReq = {
|
export type OnCallbackReq = {
|
||||||
code: string;
|
code: string;
|
||||||
redirectUri: string;
|
|
||||||
state: string;
|
state: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -58,7 +58,7 @@ export class OidcOauthProvider extends BaseAddon implements IOauthProvider {
|
|||||||
async onCallback(req: OnCallbackReq) {
|
async onCallback(req: OnCallbackReq) {
|
||||||
const { config, client } = await this.getClient()
|
const { config, client } = await this.getClient()
|
||||||
|
|
||||||
const currentUrl = new URL(req.redirectUri)
|
const currentUrl = new URL("")
|
||||||
let tokens: any = await client.authorizationCodeGrant(
|
let tokens: any = await client.authorizationCodeGrant(
|
||||||
config,
|
config,
|
||||||
currentUrl,
|
currentUrl,
|
||||||
|
|||||||
Reference in New Issue
Block a user