mirror of
https://github.com/certd/certd.git
synced 2026-04-14 12:30:54 +08:00
142 lines
2.8 KiB
TypeScript
142 lines
2.8 KiB
TypeScript
import { request } from "/src/api/service";
|
||
|
||
export type SiteEnv = {
|
||
agent?: {
|
||
enabled?: boolean;
|
||
contactText?: string;
|
||
contactLink?: string;
|
||
};
|
||
};
|
||
export type AppInfo = {
|
||
version?: string;
|
||
time?: number;
|
||
deltaTime?: number;
|
||
};
|
||
export type SiteInfo = {
|
||
title?: string;
|
||
slogan?: string;
|
||
logo?: string;
|
||
loginLogo?: string;
|
||
icpNo?: string;
|
||
licenseTo?: string;
|
||
licenseToUrl?: string;
|
||
};
|
||
|
||
export type PlusInfo = {
|
||
vipType?: string;
|
||
expireTime?: number;
|
||
isPlus: boolean;
|
||
isComm?: boolean;
|
||
};
|
||
export type SysPublicSetting = {
|
||
registerEnabled?: boolean;
|
||
userValidTimeEnabled?: boolean;
|
||
usernameRegisterEnabled?: boolean;
|
||
mobileRegisterEnabled?: boolean;
|
||
emailRegisterEnabled?: boolean;
|
||
passwordLoginEnabled?: boolean;
|
||
smsLoginEnabled?: boolean;
|
||
selfServicePasswordRetrievalEnabled?: boolean;
|
||
|
||
limitUserPipelineCount?: number;
|
||
managerOtherUserPipeline?: boolean;
|
||
icpNo?: string;
|
||
mpsNo?: string;
|
||
robots?: boolean;
|
||
aiChatEnabled?: boolean;
|
||
|
||
showRunStrategy?: boolean;
|
||
|
||
captchaEnabled?: boolean;
|
||
captchaType?: number;
|
||
captchaAddonId?: number;
|
||
|
||
//流水线是否启用有效期
|
||
pipelineValidTimeEnabled?: boolean;
|
||
|
||
//证书域名添加到监控
|
||
certDomainAddToMonitorEnabled?: boolean;
|
||
|
||
// 固定证书有效期天数,0表示不固定
|
||
fixedCertExpireDays?: number;
|
||
};
|
||
export type SuiteSetting = {
|
||
enabled?: boolean;
|
||
};
|
||
export type SysPrivateSetting = {
|
||
httpProxy?: string;
|
||
httpsProxy?: string;
|
||
dnsResultOrder?: string;
|
||
commonCnameEnabled?: boolean;
|
||
sms?: {
|
||
type?: string;
|
||
config?: any;
|
||
};
|
||
|
||
//http请求超时时间
|
||
httpRequestTimeout?: number;
|
||
};
|
||
export type SysInstallInfo = {
|
||
siteId: string;
|
||
};
|
||
export type MenuItem = {
|
||
id: string;
|
||
title: string;
|
||
icon?: string;
|
||
path?: string;
|
||
children?: MenuItem[];
|
||
};
|
||
export type HeaderMenus = {
|
||
menus: MenuItem[];
|
||
};
|
||
|
||
export type AllSettings = {
|
||
sysPublic: SysPublicSetting;
|
||
installInfo: SysInstallInfo;
|
||
plusInfo: PlusInfo;
|
||
siteInfo: SiteInfo;
|
||
siteEnv: SiteEnv;
|
||
headerMenus: HeaderMenus;
|
||
suiteSetting: SuiteSetting;
|
||
app: AppInfo;
|
||
};
|
||
|
||
export async function loadAllSettings(): Promise<AllSettings> {
|
||
return await request({
|
||
url: "/basic/settings/all",
|
||
method: "get",
|
||
});
|
||
}
|
||
|
||
export async function bindUrl(data: any): Promise<any> {
|
||
return await request({
|
||
url: "/sys/plus/bindUrl",
|
||
method: "post",
|
||
data,
|
||
});
|
||
}
|
||
|
||
export async function sendSmsCode(data: any): Promise<any> {
|
||
return await request({
|
||
url: "/basic/code/sendSmsCode",
|
||
method: "post",
|
||
data,
|
||
});
|
||
}
|
||
|
||
export async function sendEmailCode(data: any): Promise<any> {
|
||
return await request({
|
||
url: "/basic/code/sendEmailCode",
|
||
method: "post",
|
||
data,
|
||
});
|
||
}
|
||
|
||
export async function getProductInfo(): Promise<any> {
|
||
return await request({
|
||
url: "/basic/settings/productInfo",
|
||
method: "get",
|
||
showErrorNotify: false,
|
||
});
|
||
}
|