mirror of
https://github.com/certd/certd.git
synced 2026-04-14 20:40:53 +08:00
117 lines
2.8 KiB
TypeScript
117 lines
2.8 KiB
TypeScript
import { AbstractTaskPlugin, IsTaskPlugin, pluginGroups, RunStrategy, TaskInput } from '@certd/pipeline';
|
|
import tencentcloud from 'tencentcloud-sdk-nodejs';
|
|
import { TencentAccess } from '../../access/index.js';
|
|
import { CertInfo } from '@certd/plugin-cert';
|
|
|
|
@IsTaskPlugin({
|
|
name: 'DeployCertToTencentEO',
|
|
title: '部署到腾讯云EO',
|
|
desc: '腾讯云边缘安全加速平台 EO',
|
|
group: pluginGroups.tencent.key,
|
|
default: {
|
|
strategy: {
|
|
runStrategy: RunStrategy.SkipWhenSucceed,
|
|
},
|
|
},
|
|
})
|
|
export class DeployToCdnPlugin extends AbstractTaskPlugin {
|
|
@TaskInput({
|
|
title: '域名证书',
|
|
helper: '请选择前置任务输出的域名证书',
|
|
component: {
|
|
name: 'pi-output-selector',
|
|
from: 'CertApply',
|
|
},
|
|
required: true,
|
|
})
|
|
cert!: CertInfo;
|
|
|
|
@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;
|
|
|
|
// @TaskInput({
|
|
// title: "CDN接口",
|
|
// helper: "CDN接口端点",
|
|
// component: {
|
|
// name: "a-select",
|
|
// type: "tencent",
|
|
// },
|
|
// required: true,
|
|
// })
|
|
// endpoint!: string;
|
|
|
|
async onInstance() {}
|
|
|
|
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) {
|
|
const CdnClient = tencentcloud.cdn.v20180606.Client;
|
|
|
|
const clientConfig = {
|
|
credential: {
|
|
secretId: accessProvider.secretId,
|
|
secretKey: accessProvider.secretKey,
|
|
},
|
|
region: '',
|
|
profile: {
|
|
httpProfile: {
|
|
endpoint: 'cdn.tencentcloudapi.com',
|
|
},
|
|
},
|
|
};
|
|
|
|
return new CdnClient(clientConfig);
|
|
}
|
|
|
|
buildParams() {
|
|
return {
|
|
Https: {
|
|
Switch: 'on',
|
|
CertInfo: {
|
|
Certificate: this.cert.crt,
|
|
PrivateKey: this.cert.key,
|
|
},
|
|
},
|
|
Domain: this.domainName,
|
|
};
|
|
}
|
|
|
|
async doRequest(client: any, params: any) {
|
|
const ret = await client.UpdateDomainConfig(params);
|
|
this.checkRet(ret);
|
|
this.logger.info('设置腾讯云CDN证书成功:', ret.RequestId);
|
|
return ret.RequestId;
|
|
}
|
|
|
|
checkRet(ret: any) {
|
|
if (!ret || ret.Error) {
|
|
throw new Error('执行失败:' + ret.Error.Code + ',' + ret.Error.Message);
|
|
}
|
|
}
|
|
}
|