mirror of
https://github.com/certd/certd.git
synced 2026-04-14 12:30:54 +08:00
123 lines
2.9 KiB
TypeScript
123 lines
2.9 KiB
TypeScript
import { AbstractTaskPlugin, IsTaskPlugin, pluginGroups, RunStrategy, TaskInput } from '@certd/pipeline';
|
||
import { CertInfo } from '@certd/plugin-cert';
|
||
import { TencentAccess } from '@certd/plugin-lib';
|
||
import { CertApplyPluginNames} from '@certd/plugin-cert';
|
||
@IsTaskPlugin({
|
||
name: 'DeployCertToTencentCDN',
|
||
title: '腾讯云-部署到CDN(废弃)',
|
||
icon: 'svg:icon-tencentcloud',
|
||
group: pluginGroups.tencent.key,
|
||
desc: '已废弃,请使用v2版',
|
||
default: {
|
||
strategy: {
|
||
runStrategy: RunStrategy.SkipWhenSucceed,
|
||
},
|
||
},
|
||
})
|
||
export class DeployToCdnPlugin extends AbstractTaskPlugin {
|
||
@TaskInput({
|
||
title: '域名证书',
|
||
helper: '请选择前置任务输出的域名证书',
|
||
component: {
|
||
name: 'output-selector',
|
||
from: [...CertApplyPluginNames],
|
||
},
|
||
required: true,
|
||
})
|
||
cert!: CertInfo;
|
||
|
||
@TaskInput({
|
||
title: 'Access提供者',
|
||
helper: 'access 授权',
|
||
component: {
|
||
name: '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;
|
||
|
||
Client: any;
|
||
|
||
async onInstance() {
|
||
const sdk = await import('tencentcloud-sdk-nodejs/tencentcloud/services/cdn/v20180606/index.js');
|
||
this.Client = sdk.v20180606.Client;
|
||
}
|
||
|
||
async getClient() {
|
||
const accessProvider: TencentAccess = (await this.getAccess(this.accessId)) as TencentAccess;
|
||
|
||
const CdnClient = this.Client;
|
||
|
||
const clientConfig = {
|
||
credential: {
|
||
secretId: accessProvider.secretId,
|
||
secretKey: accessProvider.secretKey,
|
||
},
|
||
region: '',
|
||
profile: {
|
||
httpProfile: {
|
||
endpoint: `cdn.${accessProvider.intlDomain()}tencentcloudapi.com`,
|
||
},
|
||
},
|
||
};
|
||
|
||
return new CdnClient(clientConfig);
|
||
}
|
||
|
||
async execute(): Promise<void> {
|
||
const params = this.buildParams();
|
||
await this.doRequest(params);
|
||
}
|
||
|
||
buildParams() {
|
||
return {
|
||
Domain: this.domainName,
|
||
Route: 'Https.CertInfo',
|
||
Value: JSON.stringify({
|
||
update: {
|
||
Certificate: this.cert.crt,
|
||
PrivateKey: this.cert.key,
|
||
},
|
||
}),
|
||
};
|
||
}
|
||
|
||
async doRequest(params: any) {
|
||
const client = await this.getClient();
|
||
const ret = await client.ModifyDomainConfig(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);
|
||
}
|
||
}
|
||
}
|