refactor: decorator

This commit is contained in:
xiaojunnuo
2022-12-27 12:32:09 +08:00
parent c23f6172b5
commit 717d203622
30 changed files with 639 additions and 309 deletions
@@ -1,56 +1,64 @@
import { AbstractPlugin, IsTask, RunStrategy, TaskInput, TaskOutput, TaskPlugin } from "@certd/pipeline";
import { IAccessService, IsTaskPlugin, RunStrategy, TaskInput, ITaskPlugin } from "@certd/pipeline";
import tencentcloud from "tencentcloud-sdk-nodejs/index";
import { TencentAccess } from "../../access";
import { Inject } from "@midwayjs/decorator";
import { ILogger } from "@midwayjs/core";
@IsTask(() => {
return {
name: "DeployCertToTencentCDN",
title: "部署到腾讯云CDN",
input: {
domainName: {
title: "cdn加速域名",
rules: [{ required: true, message: "该项必填" }],
},
certName: {
title: "证书名称",
helper: "证书上传后将以此参数作为名称前缀",
},
cert: {
title: "域名证书",
helper: "请选择前置任务输出的域名证书",
component: {
name: "pi-output-selector",
from: "CertApply",
},
required: true,
},
accessId: {
title: "Access提供者",
helper: "access 授权",
component: {
name: "pi-access-selector",
type: "tencent",
},
required: true,
},
@IsTaskPlugin({
name: "DeployCertToTencentCDN",
title: "部署到腾讯云CDN",
default: {
strategy: {
runStrategy: RunStrategy.SkipWhenSucceed,
},
default: {
strategy: {
runStrategy: RunStrategy.SkipWhenSucceed,
},
},
output: {},
};
},
})
export class DeployToCdnPlugin extends AbstractPlugin implements TaskPlugin {
async execute(input: TaskInput): Promise<TaskOutput> {
const { cert, accessId } = input;
const accessProvider: TencentAccess = (await this.accessService.getById(accessId)) as TencentAccess;
const client = this.getClient(accessProvider);
const params = this.buildParams(input, cert);
await this.doRequest(client, params);
export class DeployToCdnPlugin implements ITaskPlugin {
@TaskInput({
title: "域名证书",
helper: "请选择前置任务输出的域名证书",
component: {
name: "pi-output-selector",
from: "CertApply",
},
required: true,
})
cert!: any;
return {};
@TaskInput({
title: "Access提供者",
helper: "access 授权",
component: {
name: "pi-access-selector",
type: "tencent",
},
required: true,
})
accessId!: string;
@TaskInput({
title: "证书名称",
helper: "证书上传后将以此参数作为名称前缀",
})
certName!: string;
@TaskInput({
title: "cdn加速域名",
rules: [{ required: true, message: "该项必填" }],
})
domainName!: string;
@Inject()
accessService!: IAccessService;
@Inject()
logger!: ILogger;
async execute(): Promise<void> {
const accessProvider: TencentAccess = (await this.accessService.getById(this.accessId)) as TencentAccess;
const client = this.getClient(accessProvider);
const params = this.buildParams();
await this.doRequest(client, params);
}
getClient(accessProvider: TencentAccess) {
@@ -72,17 +80,16 @@ export class DeployToCdnPlugin extends AbstractPlugin implements TaskPlugin {
return new CdnClient(clientConfig);
}
buildParams(props: TaskInput, cert: any) {
const { domainName } = props;
buildParams() {
return {
Https: {
Switch: "on",
CertInfo: {
Certificate: cert.crt,
PrivateKey: cert.key,
Certificate: this.cert.crt,
PrivateKey: this.cert.key,
},
},
Domain: domainName,
Domain: this.domainName,
};
}