mirror of https://github.com/certd/certd
添加阿里云DCDN 废弃SetDomainServerCertificate接口 改为SetCdnDomainSSLCertificate
parent
ea775adae1
commit
35a3603c41
|
@ -75,11 +75,11 @@ export class DeployCertToAliyunCDN extends AbstractTaskPlugin {
|
||||||
return {
|
return {
|
||||||
RegionId: 'cn-hangzhou',
|
RegionId: 'cn-hangzhou',
|
||||||
DomainName: this.domainName,
|
DomainName: this.domainName,
|
||||||
ServerCertificateStatus: 'on',
|
SSLProtocol: 'on',
|
||||||
CertName: CertName,
|
CertName: CertName,
|
||||||
CertType: 'upload',
|
CertType: 'upload',
|
||||||
ServerCertificate: cert.crt,
|
SSLPub: cert.crt,
|
||||||
PrivateKey: cert.key,
|
SSLPri: cert.key,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -87,7 +87,7 @@ export class DeployCertToAliyunCDN extends AbstractTaskPlugin {
|
||||||
const requestOption = {
|
const requestOption = {
|
||||||
method: 'POST',
|
method: 'POST',
|
||||||
};
|
};
|
||||||
const ret: any = await client.request('SetDomainServerCertificate', params, requestOption);
|
const ret: any = await client.request('SetCdnDomainSSLCertificate', params, requestOption);
|
||||||
this.checkRet(ret);
|
this.checkRet(ret);
|
||||||
this.logger.info('设置cdn证书成功:', ret.RequestId);
|
this.logger.info('设置cdn证书成功:', ret.RequestId);
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,101 @@
|
||||||
|
import { AbstractTaskPlugin, IsTaskPlugin, pluginGroups, RunStrategy, TaskInput } from '@certd/pipeline';
|
||||||
|
import dayjs from 'dayjs';
|
||||||
|
import { AliyunAccess } from '@certd/plugin-plus';
|
||||||
|
import type RPCClient from '@alicloud/pop-core';
|
||||||
|
@IsTaskPlugin({
|
||||||
|
name: 'DeployCertToAliyunDCDN',
|
||||||
|
title: '部署证书至阿里云DCDN',
|
||||||
|
group: pluginGroups.aliyun.key,
|
||||||
|
desc: '依赖证书申请前置任务,自动部署域名证书至阿里云DCDN',
|
||||||
|
default: {
|
||||||
|
strategy: {
|
||||||
|
runStrategy: RunStrategy.SkipWhenSucceed,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
export class DeployCertToAliyunDCDN extends AbstractTaskPlugin {
|
||||||
|
@TaskInput({
|
||||||
|
title: 'DCDN加速域名',
|
||||||
|
helper: '你在阿里云上配置的CDN加速域名,比如:certd.docmirror.cn',
|
||||||
|
required: true,
|
||||||
|
})
|
||||||
|
domainName!: string;
|
||||||
|
|
||||||
|
@TaskInput({
|
||||||
|
title: '证书名称',
|
||||||
|
helper: '上传后将以此名称作为前缀备注',
|
||||||
|
})
|
||||||
|
certName!: string;
|
||||||
|
|
||||||
|
@TaskInput({
|
||||||
|
title: '域名证书',
|
||||||
|
helper: '请选择前置任务输出的域名证书',
|
||||||
|
component: {
|
||||||
|
name: 'pi-output-selector',
|
||||||
|
},
|
||||||
|
required: true,
|
||||||
|
})
|
||||||
|
cert!: string;
|
||||||
|
|
||||||
|
@TaskInput({
|
||||||
|
title: 'Access授权',
|
||||||
|
helper: '阿里云授权AccessKeyId、AccessKeySecret',
|
||||||
|
component: {
|
||||||
|
name: 'pi-access-selector',
|
||||||
|
type: 'aliyun',
|
||||||
|
},
|
||||||
|
required: true,
|
||||||
|
})
|
||||||
|
accessId!: string;
|
||||||
|
|
||||||
|
async onInstance() {}
|
||||||
|
async execute(): Promise<void> {
|
||||||
|
console.log('开始部署证书到阿里云DCDN');
|
||||||
|
const access = (await this.accessService.getById(this.accessId)) as AliyunAccess;
|
||||||
|
const client = await this.getClient(access);
|
||||||
|
const params = await this.buildParams();
|
||||||
|
await this.doRequest(client, params);
|
||||||
|
console.log('部署完成');
|
||||||
|
}
|
||||||
|
|
||||||
|
async getClient(access: AliyunAccess) {
|
||||||
|
const Core = await import('@alicloud/pop-core');
|
||||||
|
|
||||||
|
return new Core.default({
|
||||||
|
accessKeyId: access.accessKeyId,
|
||||||
|
accessKeySecret: access.accessKeySecret,
|
||||||
|
endpoint: 'https://dcdn.aliyuncs.com',
|
||||||
|
apiVersion: '2018-05-10',
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
async buildParams() {
|
||||||
|
const CertName = (this.certName ?? 'certd') + '-' + dayjs().format('YYYYMMDDHHmmss');
|
||||||
|
const cert: any = this.cert;
|
||||||
|
return {
|
||||||
|
RegionId: 'cn-hangzhou',
|
||||||
|
DomainName: this.domainName,
|
||||||
|
SSLProtocol: 'on',
|
||||||
|
CertName: CertName,
|
||||||
|
CertType: 'upload',
|
||||||
|
SSLPub: cert.crt,
|
||||||
|
SSLPri: cert.key,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
async doRequest(client: RPCClient, params: any) {
|
||||||
|
const requestOption = {
|
||||||
|
method: 'POST',
|
||||||
|
};
|
||||||
|
const ret: any = await client.request('SetDcdnDomainSSLCertificate', params, requestOption);
|
||||||
|
this.checkRet(ret);
|
||||||
|
this.logger.info('设置Dcdn证书成功:', ret.RequestId);
|
||||||
|
}
|
||||||
|
|
||||||
|
checkRet(ret: any) {
|
||||||
|
if (ret.code != null) {
|
||||||
|
throw new Error('执行失败:' + ret.Message);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
new DeployCertToAliyunDCDN();
|
|
@ -1,3 +1,4 @@
|
||||||
export * from './deploy-to-cdn/index.js';
|
export * from './deploy-to-cdn/index.js';
|
||||||
|
export * from './deploy-to-dcdn/index.js';
|
||||||
export * from './deploy-to-ack-ingress/index.js';
|
export * from './deploy-to-ack-ingress/index.js';
|
||||||
export * from './upload-to-aliyun/index.js';
|
export * from './upload-to-aliyun/index.js';
|
||||||
|
|
Loading…
Reference in New Issue