mirror of
https://github.com/certd/certd.git
synced 2025-11-25 09:10:11 +08:00
208 lines
5.7 KiB
TypeScript
208 lines
5.7 KiB
TypeScript
import { CertInfo } from "./acme.js";
|
||
import fs from "fs";
|
||
import os from "os";
|
||
import path from "path";
|
||
import { CertificateInfo, crypto } from "@certd/acme-client";
|
||
import { ILogger } from "@certd/basic";
|
||
import dayjs from "dayjs";
|
||
import { uniq } from "lodash-es";
|
||
|
||
export type CertReaderHandleContext = {
|
||
reader: CertReader;
|
||
tmpCrtPath: string;
|
||
tmpKeyPath: string;
|
||
tmpOcPath?: string;
|
||
tmpPfxPath?: string;
|
||
tmpDerPath?: string;
|
||
tmpIcPath?: string;
|
||
tmpJksPath?: string;
|
||
tmpOnePath?: string;
|
||
};
|
||
export type CertReaderHandle = (ctx: CertReaderHandleContext) => Promise<void>;
|
||
export type HandleOpts = { logger: ILogger; handle: CertReaderHandle };
|
||
export class CertReader {
|
||
cert: CertInfo;
|
||
|
||
detail: CertificateInfo;
|
||
//毫秒时间戳
|
||
expires: number;
|
||
constructor(certInfo: CertInfo) {
|
||
this.cert = certInfo;
|
||
|
||
if (!certInfo.ic) {
|
||
this.cert.ic = this.getIc();
|
||
}
|
||
|
||
if (!certInfo.oc) {
|
||
this.cert.oc = this.getOc();
|
||
}
|
||
|
||
if (!certInfo.one) {
|
||
this.cert.one = this.cert.crt + "\n" + this.cert.key;
|
||
}
|
||
|
||
try {
|
||
const { detail, expires } = this.getCrtDetail(this.cert.crt);
|
||
this.detail = detail;
|
||
this.expires = expires.getTime();
|
||
} catch (e) {
|
||
throw new Error("证书解析失败:" + e.message);
|
||
}
|
||
}
|
||
|
||
getIc() {
|
||
//中间证书ic, 就是crt的第一个 -----END CERTIFICATE----- 之后的内容
|
||
const endStr = "-----END CERTIFICATE-----";
|
||
const firstBlockEndIndex = this.cert.crt.indexOf(endStr);
|
||
|
||
const start = firstBlockEndIndex + endStr.length + 1;
|
||
if (this.cert.crt.length <= start) {
|
||
return "";
|
||
}
|
||
const ic = this.cert.crt.substring(start);
|
||
if (ic == null) {
|
||
return "";
|
||
}
|
||
return ic?.trim();
|
||
}
|
||
|
||
getOc() {
|
||
//原始证书 就是crt的第一个 -----END CERTIFICATE----- 之前的内容
|
||
const endStr = "-----END CERTIFICATE-----";
|
||
const arr = this.cert.crt.split(endStr);
|
||
return arr[0] + endStr;
|
||
}
|
||
|
||
toCertInfo(): CertInfo {
|
||
return this.cert;
|
||
}
|
||
|
||
getCrtDetail(crt: string = this.cert.crt) {
|
||
return CertReader.readCertDetail(crt);
|
||
}
|
||
|
||
static readCertDetail(crt: string) {
|
||
const detail = crypto.readCertificateInfo(crt.toString());
|
||
const expires = detail.notAfter;
|
||
return { detail, expires };
|
||
}
|
||
|
||
getAllDomains() {
|
||
const { detail } = this.getCrtDetail();
|
||
const domains = [];
|
||
if (detail.domains?.commonName) {
|
||
domains.push(detail.domains.commonName);
|
||
}
|
||
domains.push(...detail.domains.altNames);
|
||
//去重
|
||
return uniq(domains);
|
||
}
|
||
|
||
getAltNames() {
|
||
const { detail } = this.getCrtDetail();
|
||
return detail.domains.altNames;
|
||
}
|
||
|
||
static getMainDomain(crt: string) {
|
||
const { detail } = CertReader.readCertDetail(crt);
|
||
return CertReader.getMainDomainFromDetail(detail);
|
||
}
|
||
|
||
getMainDomain() {
|
||
const { detail } = this.getCrtDetail();
|
||
return CertReader.getMainDomainFromDetail(detail);
|
||
}
|
||
|
||
static getMainDomainFromDetail(detail: CertificateInfo) {
|
||
let domain = detail?.domains?.commonName;
|
||
if (domain == null) {
|
||
domain = detail?.domains?.altNames?.[0];
|
||
}
|
||
if (domain == null) {
|
||
domain = "unknown";
|
||
}
|
||
return domain;
|
||
}
|
||
|
||
saveToFile(type: "crt" | "key" | "pfx" | "der" | "oc" | "one" | "ic" | "jks", filepath?: string) {
|
||
if (!this.cert[type]) {
|
||
return;
|
||
}
|
||
|
||
if (filepath == null) {
|
||
//写入临时目录
|
||
filepath = path.join(os.tmpdir(), "/certd/tmp/", Math.floor(Math.random() * 1000000) + `_cert.${type}`);
|
||
}
|
||
|
||
const dir = path.dirname(filepath);
|
||
if (!fs.existsSync(dir)) {
|
||
fs.mkdirSync(dir, { recursive: true });
|
||
}
|
||
if (type === "crt" || type === "key" || type === "ic" || type === "oc" || type === "one") {
|
||
fs.writeFileSync(filepath, this.cert[type]);
|
||
} else {
|
||
fs.writeFileSync(filepath, Buffer.from(this.cert[type], "base64"));
|
||
}
|
||
return filepath;
|
||
}
|
||
|
||
async readCertFile(opts: HandleOpts) {
|
||
const logger = opts.logger;
|
||
logger.info("将证书写入本地缓存文件");
|
||
const tmpCrtPath = this.saveToFile("crt");
|
||
const tmpKeyPath = this.saveToFile("key");
|
||
const tmpPfxPath = this.saveToFile("pfx");
|
||
const tmpIcPath = this.saveToFile("ic");
|
||
const tmpOcPath = this.saveToFile("oc");
|
||
const tmpDerPath = this.saveToFile("der");
|
||
const tmpJksPath = this.saveToFile("jks");
|
||
const tmpOnePath = this.saveToFile("one");
|
||
logger.info("本地文件写入成功");
|
||
try {
|
||
return await opts.handle({
|
||
reader: this,
|
||
tmpCrtPath: tmpCrtPath,
|
||
tmpKeyPath: tmpKeyPath,
|
||
tmpPfxPath: tmpPfxPath,
|
||
tmpDerPath: tmpDerPath,
|
||
tmpIcPath: tmpIcPath,
|
||
tmpJksPath: tmpJksPath,
|
||
tmpOcPath: tmpOcPath,
|
||
tmpOnePath,
|
||
});
|
||
} catch (err) {
|
||
logger.error("处理失败", err);
|
||
throw err;
|
||
} finally {
|
||
//删除临时文件
|
||
logger.info("清理临时文件");
|
||
function removeFile(filepath?: string) {
|
||
if (filepath) {
|
||
fs.unlinkSync(filepath);
|
||
}
|
||
}
|
||
removeFile(tmpCrtPath);
|
||
removeFile(tmpKeyPath);
|
||
removeFile(tmpPfxPath);
|
||
removeFile(tmpOcPath);
|
||
removeFile(tmpDerPath);
|
||
removeFile(tmpIcPath);
|
||
removeFile(tmpJksPath);
|
||
removeFile(tmpOnePath);
|
||
}
|
||
}
|
||
|
||
buildCertFileName(suffix: string, applyTime: any, prefix = "cert") {
|
||
let domain = this.getMainDomain();
|
||
domain = domain.replaceAll(".", "_").replaceAll("*", "_");
|
||
const timeStr = dayjs(applyTime).format("YYYYMMDDHHmmss");
|
||
return `${prefix}_${domain}_${timeStr}.${suffix}`;
|
||
}
|
||
|
||
buildCertName() {
|
||
let domain = this.getMainDomain();
|
||
domain = domain.replaceAll(".", "_").replaceAll("*", "_");
|
||
return `${domain}_${dayjs().format("YYYYMMDDHHmmssSSS")}`;
|
||
}
|
||
}
|