mirror of https://github.com/certd/certd
460 lines
15 KiB
TypeScript
460 lines
15 KiB
TypeScript
import { CancelError, IsTaskPlugin, pluginGroups, RunStrategy, TaskInput } from "@certd/pipeline";
|
||
import { utils } from "@certd/basic";
|
||
|
||
import type { CertInfo, CnameVerifyPlan, DomainsVerifyPlan, HttpVerifyPlan, PrivateKeyType, SSLProvider } from "./acme.js";
|
||
import { AcmeService } from "./acme.js";
|
||
import * as _ from "lodash-es";
|
||
import { createDnsProvider, DnsProviderContext, IDnsProvider } 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 { httpChallengeUploaderFactory } from "./uploads/factory.js";
|
||
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;
|
||
dnsProviderAccessId?: number;
|
||
cnameVerifyPlan?: Record<string, CnameRecordInput>;
|
||
httpVerifyPlan?: Record<string, HttpRecordInput>;
|
||
};
|
||
export type DomainsVerifyPlanInput = {
|
||
[key: string]: DomainVerifyPlanInput;
|
||
};
|
||
|
||
@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文件验证" },
|
||
],
|
||
},
|
||
required: true,
|
||
helper: `DNS直接验证:域名是在阿里云、腾讯云、华为云、Cloudflare、NameSilo、西数、dns.la注册的,选它;
|
||
CNAME代理验证:支持任何注册商注册的域名,但第一次需要手动添加CNAME记录;
|
||
HTTP文件验证:不支持泛域名,需要配置网站文件上传`,
|
||
})
|
||
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" },
|
||
],
|
||
},
|
||
helper: "Let's Encrypt:申请最简单\nGoogle:大厂光环,兼容性好,仅首次需要翻墙获取EAB授权\nZeroSSL:需要EAB授权,无需翻墙",
|
||
required: true,
|
||
})
|
||
sslProvider!: SSLProvider;
|
||
|
||
@TaskInput({
|
||
title: "DNS解析服务商",
|
||
component: {
|
||
name: "dns-provider-selector",
|
||
},
|
||
mergeScript: `
|
||
return {
|
||
show: ctx.compute(({form})=>{
|
||
return form.challengeType === 'dns'
|
||
})
|
||
}
|
||
`,
|
||
required: true,
|
||
helper: "您的域名注册商,或者域名的dns服务器属于哪个平台\n如果这里没有,请选择CNAME代理验证校验方式",
|
||
})
|
||
dnsProviderType!: string;
|
||
|
||
@TaskInput({
|
||
title: "DNS解析授权",
|
||
component: {
|
||
name: "access-selector",
|
||
},
|
||
required: true,
|
||
helper: "请选择dns解析服务商授权",
|
||
mergeScript: `return {
|
||
component:{
|
||
type: ctx.compute(({form})=>{
|
||
return 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'
|
||
}),
|
||
helper: ctx.compute(({form})=>{
|
||
if(form.challengeType === 'cname' ){
|
||
return '请按照上面的提示,给要申请证书的域名添加CNAME记录,添加后,点击验证,验证成功后不要删除记录,申请和续期证书会一直用它'
|
||
}else if (form.challengeType === 'http'){
|
||
return '请按照上面的提示,给每个域名设置文件上传配置,证书申请过程中会上传校验文件到网站根目录下'
|
||
}
|
||
})
|
||
}
|
||
`,
|
||
})
|
||
domainsVerifyPlan!: DomainsVerifyPlanInput;
|
||
|
||
@TaskInput({
|
||
title: "Google公共EAB授权",
|
||
isSys: true,
|
||
show: false,
|
||
})
|
||
googleCommonEabAccessId!: number;
|
||
|
||
@TaskInput({
|
||
title: "ZeroSSL公共EAB授权",
|
||
isSys: true,
|
||
show: false,
|
||
})
|
||
zerosslCommonEabAccessId!: 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'\n Google:请查看[google获取eab帮助文档](https://certd.docmirror.cn/guide/use/google/),用过一次后会绑定邮箱,后续复用EAB要用同一个邮箱",
|
||
mergeScript: `
|
||
return {
|
||
show: ctx.compute(({form})=>{
|
||
return (form.sslProvider === 'zerossl' && !form.zerosslCommonEabAccessId) || (form.sslProvider === 'google' && !form.googleCommonEabAccessId)
|
||
})
|
||
}
|
||
`,
|
||
})
|
||
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: 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;
|
||
|
||
acme!: AcmeService;
|
||
|
||
eab!: EabAccess;
|
||
async onInit() {
|
||
let eab: EabAccess = null;
|
||
|
||
if (this.sslProvider === "google") {
|
||
if (this.googleAccessId) {
|
||
this.logger.info("当前正在使用 google服务账号授权获取EAB");
|
||
const googleAccess = await this.ctx.accessService.getById(this.googleAccessId);
|
||
const googleClient = new GoogleClient({
|
||
access: googleAccess,
|
||
logger: this.logger,
|
||
});
|
||
eab = await googleClient.getEab();
|
||
} else if (this.eabAccessId) {
|
||
this.logger.info("当前正在使用 google EAB授权");
|
||
eab = await this.ctx.accessService.getById(this.eabAccessId);
|
||
} else if (this.googleCommonEabAccessId) {
|
||
this.logger.info("当前正在使用 google公共EAB授权");
|
||
eab = await this.ctx.accessService.getCommonById(this.googleCommonEabAccessId);
|
||
} else {
|
||
throw new Error("google需要配置EAB授权或服务账号授权");
|
||
}
|
||
} else if (this.sslProvider === "zerossl") {
|
||
if (this.eabAccessId) {
|
||
this.logger.info("当前正在使用 zerossl EAB授权");
|
||
eab = await this.ctx.accessService.getById(this.eabAccessId);
|
||
} else if (this.zerosslCommonEabAccessId) {
|
||
this.logger.info("当前正在使用 zerossl 公共EAB授权");
|
||
eab = await this.ctx.accessService.getCommonById(this.zerosslCommonEabAccessId);
|
||
} else {
|
||
throw new Error("zerossl需要配置EAB授权");
|
||
}
|
||
}
|
||
this.eab = eab;
|
||
this.acme = new AcmeService({
|
||
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,
|
||
// cnameProxyService: this.ctx.cnameProxyService,
|
||
// dnsProviderCreator: this.createDnsProvider.bind(this),
|
||
});
|
||
}
|
||
|
||
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") {
|
||
domainsVerifyPlan = await this.createDomainsVerifyPlan();
|
||
} else {
|
||
const dnsProviderType = this.dnsProviderType;
|
||
const access = await this.ctx.accessService.getById(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,
|
||
});
|
||
|
||
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 context: DnsProviderContext = { access: dnsProviderAccess, logger: this.logger, http: this.ctx.http, utils };
|
||
return await createDnsProvider({
|
||
dnsProviderType,
|
||
context,
|
||
});
|
||
}
|
||
|
||
async createDomainsVerifyPlan(): Promise<DomainsVerifyPlan> {
|
||
const plan: DomainsVerifyPlan = {};
|
||
for (const domain in this.domainsVerifyPlan) {
|
||
const domainVerifyPlan = this.domainsVerifyPlan[domain];
|
||
let dnsProvider = null;
|
||
const cnameVerifyPlan: Record<string, CnameVerifyPlan> = {};
|
||
const httpVerifyPlan: Record<string, HttpVerifyPlan> = {};
|
||
if (domainVerifyPlan.type === "dns") {
|
||
const access = await this.ctx.accessService.getById(domainVerifyPlan.dnsProviderAccessId);
|
||
dnsProvider = await this.createDnsProvider(domainVerifyPlan.dnsProviderType, access);
|
||
} else if (domainVerifyPlan.type === "cname") {
|
||
for (const key in domainVerifyPlan.cnameVerifyPlan) {
|
||
const cnameRecord = await this.ctx.cnameProxyService.getByDomain(key);
|
||
let dnsProvider = cnameRecord.commonDnsProvider;
|
||
if (cnameRecord.cnameProvider.id > 0) {
|
||
dnsProvider = await this.createDnsProvider(cnameRecord.cnameProvider.dnsProviderType, cnameRecord.cnameProvider.access);
|
||
}
|
||
cnameVerifyPlan[key] = {
|
||
type: "cname",
|
||
domain: cnameRecord.cnameProvider.domain,
|
||
fullRecord: cnameRecord.recordValue,
|
||
dnsProvider,
|
||
};
|
||
}
|
||
} else if (domainVerifyPlan.type === "http") {
|
||
const httpUploaderContext = {
|
||
accessService: this.ctx.accessService,
|
||
logger: this.logger,
|
||
utils,
|
||
};
|
||
for (const key in domainVerifyPlan.httpVerifyPlan) {
|
||
const httpRecord = domainVerifyPlan.httpVerifyPlan[key];
|
||
const access = await this.ctx.accessService.getById(httpRecord.httpUploaderAccess);
|
||
let rootDir = httpRecord.httpUploadRootDir;
|
||
if (!rootDir.endsWith("/") && !rootDir.endsWith("\\")) {
|
||
rootDir = rootDir + "/";
|
||
}
|
||
this.logger.info("上传方式", httpRecord.httpUploaderType);
|
||
const httpUploader = await httpChallengeUploaderFactory.createUploaderByType(httpRecord.httpUploaderType, {
|
||
access,
|
||
rootDir: rootDir,
|
||
ctx: httpUploaderContext,
|
||
});
|
||
httpVerifyPlan[key] = {
|
||
type: "http",
|
||
domain: key,
|
||
httpUploader,
|
||
};
|
||
}
|
||
}
|
||
plan[domain] = {
|
||
domain,
|
||
type: domainVerifyPlan.type,
|
||
dnsProvider,
|
||
cnameVerifyPlan,
|
||
httpVerifyPlan,
|
||
};
|
||
}
|
||
return plan;
|
||
}
|
||
}
|
||
|
||
new CertApplyPlugin();
|