mirror of https://github.com/certd/certd
chore:
parent
162ebfd4e0
commit
7d96a57d73
|
@ -27,8 +27,7 @@ export abstract class CertApplyBaseConvertPlugin extends AbstractTaskPlugin {
|
|||
"1、支持多个域名打到一个证书上,例如: foo.com,*.foo.com,*.bar.com\n" +
|
||||
"2、子域名被通配符包含的不要填写,例如:www.foo.com已经被*.foo.com包含,不要填写www.foo.com\n" +
|
||||
"3、泛域名只能通配*号那一级(*.foo.com的证书不能用于xxx.yyy.foo.com、不能用于foo.com)\n" +
|
||||
"4、输入一个,空格之后,再输入下一个\n" +
|
||||
"5、如果你配置了子域托管解析,请先[设置托管子域名](#/certd/pipeline/subDomain)",
|
||||
"4、输入一个,空格之后,再输入下一个",
|
||||
})
|
||||
domains!: string[];
|
||||
|
||||
|
|
|
@ -0,0 +1,25 @@
|
|||
import { AliyunAccess } from "../aliyun";
|
||||
import { HttpClient, ILogger } from "@certd/basic";
|
||||
import { IOssClient, OssClientDeleteReq } from "./api";
|
||||
|
||||
export class AliossClient implements IOssClient {
|
||||
access: AliyunAccess;
|
||||
logger: ILogger;
|
||||
http: HttpClient;
|
||||
|
||||
constructor(opts: { access: AliyunAccess; http: HttpClient; logger: ILogger }) {
|
||||
this.access = opts.access;
|
||||
this.http = opts.http;
|
||||
this.logger = opts.logger;
|
||||
}
|
||||
|
||||
upload(key: string, content: Buffer | string): Promise<void> {
|
||||
throw new Error("Method not implemented.");
|
||||
}
|
||||
download(key: string, savePath?: string): Promise<void> {
|
||||
throw new Error("Method not implemented.");
|
||||
}
|
||||
delete(opts: OssClientDeleteReq): Promise<void> {
|
||||
throw new Error("Method not implemented.");
|
||||
}
|
||||
}
|
|
@ -0,0 +1,12 @@
|
|||
export type OssClientDeleteReq = {
|
||||
key: string;
|
||||
beforeDays?: number;
|
||||
};
|
||||
|
||||
export interface IOssClient {
|
||||
upload(key: string, content: Buffer | string): Promise<void>;
|
||||
|
||||
download(key: string, savePath?: string): Promise<void>;
|
||||
|
||||
delete(opts: OssClientDeleteReq): Promise<void>;
|
||||
}
|
|
@ -98,17 +98,17 @@ export const certdResources = [
|
|||
keepAlive: true,
|
||||
},
|
||||
},
|
||||
{
|
||||
title: "子域名托管设置",
|
||||
name: "SubDomain",
|
||||
path: "/certd/pipeline/subDomain",
|
||||
component: "/certd/pipeline/sub-domain/index.vue",
|
||||
meta: {
|
||||
icon: "material-symbols:approval-delegation-outline",
|
||||
auth: true,
|
||||
keepAlive: true,
|
||||
},
|
||||
},
|
||||
// {
|
||||
// title: "子域名托管设置",
|
||||
// name: "SubDomain",
|
||||
// path: "/certd/pipeline/subDomain",
|
||||
// component: "/certd/pipeline/sub-domain/index.vue",
|
||||
// meta: {
|
||||
// icon: "material-symbols:approval-delegation-outline",
|
||||
// auth: true,
|
||||
// keepAlive: true,
|
||||
// },
|
||||
// },
|
||||
{
|
||||
title: "流水线分组管理",
|
||||
name: "PipelineGroupManager",
|
||||
|
|
|
@ -9,6 +9,7 @@ import { SshAccess, SshClient } from '@certd/plugin-lib';
|
|||
|
||||
const defaultBackupDir = 'certd_backup';
|
||||
const defaultFilePrefix = 'db-backup';
|
||||
|
||||
@IsTaskPlugin({
|
||||
name: 'DBBackupPlugin',
|
||||
title: '数据库备份',
|
||||
|
@ -32,6 +33,7 @@ export class DBBackupPlugin extends AbstractPlusTaskPlugin {
|
|||
options: [
|
||||
{label: '本地复制', value: 'local'},
|
||||
{label: 'ssh上传', value: 'ssh'},
|
||||
{label: 'oss上传', value: 'oss'},
|
||||
],
|
||||
placeholder: '',
|
||||
},
|
||||
|
@ -57,6 +59,51 @@ export class DBBackupPlugin extends AbstractPlusTaskPlugin {
|
|||
})
|
||||
sshAccessId!: number;
|
||||
|
||||
|
||||
@TaskInput({
|
||||
title: 'OSS类型',
|
||||
component: {
|
||||
name: 'a-input',
|
||||
options: [
|
||||
{value: "aliyun", label: "阿里云OSS"},
|
||||
{value: "s3", label: "MinIO/S3"},
|
||||
{value: "qiniu", label: "七牛云"},
|
||||
{value: "tencent", label: "腾讯云COS"}
|
||||
]
|
||||
},
|
||||
mergeScript: `
|
||||
return {
|
||||
show:ctx.compute(({form})=>{
|
||||
return form.backupMode === 'oss';
|
||||
})
|
||||
}
|
||||
`,
|
||||
required: true,
|
||||
})
|
||||
ossType!: string;
|
||||
|
||||
@TaskInput({
|
||||
title: 'OSS授权',
|
||||
component: {
|
||||
name: 'access-selector',
|
||||
},
|
||||
mergeScript: `
|
||||
return {
|
||||
show:ctx.compute(({form})=>{
|
||||
return form.backupMode === 'ssh';
|
||||
}),
|
||||
component:{
|
||||
type: ctx.compute(({form})=>{
|
||||
return form.ossType;
|
||||
}),
|
||||
}
|
||||
}
|
||||
`,
|
||||
required: true,
|
||||
})
|
||||
ossAccessId!: number;
|
||||
|
||||
|
||||
@TaskInput({
|
||||
title: '备份保存目录',
|
||||
component: {
|
||||
|
@ -104,7 +151,9 @@ export class DBBackupPlugin extends AbstractPlusTaskPlugin {
|
|||
})
|
||||
retainDays!: number;
|
||||
|
||||
async onInstance() {}
|
||||
async onInstance() {
|
||||
}
|
||||
|
||||
async execute(): Promise<void> {
|
||||
this.logger.info('开始备份数据库');
|
||||
|
||||
|
@ -224,4 +273,5 @@ export class DBBackupPlugin extends AbstractPlusTaskPlugin {
|
|||
// TODO
|
||||
}
|
||||
}
|
||||
|
||||
new DBBackupPlugin();
|
||||
|
|
Loading…
Reference in New Issue