mirror of
https://github.com/certd/certd.git
synced 2025-11-25 09:10:11 +08:00
650 lines
21 KiB
TypeScript
650 lines
21 KiB
TypeScript
import { CancelError, IsTaskPlugin, pluginGroups, RunStrategy, TaskInput } from "@certd/pipeline";
|
||
import { utils } from "@certd/basic";
|
||
|
||
import { AcmeService, CertInfo, DomainsVerifyPlan, DomainVerifyPlan, PrivateKeyType, SSLProvider } from "./acme.js";
|
||
import * as _ from "lodash-es";
|
||
import { createDnsProvider, DnsProviderContext, DnsVerifier, DomainVerifiers, HttpVerifier, IDnsProvider, IDomainVerifierGetter, ISubDomainsGetter } from "../../dns-provider/index.js";
|
||
import { CertReader } from "./cert-reader.js";
|
||
import { CertApplyBasePlugin } from "./base.js";
|
||
import { GoogleClient } from "../../libs/google.js";
|
||
import { EabAccess } from "../../access";
|
||
import { DomainParser } from "../../dns-provider/domain-parser.js";
|
||
import { ossClientFactory } from "@certd/plugin-lib";
|
||
|
||
export * from "./base.js";
|
||
export type { CertInfo };
|
||
export * from "./cert-reader.js";
|
||
export type CnameRecordInput = {
|
||
id: number;
|
||
status: string;
|
||
};
|
||
|
||
export type HttpRecordInput = {
|
||
domain: string;
|
||
httpUploaderType: string;
|
||
httpUploaderAccess: number;
|
||
httpUploadRootDir: string;
|
||
};
|
||
export type DomainVerifyPlanInput = {
|
||
domain: string;
|
||
type: "cname" | "dns" | "http";
|
||
dnsProviderType?: string;
|
||
dnsProviderAccessType?: string;
|
||
dnsProviderAccessId?: number;
|
||
cnameVerifyPlan?: Record<string, CnameRecordInput>;
|
||
httpVerifyPlan?: Record<string, HttpRecordInput>;
|
||
};
|
||
export type DomainsVerifyPlanInput = {
|
||
[key: string]: DomainVerifyPlanInput;
|
||
};
|
||
|
||
const preferredChainConfigs = {
|
||
letsencrypt: {
|
||
helper: "如无特殊需求保持默认即可",
|
||
options: [
|
||
{ value: "ISRG Root X1", label: "ISRG Root X1" },
|
||
{ value: "ISRG Root X2", label: "ISRG Root X2" },
|
||
],
|
||
},
|
||
google: {
|
||
helper: "GlobalSign 提供对老旧设备更好的兼容性,但证书链会变长",
|
||
options: [
|
||
{ value: "GTS Root R1", label: "GTS Root R1" },
|
||
{ value: "GlobalSign", label: "GlobalSign" },
|
||
],
|
||
},
|
||
} as const;
|
||
|
||
const preferredChainSupportedProviders = Object.keys(preferredChainConfigs);
|
||
|
||
const preferredChainMergeScript = (() => {
|
||
const configs = JSON.stringify(preferredChainConfigs);
|
||
const supportedProviders = JSON.stringify(preferredChainSupportedProviders);
|
||
const defaultProvider = JSON.stringify(preferredChainSupportedProviders[0]);
|
||
return `
|
||
const chainConfigs = ${configs};
|
||
const supportedProviders = ${supportedProviders};
|
||
const defaultProvider = ${defaultProvider};
|
||
const getConfig = (provider)=> chainConfigs[provider] || chainConfigs[defaultProvider];
|
||
return {
|
||
show: ctx.compute(({form})=> supportedProviders.includes(form.sslProvider)),
|
||
component: {
|
||
options: ctx.compute(({form})=> getConfig(form.sslProvider).options)
|
||
},
|
||
helper: ctx.compute(({form})=> getConfig(form.sslProvider).helper),
|
||
value: ctx.compute(({form})=>{
|
||
const { options } = getConfig(form.sslProvider);
|
||
const allowed = options.map(item=>item.value);
|
||
const current = form.preferredChain;
|
||
if(allowed.includes(current)){
|
||
return current;
|
||
}
|
||
return allowed[0];
|
||
})
|
||
};
|
||
`;
|
||
})();
|
||
|
||
@IsTaskPlugin({
|
||
name: "CertApply",
|
||
title: "证书申请(JS版)",
|
||
icon: "ph:certificate",
|
||
group: pluginGroups.cert.key,
|
||
desc: "免费通配符域名证书申请,支持多个域名打到同一个证书上",
|
||
default: {
|
||
input: {
|
||
renewDays: 35,
|
||
forceUpdate: false,
|
||
},
|
||
strategy: {
|
||
runStrategy: RunStrategy.AlwaysRun,
|
||
},
|
||
},
|
||
})
|
||
export class CertApplyPlugin extends CertApplyBasePlugin {
|
||
@TaskInput({
|
||
title: "域名验证方式",
|
||
value: "dns",
|
||
component: {
|
||
name: "a-select",
|
||
vModel: "value",
|
||
options: [
|
||
{ value: "dns", label: "DNS直接验证" },
|
||
{ value: "cname", label: "CNAME代理验证" },
|
||
{ value: "http", label: "HTTP文件验证" },
|
||
{ value: "dnses", label: "多DNS提供商" },
|
||
{ value: "auto", label: "自动匹配" },
|
||
],
|
||
},
|
||
required: true,
|
||
helper: `1. <b>DNS直接验证</b>:域名dns解析是在阿里云/腾讯云/华为云/CF/NameSilo/西数/火山/dns.la/京东云/51dns的,选它
|
||
2. <b>CNAME代理验证</b>:支持任何注册商的域名,第一次需要手动添加[CNAME记录](#/certd/cname/record)(建议将DNS服务器修改为阿里云/腾讯云的,然后使用DNS直接验证)
|
||
3. <b>HTTP文件验证</b>:不支持泛域名,需要配置网站文件上传
|
||
4. <b>多DNS提供商</b>:每个域名可以选择独立的DNS提供商
|
||
5. <b>自动匹配</b>:需要在[域名管理](#/certd/cert/domain)中事先配置好校验方式
|
||
`,
|
||
})
|
||
challengeType!: string;
|
||
|
||
@TaskInput({
|
||
title: "证书颁发机构",
|
||
value: "letsencrypt",
|
||
component: {
|
||
name: "icon-select",
|
||
vModel: "value",
|
||
options: [
|
||
{ value: "letsencrypt", label: "Let's Encrypt", icon: "simple-icons:letsencrypt" },
|
||
{ value: "google", label: "Google", icon: "flat-color-icons:google" },
|
||
{ value: "zerossl", label: "ZeroSSL", icon: "emojione:digit-zero" },
|
||
{ value: "sslcom", label: "SSL.com(仅主域名和www免费)", icon: "la:expeditedssl" },
|
||
],
|
||
},
|
||
helper: "Let's Encrypt:申请最简单\nGoogle:大厂光环,兼容性好,仅首次需要翻墙获取EAB授权\nZeroSSL:需要EAB授权,无需翻墙\nSSL.com:仅主域名和www免费,必须设置CAA记录",
|
||
required: true,
|
||
})
|
||
sslProvider!: SSLProvider;
|
||
|
||
@TaskInput({
|
||
title: "DNS解析服务商",
|
||
component: {
|
||
name: "dns-provider-selector",
|
||
},
|
||
mergeScript: `
|
||
return {
|
||
show: ctx.compute(({form})=>{
|
||
return form.challengeType === 'dns'
|
||
}),
|
||
component:{
|
||
onSelectedChange: ctx.compute(({form})=>{
|
||
return ($event)=>{
|
||
form.dnsProviderAccessType = $event.accessType
|
||
}
|
||
})
|
||
}
|
||
}
|
||
`,
|
||
required: true,
|
||
helper: "您的域名注册商,或者域名的dns服务器属于哪个平台\n如果这里没有,请选择CNAME代理验证校验方式",
|
||
})
|
||
dnsProviderType!: string;
|
||
|
||
// dns解析授权类型,勿删
|
||
dnsProviderAccessType!: string;
|
||
|
||
@TaskInput({
|
||
title: "DNS解析授权",
|
||
component: {
|
||
name: "access-selector",
|
||
},
|
||
required: true,
|
||
helper: "请选择dns解析服务商授权",
|
||
mergeScript: `return {
|
||
component:{
|
||
type: ctx.compute(({form})=>{
|
||
return form.dnsProviderAccessType || form.dnsProviderType
|
||
})
|
||
},
|
||
show: ctx.compute(({form})=>{
|
||
return form.challengeType === 'dns'
|
||
})
|
||
}
|
||
`,
|
||
})
|
||
dnsProviderAccess!: number;
|
||
|
||
@TaskInput({
|
||
title: "域名验证配置",
|
||
component: {
|
||
name: "domains-verify-plan-editor",
|
||
},
|
||
rules: [{ type: "checkDomainVerifyPlan" }],
|
||
required: true,
|
||
col: {
|
||
span: 24,
|
||
},
|
||
mergeScript: `return {
|
||
component:{
|
||
domains: ctx.compute(({form})=>{
|
||
return form.domains
|
||
}),
|
||
defaultType: ctx.compute(({form})=>{
|
||
return form.challengeType || 'cname'
|
||
})
|
||
},
|
||
show: ctx.compute(({form})=>{
|
||
return form.challengeType === 'cname' || form.challengeType === 'http' || form.challengeType === 'dnses'
|
||
}),
|
||
helper: ctx.compute(({form})=>{
|
||
if(form.challengeType === 'cname' ){
|
||
return '请按照上面的提示,给要申请证书的域名添加CNAME记录,添加后,点击验证,验证成功后不要删除记录,申请和续期证书会一直用它'
|
||
}else if (form.challengeType === 'http'){
|
||
return '请按照上面的提示,给每个域名设置文件上传配置,证书申请过程中会上传校验文件到网站根目录下'
|
||
}else if (form.challengeType === 'http'){
|
||
return '给每个域名单独配置dns提供商'
|
||
}
|
||
})
|
||
}
|
||
`,
|
||
})
|
||
domainsVerifyPlan!: DomainsVerifyPlanInput;
|
||
|
||
@TaskInput({
|
||
title: "Google公共EAB授权",
|
||
isSys: true,
|
||
show: false,
|
||
})
|
||
googleCommonEabAccessId!: number;
|
||
|
||
@TaskInput({
|
||
title: "ZeroSSL公共EAB授权",
|
||
isSys: true,
|
||
show: false,
|
||
})
|
||
zerosslCommonEabAccessId!: number;
|
||
|
||
@TaskInput({
|
||
title: "SSL.com公共EAB授权",
|
||
isSys: true,
|
||
show: false,
|
||
})
|
||
sslcomCommonEabAccessId!: number;
|
||
|
||
@TaskInput({
|
||
title: "EAB授权",
|
||
component: {
|
||
name: "access-selector",
|
||
type: "eab",
|
||
},
|
||
maybeNeed: true,
|
||
required: false,
|
||
helper:
|
||
"需要提供EAB授权" +
|
||
"\nZeroSSL:请前往[zerossl开发者中心](https://app.zerossl.com/developer),生成 'EAB Credentials'" +
|
||
"\nGoogle:请查看[google获取eab帮助文档](https://certd.docmirror.cn/guide/use/google/),用过一次后会绑定邮箱,后续复用EAB要用同一个邮箱" +
|
||
"\nSSL.com:[SSL.com账号页面](https://secure.ssl.com/account),然后点击api credentials链接,然后点击编辑按钮,查看Secret key和HMAC key",
|
||
mergeScript: `
|
||
return {
|
||
show: ctx.compute(({form})=>{
|
||
return (form.sslProvider === 'zerossl' && !form.zerosslCommonEabAccessId)
|
||
|| (form.sslProvider === 'google' && !form.googleCommonEabAccessId)
|
||
|| (form.sslProvider === 'sslcom' && !form.sslcomCommonEabAccessId)
|
||
})
|
||
}
|
||
`,
|
||
})
|
||
eabAccessId!: number;
|
||
|
||
@TaskInput({
|
||
title: "服务账号授权",
|
||
component: {
|
||
name: "access-selector",
|
||
type: "google",
|
||
},
|
||
maybeNeed: true,
|
||
required: false,
|
||
helper: "google服务账号授权与EAB授权选填其中一个,[服务账号授权获取方法](https://certd.docmirror.cn/guide/use/google/)\n服务账号授权需要配置代理或者服务器本身在海外",
|
||
mergeScript: `
|
||
return {
|
||
show: ctx.compute(({form})=>{
|
||
return form.sslProvider === 'google' && !form.googleCommonEabAccessId
|
||
})
|
||
}
|
||
`,
|
||
})
|
||
googleAccessId!: number;
|
||
|
||
@TaskInput({
|
||
title: "加密算法",
|
||
value: "rsa_2048",
|
||
component: {
|
||
name: "a-select",
|
||
vModel: "value",
|
||
options: [
|
||
{ value: "rsa_1024", label: "RSA 1024" },
|
||
{ value: "rsa_2048", label: "RSA 2048" },
|
||
{ value: "rsa_3072", label: "RSA 3072" },
|
||
{ value: "rsa_4096", label: "RSA 4096" },
|
||
{ value: "rsa_2048_pkcs1", label: "RSA 2048 pkcs1 (旧版)" },
|
||
{ value: "ec_256", label: "EC 256" },
|
||
{ value: "ec_384", label: "EC 384" },
|
||
// { value: "ec_521", label: "EC 521" },
|
||
],
|
||
},
|
||
helper: "如无特殊需求,默认即可\n选择RSA 2048 pkcs1可以获得旧版RSA证书",
|
||
required: true,
|
||
})
|
||
privateKeyType!: PrivateKeyType;
|
||
|
||
@TaskInput({
|
||
title: "证书配置",
|
||
value: "classic",
|
||
component: {
|
||
name: "a-select",
|
||
vModel: "value",
|
||
options: [
|
||
{ value: "classic", label: "经典(classic)" },
|
||
{ value: "tlsserver", label: "TLS服务器(tlsserver)" },
|
||
{ value: "shortlived", label: "短暂的(shortlived)" },
|
||
],
|
||
},
|
||
helper: "如无特殊需求,默认即可",
|
||
required: false,
|
||
mergeScript: `
|
||
return {
|
||
show: ctx.compute(({form})=>{
|
||
return form.sslProvider === 'letsencrypt'
|
||
})
|
||
}
|
||
`,
|
||
})
|
||
certProfile!: string;
|
||
|
||
@TaskInput({
|
||
title: "首选链",
|
||
component: {
|
||
name: "a-select",
|
||
vModel: "value",
|
||
options: preferredChainConfigs.letsencrypt.options,
|
||
},
|
||
helper: preferredChainConfigs.letsencrypt.helper,
|
||
required: false,
|
||
mergeScript: preferredChainMergeScript,
|
||
})
|
||
preferredChain!: string;
|
||
|
||
@TaskInput({
|
||
title: "使用代理",
|
||
value: false,
|
||
component: {
|
||
name: "a-switch",
|
||
vModel: "checked",
|
||
},
|
||
helper: "如果acme-v02.api.letsencrypt.org或dv.acme-v02.api.pki.goog被墙无法访问,请尝试开启此选项\n默认情况会进行测试,如果无法访问,将会自动使用代理",
|
||
})
|
||
useProxy = false;
|
||
|
||
@TaskInput({
|
||
title: "自定义反代地址",
|
||
component: {
|
||
placeholder: "google.yourproxy.com",
|
||
},
|
||
helper: "填写你的自定义反代地址,不要带http://\nletsencrypt反代目标:acme-v02.api.letsencrypt.org\ngoogle反代目标:dv.acme-v02.api.pki.goog",
|
||
})
|
||
reverseProxy = "";
|
||
|
||
@TaskInput({
|
||
title: "跳过本地校验DNS",
|
||
value: false,
|
||
component: {
|
||
name: "a-switch",
|
||
vModel: "checked",
|
||
},
|
||
helper: "跳过本地校验可以加快申请速度,同时也会增加失败概率。",
|
||
})
|
||
skipLocalVerify = false;
|
||
|
||
@TaskInput({
|
||
title: "检查解析重试次数",
|
||
value: 20,
|
||
component: {
|
||
name: "a-input-number",
|
||
vModel: "value",
|
||
},
|
||
helper: "检查域名验证解析记录重试次数,如果你的域名服务商解析生效速度慢,可以适当增加此值",
|
||
})
|
||
maxCheckRetryCount = 20;
|
||
|
||
@TaskInput({
|
||
title: "等待解析生效时长",
|
||
value: 30,
|
||
component: {
|
||
name: "a-input-number",
|
||
vModel: "value",
|
||
},
|
||
helper: "等待解析生效时长(秒),如果使用CNAME方式校验,本地验证失败,可以尝试延长此时间(比如5-10分钟)",
|
||
})
|
||
waitDnsDiffuseTime = 30;
|
||
|
||
acme!: AcmeService;
|
||
|
||
eab!: EabAccess;
|
||
|
||
async onInit() {
|
||
let eab: EabAccess = null;
|
||
|
||
if (this.sslProvider && this.sslProvider !== "letsencrypt") {
|
||
if (this.sslProvider === "google" && this.googleAccessId) {
|
||
this.logger.info("当前正在使用 google服务账号授权获取EAB");
|
||
const googleAccess = await this.getAccess(this.googleAccessId);
|
||
const googleClient = new GoogleClient({
|
||
access: googleAccess,
|
||
logger: this.logger,
|
||
});
|
||
eab = await googleClient.getEab();
|
||
} else {
|
||
const getEab = async (type: string) => {
|
||
if (this.eabAccessId) {
|
||
this.logger.info(`当前正在使用 ${type} EAB授权`);
|
||
eab = await this.getAccess(this.eabAccessId);
|
||
} else if (this[`${type}CommonEabAccessId`]) {
|
||
this.logger.info(`当前正在使用 ${type} 公共EAB授权`);
|
||
eab = await this.getAccess(this[`${type}CommonEabAccessId`], true);
|
||
} else {
|
||
throw new Error(`${type}需要配置EAB授权`);
|
||
}
|
||
};
|
||
await getEab(this.sslProvider);
|
||
}
|
||
}
|
||
this.eab = eab;
|
||
const subDomainsGetter = await this.ctx.serviceGetter.get<ISubDomainsGetter>("subDomainsGetter");
|
||
const domainParser = new DomainParser(subDomainsGetter, this.logger);
|
||
this.acme = new AcmeService({
|
||
userId: this.ctx.user.id,
|
||
userContext: this.userContext,
|
||
logger: this.logger,
|
||
sslProvider: this.sslProvider,
|
||
eab,
|
||
skipLocalVerify: this.skipLocalVerify,
|
||
useMappingProxy: this.useProxy,
|
||
reverseProxy: this.reverseProxy,
|
||
privateKeyType: this.privateKeyType,
|
||
signal: this.ctx.signal,
|
||
maxCheckRetryCount: this.maxCheckRetryCount,
|
||
domainParser,
|
||
waitDnsDiffuseTime: this.waitDnsDiffuseTime,
|
||
});
|
||
}
|
||
|
||
async doCertApply() {
|
||
let email = this.email;
|
||
if (this.eab && this.eab.email) {
|
||
email = this.eab.email;
|
||
}
|
||
const domains = this["domains"];
|
||
|
||
const csrInfo = _.merge(
|
||
{
|
||
// country: "CN",
|
||
// state: "GuangDong",
|
||
// locality: "ShengZhen",
|
||
// organization: "CertD Org.",
|
||
// organizationUnit: "IT Department",
|
||
// emailAddress: email,
|
||
},
|
||
this.csrInfo ? JSON.parse(this.csrInfo) : {}
|
||
);
|
||
this.logger.info("开始申请证书,", email, domains);
|
||
|
||
let dnsProvider: IDnsProvider = null;
|
||
let domainsVerifyPlan: DomainsVerifyPlan = null;
|
||
if (this.challengeType === "cname" || this.challengeType === "http" || this.challengeType === "dnses") {
|
||
domainsVerifyPlan = await this.createDomainsVerifyPlan(domains, this.domainsVerifyPlan);
|
||
} else if (this.challengeType === "auto") {
|
||
domainsVerifyPlan = await this.createDomainsVerifyPlanByAuto(domains);
|
||
} else {
|
||
const dnsProviderType = this.dnsProviderType;
|
||
const access = await this.getAccess(this.dnsProviderAccess);
|
||
dnsProvider = await this.createDnsProvider(dnsProviderType, access);
|
||
}
|
||
|
||
try {
|
||
const cert = await this.acme.order({
|
||
email,
|
||
domains,
|
||
dnsProvider,
|
||
domainsVerifyPlan,
|
||
csrInfo,
|
||
isTest: false,
|
||
privateKeyType: this.privateKeyType,
|
||
profile: this.certProfile,
|
||
preferredChain: this.preferredChain,
|
||
});
|
||
|
||
const certInfo = this.formatCerts(cert);
|
||
return new CertReader(certInfo);
|
||
} catch (e: any) {
|
||
const message: string = e?.message;
|
||
if (message != null && message.indexOf("redundant with a wildcard domain in the same request") >= 0) {
|
||
this.logger.error(e);
|
||
throw new Error(`通配符域名已经包含了普通域名,请删除其中一个(${message})`);
|
||
}
|
||
if (e.name === "CancelError") {
|
||
throw new CancelError(e.message);
|
||
}
|
||
throw e;
|
||
}
|
||
}
|
||
|
||
async createDnsProvider(dnsProviderType: string, dnsProviderAccess: any): Promise<IDnsProvider> {
|
||
const domainParser = this.acme.options.domainParser;
|
||
const context: DnsProviderContext = {
|
||
access: dnsProviderAccess,
|
||
logger: this.logger,
|
||
http: this.ctx.http,
|
||
utils,
|
||
domainParser,
|
||
};
|
||
return await createDnsProvider({
|
||
dnsProviderType,
|
||
context,
|
||
});
|
||
}
|
||
|
||
async createDomainsVerifyPlan(domains: string[], verifyPlanSetting: DomainsVerifyPlanInput): Promise<DomainsVerifyPlan> {
|
||
const plan: DomainsVerifyPlan = {};
|
||
|
||
const domainParser = this.acme.options.domainParser;
|
||
for (const fullDomain of domains) {
|
||
const domain = fullDomain.replaceAll("*.", "");
|
||
const mainDomain = await domainParser.parse(domain);
|
||
const planSetting: DomainVerifyPlanInput = verifyPlanSetting[mainDomain];
|
||
if (planSetting == null) {
|
||
throw new Error(`没有找到域名(${domain})的校验计划`);
|
||
}
|
||
if (planSetting.type === "dns") {
|
||
plan[domain] = await this.createDnsDomainVerifyPlan(planSetting, domain, mainDomain);
|
||
} else if (planSetting.type === "cname") {
|
||
plan[domain] = await this.createCnameDomainVerifyPlan(domain, mainDomain);
|
||
} else if (planSetting.type === "http") {
|
||
plan[domain] = await this.createHttpDomainVerifyPlan(planSetting.httpVerifyPlan[domain], domain, mainDomain);
|
||
}
|
||
}
|
||
return plan;
|
||
}
|
||
|
||
private async createDomainsVerifyPlanByAuto(domains: string[]) {
|
||
//从数据库里面自动选择校验方式
|
||
// domain list
|
||
const domainList = new Set<string>();
|
||
//整理域名
|
||
for (let domain of domains) {
|
||
domain = domain.replaceAll("*.", "");
|
||
domainList.add(domain);
|
||
}
|
||
const domainVerifierGetter: IDomainVerifierGetter = await this.ctx.serviceGetter.get("domainVerifierGetter");
|
||
|
||
const verifiers: DomainVerifiers = await domainVerifierGetter.getVerifiers([...domainList]);
|
||
|
||
const plan: DomainsVerifyPlan = {};
|
||
|
||
for (const domain in verifiers) {
|
||
const verifier = verifiers[domain];
|
||
if (verifier == null) {
|
||
throw new Error(`没有找到与该域名(${domain})匹配的校验方式,请先到‘域名管理’页面添加校验方式`);
|
||
}
|
||
if (verifier.type === "dns") {
|
||
plan[domain] = await this.createDnsDomainVerifyPlan(verifier.dns, domain, verifier.mainDomain);
|
||
} else if (verifier.type === "cname") {
|
||
plan[domain] = await this.createCnameDomainVerifyPlan(domain, verifier.mainDomain);
|
||
} else if (verifier.type === "http") {
|
||
plan[domain] = await this.createHttpDomainVerifyPlan(verifier.http, domain, verifier.mainDomain);
|
||
}
|
||
}
|
||
return plan;
|
||
}
|
||
|
||
private async createDnsDomainVerifyPlan(planSetting: DnsVerifier, domain: string, mainDomain: string): Promise<DomainVerifyPlan> {
|
||
const access = await this.getAccess(planSetting.dnsProviderAccessId);
|
||
return {
|
||
type: "dns",
|
||
mainDomain,
|
||
domain,
|
||
dnsProvider: await this.createDnsProvider(planSetting.dnsProviderType, access),
|
||
};
|
||
}
|
||
|
||
private async createHttpDomainVerifyPlan(httpSetting: HttpVerifier, domain: string, mainDomain: string): Promise<DomainVerifyPlan> {
|
||
const httpUploaderContext = {
|
||
accessService: this.ctx.accessService,
|
||
logger: this.logger,
|
||
utils,
|
||
};
|
||
|
||
const access = await this.getAccess(httpSetting.httpUploaderAccess);
|
||
let rootDir = httpSetting.httpUploadRootDir;
|
||
if (!rootDir.endsWith("/") && !rootDir.endsWith("\\")) {
|
||
rootDir = rootDir + "/";
|
||
}
|
||
this.logger.info("上传方式", httpSetting.httpUploaderType);
|
||
const httpUploader = await ossClientFactory.createOssClientByType(httpSetting.httpUploaderType, {
|
||
access,
|
||
rootDir: rootDir,
|
||
ctx: httpUploaderContext,
|
||
});
|
||
return {
|
||
type: "http",
|
||
domain,
|
||
mainDomain,
|
||
httpVerifyPlan: {
|
||
type: "http",
|
||
domain,
|
||
httpUploader,
|
||
},
|
||
};
|
||
}
|
||
|
||
private async createCnameDomainVerifyPlan(domain: string, mainDomain: string): Promise<DomainVerifyPlan> {
|
||
const cnameRecord = await this.ctx.cnameProxyService.getByDomain(domain);
|
||
if (cnameRecord == null) {
|
||
throw new Error(`请先配置${domain}的CNAME记录,并通过校验`);
|
||
}
|
||
let dnsProvider = cnameRecord.commonDnsProvider;
|
||
if (cnameRecord.cnameProvider.id > 0) {
|
||
dnsProvider = await this.createDnsProvider(cnameRecord.cnameProvider.dnsProviderType, cnameRecord.cnameProvider.access);
|
||
}
|
||
return {
|
||
type: "cname",
|
||
domain,
|
||
mainDomain,
|
||
cnameVerifyPlan: {
|
||
domain: cnameRecord.cnameProvider.domain,
|
||
fullRecord: cnameRecord.recordValue,
|
||
dnsProvider,
|
||
},
|
||
};
|
||
}
|
||
}
|
||
|
||
new CertApplyPlugin();
|