mirror of https://github.com/certd/certd
94 lines
2.7 KiB
JavaScript
94 lines
2.7 KiB
JavaScript
![]() |
import { AbstractPlugin } from '../../abstract-plugin/index.js'
|
|||
|
import Core from '@alicloud/pop-core'
|
|||
|
import dayjs from 'dayjs'
|
|||
|
export class UploadCertToAliyunPlugin extends AbstractPlugin {
|
|||
|
/**
|
|||
|
* 插件定义
|
|||
|
* 名称
|
|||
|
* 入参
|
|||
|
* 出参
|
|||
|
*/
|
|||
|
static define () {
|
|||
|
return {
|
|||
|
name: 'deployToCdn',
|
|||
|
label: '部署到阿里云CDN',
|
|||
|
input: {
|
|||
|
domainName: {
|
|||
|
label: 'cdn加速域名',
|
|||
|
required: true
|
|||
|
},
|
|||
|
certName: {
|
|||
|
label: '证书名称'
|
|||
|
},
|
|||
|
certType: {
|
|||
|
label: '证书来源',
|
|||
|
options: [
|
|||
|
{ value: 'upload', label: '直接上传' },
|
|||
|
{ value: 'cas', label: '从证书库(需要uploadCertToAliyun插件作为前置任务)' }
|
|||
|
],
|
|||
|
required: true
|
|||
|
},
|
|||
|
// serverCertificateStatus: {
|
|||
|
// label: '启用https',
|
|||
|
// options: [
|
|||
|
// { value: 'on', label: '开启HTTPS,并更新证书' },
|
|||
|
// { value: 'auto', label: '若HTTPS开启则更新,未开启不更新' }
|
|||
|
// ],
|
|||
|
// required:true
|
|||
|
// },
|
|||
|
accessProvider: {
|
|||
|
label: 'Access提供者',
|
|||
|
type: [String, Object],
|
|||
|
desc: 'AccessProviders的key 或 一个包含accessKeyId与accessKeySecret的对象',
|
|||
|
options: 'accessProviders[type=aliyun]',
|
|||
|
required: true
|
|||
|
}
|
|||
|
},
|
|||
|
output: {
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
getClient (aliyunProvider) {
|
|||
|
return new Core({
|
|||
|
accessKeyId: aliyunProvider.accessKeyId,
|
|||
|
accessKeySecret: aliyunProvider.accessKeySecret,
|
|||
|
endpoint: 'https://cdn.aliyuncs.com',
|
|||
|
apiVersion: '2018-05-10'
|
|||
|
})
|
|||
|
}
|
|||
|
|
|||
|
async execute ({ accessProviders, cert, args, context }) {
|
|||
|
let { accessProvider } = args
|
|||
|
if (typeof accessProvider === 'string' && accessProviders) {
|
|||
|
accessProvider = accessProviders[accessProvider]
|
|||
|
}
|
|||
|
const client = this.getClient(accessProvider)
|
|||
|
|
|||
|
const { certName, certType, domainName } = args
|
|||
|
const CertName = certName + '-' + dayjs().format('YYYYMMDDHHmmss')
|
|||
|
|
|||
|
const params = {
|
|||
|
RegionId: 'cn-hangzhou',
|
|||
|
DomainName: domainName,
|
|||
|
ServerCertificateStatus: 'on',
|
|||
|
CertName: CertName,
|
|||
|
CertType: certType,
|
|||
|
ServerCertificate: context.aliyunCertId
|
|||
|
}
|
|||
|
if (certType === 'upload') {
|
|||
|
// eslint-disable-next-line no-unused-expressions
|
|||
|
params.ServerCertificate = this.format(cert.crt.toString()),
|
|||
|
params.PrivateKey = this.format(cert.key.toString())
|
|||
|
}
|
|||
|
|
|||
|
const requestOption = {
|
|||
|
method: 'POST'
|
|||
|
}
|
|||
|
const ret = await client.request('SetDomainServerCertificate', params, requestOption)
|
|||
|
checkRet(ret)
|
|||
|
console.log('设置cdn证书成功', ret)
|
|||
|
}
|
|||
|
}
|