mirror of https://github.com/certd/certd
chore: 证书支持jks格式
parent
ccfe922c30
commit
385757b54b
|
@ -4,7 +4,10 @@
|
||||||
|
|
||||||
## windows开启OpenSSH Server
|
## windows开启OpenSSH Server
|
||||||
### 1. 安装OpenSSH Server
|
### 1. 安装OpenSSH Server
|
||||||
请前往Microsoft官方文档查看如何开启openSSH
|
|
||||||
|
* 下载安装包安装: https://github.com/PowerShell/Win32-OpenSSH/releases OpenSSH-Win64-vxx.xx.x.msi
|
||||||
|
|
||||||
|
* 前往Microsoft官方文档查看如何开启openSSH,以及其他设置
|
||||||
https://learn.microsoft.com/zh-cn/windows-server/administration/openssh/openssh_install_firstuse?tabs=gui#install-openssh-for-windows
|
https://learn.microsoft.com/zh-cn/windows-server/administration/openssh/openssh_install_firstuse?tabs=gui#install-openssh-for-windows
|
||||||
|
|
||||||
### 2. 启动OpenSSH Server服务
|
### 2. 启动OpenSSH Server服务
|
||||||
|
|
|
@ -28,7 +28,7 @@ features:
|
||||||
- title: 多域名、泛域名打到一个证书上
|
- title: 多域名、泛域名打到一个证书上
|
||||||
details: 支持通配符域名/泛域名,支持多个域名打到一个证书上
|
details: 支持通配符域名/泛域名,支持多个域名打到一个证书上
|
||||||
- title: 多证书格式支持
|
- title: 多证书格式支持
|
||||||
details: 支持pem、pfx、der、p12等多种证书格式,支持Google、Letsencrypt、ZeroSSL证书颁发机构
|
details: 支持pem、pfx、der、jks等多种证书格式,支持Google、Letsencrypt、ZeroSSL证书颁发机构
|
||||||
- title: 支持私有化部署
|
- title: 支持私有化部署
|
||||||
details: 保障数据安全
|
details: 保障数据安全
|
||||||
- title: 多数据库支持
|
- title: 多数据库支持
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
//转换为import
|
//转换为import
|
||||||
import childProcess from "child_process";
|
import childProcess from 'child_process';
|
||||||
import { safePromise } from "./util.promise.js";
|
import { safePromise } from './util.promise.js';
|
||||||
import { ILogger, logger } from "./util.log.js";
|
import { ILogger, logger } from './util.log.js';
|
||||||
|
import iconv from 'iconv-lite';
|
||||||
export type ExecOption = {
|
export type ExecOption = {
|
||||||
cmd: string | string[];
|
cmd: string | string[];
|
||||||
env: any;
|
env: any;
|
||||||
|
@ -11,12 +11,12 @@ export type ExecOption = {
|
||||||
};
|
};
|
||||||
|
|
||||||
async function exec(opts: ExecOption): Promise<string> {
|
async function exec(opts: ExecOption): Promise<string> {
|
||||||
let cmd = "";
|
let cmd = '';
|
||||||
const log = opts.logger || logger;
|
const log = opts.logger || logger;
|
||||||
if (opts.cmd instanceof Array) {
|
if (opts.cmd instanceof Array) {
|
||||||
for (const item of opts.cmd) {
|
for (const item of opts.cmd) {
|
||||||
if (cmd) {
|
if (cmd) {
|
||||||
cmd += " && " + item;
|
cmd += ' && ' + item;
|
||||||
} else {
|
} else {
|
||||||
cmd = item;
|
cmd = item;
|
||||||
}
|
}
|
||||||
|
@ -38,7 +38,7 @@ async function exec(opts: ExecOption): Promise<string> {
|
||||||
log.error(`exec error: ${error}`);
|
log.error(`exec error: ${error}`);
|
||||||
reject(error);
|
reject(error);
|
||||||
} else {
|
} else {
|
||||||
const res = stdout.toString("utf-8");
|
const res = stdout.toString('utf-8');
|
||||||
log.info(`stdout: ${res}`);
|
log.info(`stdout: ${res}`);
|
||||||
resolve(res);
|
resolve(res);
|
||||||
}
|
}
|
||||||
|
@ -55,13 +55,31 @@ export type SpawnOption = {
|
||||||
logger?: ILogger;
|
logger?: ILogger;
|
||||||
options?: any;
|
options?: any;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
function isWindows() {
|
||||||
|
return process.platform === 'win32';
|
||||||
|
}
|
||||||
|
function convert(buffer: any) {
|
||||||
|
if (isWindows()) {
|
||||||
|
const decoded = iconv.decode(buffer, 'GBK');
|
||||||
|
// 检查是否有有效字符
|
||||||
|
return decoded && decoded.trim().length > 0 ? decoded : buffer.toString();
|
||||||
|
} else {
|
||||||
|
return buffer;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// function convert(buffer: any) {
|
||||||
|
// return buffer;
|
||||||
|
// }
|
||||||
|
|
||||||
async function spawn(opts: SpawnOption): Promise<string> {
|
async function spawn(opts: SpawnOption): Promise<string> {
|
||||||
let cmd = "";
|
let cmd = '';
|
||||||
const log = opts.logger || logger;
|
const log = opts.logger || logger;
|
||||||
if (opts.cmd instanceof Array) {
|
if (opts.cmd instanceof Array) {
|
||||||
for (const item of opts.cmd) {
|
for (const item of opts.cmd) {
|
||||||
if (cmd) {
|
if (cmd) {
|
||||||
cmd += " && " + item;
|
cmd += ' && ' + item;
|
||||||
} else {
|
} else {
|
||||||
cmd = item;
|
cmd = item;
|
||||||
}
|
}
|
||||||
|
@ -70,8 +88,8 @@ async function spawn(opts: SpawnOption): Promise<string> {
|
||||||
cmd = opts.cmd;
|
cmd = opts.cmd;
|
||||||
}
|
}
|
||||||
log.info(`执行命令: ${cmd}`);
|
log.info(`执行命令: ${cmd}`);
|
||||||
let stdout = "";
|
let stdout = '';
|
||||||
let stderr = "";
|
let stderr = '';
|
||||||
return safePromise((resolve, reject) => {
|
return safePromise((resolve, reject) => {
|
||||||
const ls = childProcess.spawn(cmd, {
|
const ls = childProcess.spawn(cmd, {
|
||||||
shell: true,
|
shell: true,
|
||||||
|
@ -81,21 +99,23 @@ async function spawn(opts: SpawnOption): Promise<string> {
|
||||||
},
|
},
|
||||||
...opts.options,
|
...opts.options,
|
||||||
});
|
});
|
||||||
ls.stdout.on("data", (data) => {
|
ls.stdout.on('data', data => {
|
||||||
|
data = convert(data);
|
||||||
log.info(`stdout: ${data}`);
|
log.info(`stdout: ${data}`);
|
||||||
stdout += data;
|
stdout += data;
|
||||||
});
|
});
|
||||||
|
|
||||||
ls.stderr.on("data", (data) => {
|
ls.stderr.on('data', data => {
|
||||||
log.error(`stderr: ${data}`);
|
data = convert(data);
|
||||||
|
log.warn(`stderr: ${data}`);
|
||||||
stderr += data;
|
stderr += data;
|
||||||
});
|
});
|
||||||
ls.on("error", (error) => {
|
ls.on('error', error => {
|
||||||
log.error(`child process error: ${error}`);
|
log.error(`child process error: ${error}`);
|
||||||
reject(error);
|
reject(error);
|
||||||
});
|
});
|
||||||
|
|
||||||
ls.on("close", (code: number) => {
|
ls.on('close', (code: number) => {
|
||||||
if (code !== 0) {
|
if (code !== 0) {
|
||||||
log.error(`child process exited with code ${code}`);
|
log.error(`child process exited with code ${code}`);
|
||||||
reject(new Error(stderr));
|
reject(new Error(stderr));
|
||||||
|
|
|
@ -30,7 +30,7 @@ export type CertInfo = {
|
||||||
ic?: string;
|
ic?: string;
|
||||||
pfx?: string;
|
pfx?: string;
|
||||||
der?: string;
|
der?: string;
|
||||||
p12?: string;
|
jks?: string;
|
||||||
};
|
};
|
||||||
export type SSLProvider = "letsencrypt" | "google" | "zerossl";
|
export type SSLProvider = "letsencrypt" | "google" | "zerossl";
|
||||||
export type PrivateKeyType = "rsa_1024" | "rsa_2048" | "rsa_3072" | "rsa_4096" | "ec_256" | "ec_384" | "ec_521";
|
export type PrivateKeyType = "rsa_1024" | "rsa_2048" | "rsa_3072" | "rsa_4096" | "ec_256" | "ec_384" | "ec_521";
|
||||||
|
|
|
@ -55,7 +55,7 @@ export abstract class CertApplyBasePlugin extends AbstractTaskPlugin {
|
||||||
},
|
},
|
||||||
required: false,
|
required: false,
|
||||||
order: 100,
|
order: 100,
|
||||||
helper: "PFX、P12格式证书是否需要加密",
|
helper: "PFX、jks格式证书是否加密;jks必须设置密码,不传则默认123456",
|
||||||
})
|
})
|
||||||
pfxPassword!: string;
|
pfxPassword!: string;
|
||||||
|
|
||||||
|
@ -150,7 +150,7 @@ export abstract class CertApplyBasePlugin extends AbstractTaskPlugin {
|
||||||
}
|
}
|
||||||
this._result.pipelinePrivateVars.cert = cert;
|
this._result.pipelinePrivateVars.cert = cert;
|
||||||
|
|
||||||
if (cert.pfx == null || cert.der == null || cert.p12 == null) {
|
if (cert.pfx == null || cert.der == null || cert.jks == null) {
|
||||||
try {
|
try {
|
||||||
const converter = new CertConverter({ logger: this.logger });
|
const converter = new CertConverter({ logger: this.logger });
|
||||||
const res = await converter.convert({
|
const res = await converter.convert({
|
||||||
|
@ -160,16 +160,19 @@ export abstract class CertApplyBasePlugin extends AbstractTaskPlugin {
|
||||||
if (res.pfxPath) {
|
if (res.pfxPath) {
|
||||||
const pfxBuffer = fs.readFileSync(res.pfxPath);
|
const pfxBuffer = fs.readFileSync(res.pfxPath);
|
||||||
cert.pfx = pfxBuffer.toString("base64");
|
cert.pfx = pfxBuffer.toString("base64");
|
||||||
|
fs.unlinkSync(res.pfxPath);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (res.derPath) {
|
if (res.derPath) {
|
||||||
const derBuffer = fs.readFileSync(res.derPath);
|
const derBuffer = fs.readFileSync(res.derPath);
|
||||||
cert.der = derBuffer.toString("base64");
|
cert.der = derBuffer.toString("base64");
|
||||||
|
fs.unlinkSync(res.derPath);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (res.p12Path) {
|
if (res.jksPath) {
|
||||||
const p12Buffer = fs.readFileSync(res.p12Path);
|
const jksBuffer = fs.readFileSync(res.jksPath);
|
||||||
cert.p12 = p12Buffer.toString("base64");
|
cert.jks = jksBuffer.toString("base64");
|
||||||
|
fs.unlinkSync(res.jksPath);
|
||||||
}
|
}
|
||||||
|
|
||||||
this.logger.info("转换证书格式成功");
|
this.logger.info("转换证书格式成功");
|
||||||
|
@ -202,8 +205,8 @@ export abstract class CertApplyBasePlugin extends AbstractTaskPlugin {
|
||||||
if (cert.der) {
|
if (cert.der) {
|
||||||
zip.file("cert.der", Buffer.from(cert.der, "base64"));
|
zip.file("cert.der", Buffer.from(cert.der, "base64"));
|
||||||
}
|
}
|
||||||
if (cert.p12) {
|
if (cert.jks) {
|
||||||
zip.file("cert.p12", Buffer.from(cert.p12, "base64"));
|
zip.file("cert.jks", Buffer.from(cert.jks, "base64"));
|
||||||
}
|
}
|
||||||
const content = await zip.generateAsync({ type: "nodebuffer" });
|
const content = await zip.generateAsync({ type: "nodebuffer" });
|
||||||
this.saveFile(filename, content);
|
this.saveFile(filename, content);
|
||||||
|
|
|
@ -13,6 +13,7 @@ export type CertReaderHandleContext = {
|
||||||
tmpPfxPath?: string;
|
tmpPfxPath?: string;
|
||||||
tmpDerPath?: string;
|
tmpDerPath?: string;
|
||||||
tmpIcPath?: string;
|
tmpIcPath?: string;
|
||||||
|
tmpJksPath?: string;
|
||||||
};
|
};
|
||||||
export type CertReaderHandle = (ctx: CertReaderHandleContext) => Promise<void>;
|
export type CertReaderHandle = (ctx: CertReaderHandleContext) => Promise<void>;
|
||||||
export type HandleOpts = { logger: ILogger; handle: CertReaderHandle };
|
export type HandleOpts = { logger: ILogger; handle: CertReaderHandle };
|
||||||
|
@ -72,14 +73,14 @@ export class CertReader {
|
||||||
return domains;
|
return domains;
|
||||||
}
|
}
|
||||||
|
|
||||||
saveToFile(type: "crt" | "key" | "pfx" | "der" | "ic", filepath?: string) {
|
saveToFile(type: "crt" | "key" | "pfx" | "der" | "ic" | "jks", filepath?: string) {
|
||||||
if (!this.cert[type]) {
|
if (!this.cert[type]) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (filepath == null) {
|
if (filepath == null) {
|
||||||
//写入临时目录
|
//写入临时目录
|
||||||
filepath = path.join(os.tmpdir(), "/certd/tmp/", Math.floor(Math.random() * 1000000) + "", `cert.${type}`);
|
filepath = path.join(os.tmpdir(), "/certd/tmp/", Math.floor(Math.random() * 1000000) + `_cert.${type}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
const dir = path.dirname(filepath);
|
const dir = path.dirname(filepath);
|
||||||
|
@ -103,6 +104,7 @@ export class CertReader {
|
||||||
const tmpIcPath = this.saveToFile("ic");
|
const tmpIcPath = this.saveToFile("ic");
|
||||||
logger.info("本地文件写入成功");
|
logger.info("本地文件写入成功");
|
||||||
const tmpDerPath = this.saveToFile("der");
|
const tmpDerPath = this.saveToFile("der");
|
||||||
|
const tmpJksPath = this.saveToFile("jks");
|
||||||
try {
|
try {
|
||||||
return await opts.handle({
|
return await opts.handle({
|
||||||
reader: this,
|
reader: this,
|
||||||
|
@ -111,6 +113,7 @@ export class CertReader {
|
||||||
tmpPfxPath: tmpPfxPath,
|
tmpPfxPath: tmpPfxPath,
|
||||||
tmpDerPath: tmpDerPath,
|
tmpDerPath: tmpDerPath,
|
||||||
tmpIcPath: tmpIcPath,
|
tmpIcPath: tmpIcPath,
|
||||||
|
tmpJksPath: tmpJksPath,
|
||||||
});
|
});
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
throw err;
|
throw err;
|
||||||
|
@ -127,6 +130,7 @@ export class CertReader {
|
||||||
removeFile(tmpPfxPath);
|
removeFile(tmpPfxPath);
|
||||||
removeFile(tmpDerPath);
|
removeFile(tmpDerPath);
|
||||||
removeFile(tmpIcPath);
|
removeFile(tmpIcPath);
|
||||||
|
removeFile(tmpJksPath);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -17,12 +17,12 @@ export class CertConverter {
|
||||||
async convert(opts: { cert: CertInfo; pfxPassword: string }): Promise<{
|
async convert(opts: { cert: CertInfo; pfxPassword: string }): Promise<{
|
||||||
pfxPath: string;
|
pfxPath: string;
|
||||||
derPath: string;
|
derPath: string;
|
||||||
p12Path: string;
|
jksPath: string;
|
||||||
}> {
|
}> {
|
||||||
const certReader = new CertReader(opts.cert);
|
const certReader = new CertReader(opts.cert);
|
||||||
let pfxPath: string;
|
let pfxPath: string;
|
||||||
let derPath: string;
|
let derPath: string;
|
||||||
let p12Path: string;
|
let jksPath: string;
|
||||||
const handle = async (ctx: CertReaderHandleContext) => {
|
const handle = async (ctx: CertReaderHandleContext) => {
|
||||||
// 调用openssl 转pfx
|
// 调用openssl 转pfx
|
||||||
pfxPath = await this.convertPfx(ctx, opts.pfxPassword);
|
pfxPath = await this.convertPfx(ctx, opts.pfxPassword);
|
||||||
|
@ -30,7 +30,7 @@ export class CertConverter {
|
||||||
// 转der
|
// 转der
|
||||||
derPath = await this.convertDer(ctx);
|
derPath = await this.convertDer(ctx);
|
||||||
|
|
||||||
p12Path = await this.convertP12(ctx, opts.pfxPassword);
|
jksPath = await this.convertJks(ctx, pfxPath, opts.pfxPassword);
|
||||||
};
|
};
|
||||||
|
|
||||||
await certReader.readCertFile({ logger: this.logger, handle });
|
await certReader.readCertFile({ logger: this.logger, handle });
|
||||||
|
@ -38,11 +38,12 @@ export class CertConverter {
|
||||||
return {
|
return {
|
||||||
pfxPath,
|
pfxPath,
|
||||||
derPath,
|
derPath,
|
||||||
p12Path,
|
jksPath,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
async exec(cmd: string) {
|
async exec(cmd: string) {
|
||||||
|
process.env.LANG = "zh_CN.GBK";
|
||||||
await sp.spawn({
|
await sp.spawn({
|
||||||
cmd: cmd,
|
cmd: cmd,
|
||||||
logger: this.logger,
|
logger: this.logger,
|
||||||
|
@ -52,7 +53,7 @@ export class CertConverter {
|
||||||
private async convertPfx(opts: CertReaderHandleContext, pfxPassword: string) {
|
private async convertPfx(opts: CertReaderHandleContext, pfxPassword: string) {
|
||||||
const { tmpCrtPath, tmpKeyPath } = opts;
|
const { tmpCrtPath, tmpKeyPath } = opts;
|
||||||
|
|
||||||
const pfxPath = path.join(os.tmpdir(), "/certd/tmp/", Math.floor(Math.random() * 1000000) + "", "cert.pfx");
|
const pfxPath = path.join(os.tmpdir(), "/certd/tmp/", Math.floor(Math.random() * 1000000) + "_cert.pfx");
|
||||||
|
|
||||||
const dir = path.dirname(pfxPath);
|
const dir = path.dirname(pfxPath);
|
||||||
if (!fs.existsSync(dir)) {
|
if (!fs.existsSync(dir)) {
|
||||||
|
@ -75,7 +76,7 @@ export class CertConverter {
|
||||||
|
|
||||||
private async convertDer(opts: CertReaderHandleContext) {
|
private async convertDer(opts: CertReaderHandleContext) {
|
||||||
const { tmpCrtPath } = opts;
|
const { tmpCrtPath } = opts;
|
||||||
const derPath = path.join(os.tmpdir(), "/certd/tmp/", Math.floor(Math.random() * 1000000) + "", `cert.der`);
|
const derPath = path.join(os.tmpdir(), "/certd/tmp/", Math.floor(Math.random() * 1000000) + `_cert.der`);
|
||||||
|
|
||||||
const dir = path.dirname(derPath);
|
const dir = path.dirname(derPath);
|
||||||
if (!fs.existsSync(dir)) {
|
if (!fs.existsSync(dir)) {
|
||||||
|
@ -94,21 +95,28 @@ export class CertConverter {
|
||||||
// this.saveFile(filename, fileBuffer);
|
// this.saveFile(filename, fileBuffer);
|
||||||
}
|
}
|
||||||
|
|
||||||
async convertP12(opts: CertReaderHandleContext, pfxPassword: string) {
|
async convertJks(opts: CertReaderHandleContext, pfxPath: string, pfxPassword = "") {
|
||||||
const { tmpCrtPath, tmpKeyPath } = opts;
|
const jksPassword = pfxPassword || "123456";
|
||||||
const p12Path = path.join(os.tmpdir(), "/certd/tmp/", Math.floor(Math.random() * 1000000) + "", `cert.p12`);
|
|
||||||
|
|
||||||
const dir = path.dirname(p12Path);
|
|
||||||
if (!fs.existsSync(dir)) {
|
|
||||||
fs.mkdirSync(dir, { recursive: true });
|
|
||||||
}
|
|
||||||
try {
|
try {
|
||||||
let passwordArg = "-passout pass:";
|
const randomStr = Math.floor(Math.random() * 1000000) + "";
|
||||||
if (pfxPassword) {
|
|
||||||
passwordArg = `-password pass:${pfxPassword}`;
|
// const p12Path = path.join(os.tmpdir(), "/certd/tmp/", randomStr + `_cert.p12`);
|
||||||
|
// const { tmpCrtPath, tmpKeyPath } = opts;
|
||||||
|
// let passwordArg = "-passout pass:";
|
||||||
|
// if (pfxPassword) {
|
||||||
|
// passwordArg = `-password pass:${pfxPassword}`;
|
||||||
|
// }
|
||||||
|
// await this.exec(`openssl pkcs12 -export -in ${tmpCrtPath} -inkey ${tmpKeyPath} -out ${p12Path} -name certd ${passwordArg}`);
|
||||||
|
|
||||||
|
const jksPath = path.join(os.tmpdir(), "/certd/tmp/", randomStr + `_cert.jks`);
|
||||||
|
const dir = path.dirname(jksPath);
|
||||||
|
if (!fs.existsSync(dir)) {
|
||||||
|
fs.mkdirSync(dir, { recursive: true });
|
||||||
}
|
}
|
||||||
await this.exec(`openssl pkcs12 -export -in ${tmpCrtPath} -inkey ${tmpKeyPath} -out ${p12Path} -name certd ${passwordArg}`);
|
await this.exec(
|
||||||
return p12Path;
|
`keytool -importkeystore -srckeystore ${pfxPath} -srcstoretype PKCS12 -srcstorepass "${pfxPassword}" -destkeystore ${jksPath} -deststoretype PKCS12 -deststorepass "${jksPassword}" `
|
||||||
|
);
|
||||||
|
return jksPath;
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
this.logger.error("转换jks失败", e);
|
this.logger.error("转换jks失败", e);
|
||||||
return;
|
return;
|
||||||
|
|
|
@ -13,6 +13,7 @@ RUN cd /workspace/certd-server && pnpm install && npm run build-on-docker
|
||||||
|
|
||||||
FROM node:18-alpine
|
FROM node:18-alpine
|
||||||
RUN apk add --no-cache openssl
|
RUN apk add --no-cache openssl
|
||||||
|
RUN apk add --no-cache openjdk
|
||||||
WORKDIR /app/
|
WORKDIR /app/
|
||||||
COPY --from=builder /workspace/certd-server/ /app/
|
COPY --from=builder /workspace/certd-server/ /app/
|
||||||
RUN chmod +x /app/tools/linux/*
|
RUN chmod +x /app/tools/linux/*
|
||||||
|
|
|
@ -68,14 +68,14 @@ export class CopyCertToLocalPlugin extends AbstractTaskPlugin {
|
||||||
derPath!: string;
|
derPath!: string;
|
||||||
|
|
||||||
@TaskInput({
|
@TaskInput({
|
||||||
title: 'p12证书保存路径',
|
title: 'jks证书保存路径',
|
||||||
helper: '用于java,路径要包含文件名,例如:tmp/cert.p12',
|
helper: '用于java,路径要包含文件名,例如:tmp/cert.jks',
|
||||||
component: {
|
component: {
|
||||||
placeholder: 'tmp/cert.p12',
|
placeholder: 'tmp/cert.jks',
|
||||||
},
|
},
|
||||||
rules: [{ type: 'filepath' }],
|
rules: [{ type: 'filepath' }],
|
||||||
})
|
})
|
||||||
p12Path!: string;
|
jksPath!: string;
|
||||||
|
|
||||||
@TaskInput({
|
@TaskInput({
|
||||||
title: '域名证书',
|
title: '域名证书',
|
||||||
|
@ -119,10 +119,10 @@ export class CopyCertToLocalPlugin extends AbstractTaskPlugin {
|
||||||
hostDerPath!: string;
|
hostDerPath!: string;
|
||||||
|
|
||||||
@TaskOutput({
|
@TaskOutput({
|
||||||
title: 'P12保存路径',
|
title: 'jks保存路径',
|
||||||
type: 'HostP12Path',
|
type: 'HostJksPath',
|
||||||
})
|
})
|
||||||
hostP12Path!: string;
|
hostJksPath!: string;
|
||||||
|
|
||||||
async onInstance() {}
|
async onInstance() {}
|
||||||
|
|
||||||
|
@ -139,10 +139,10 @@ export class CopyCertToLocalPlugin extends AbstractTaskPlugin {
|
||||||
throw new Error('只有管理员才能运行此任务');
|
throw new Error('只有管理员才能运行此任务');
|
||||||
}
|
}
|
||||||
|
|
||||||
let { crtPath, keyPath, icPath, pfxPath, derPath, p12Path } = this;
|
let { crtPath, keyPath, icPath, pfxPath, derPath, jksPath } = this;
|
||||||
const certReader = new CertReader(this.cert);
|
const certReader = new CertReader(this.cert);
|
||||||
|
|
||||||
const handle = async ({ reader, tmpCrtPath, tmpKeyPath, tmpDerPath, tmpPfxPath, tmpIcPath, tmpP12Path }) => {
|
const handle = async ({ reader, tmpCrtPath, tmpKeyPath, tmpDerPath, tmpPfxPath, tmpIcPath, tmpJksPath }) => {
|
||||||
this.logger.info('复制到目标路径');
|
this.logger.info('复制到目标路径');
|
||||||
if (crtPath) {
|
if (crtPath) {
|
||||||
crtPath = crtPath.startsWith('/') ? crtPath : path.join(Constants.dataDir, crtPath);
|
crtPath = crtPath.startsWith('/') ? crtPath : path.join(Constants.dataDir, crtPath);
|
||||||
|
@ -169,10 +169,10 @@ export class CopyCertToLocalPlugin extends AbstractTaskPlugin {
|
||||||
this.copyFile(tmpDerPath, derPath);
|
this.copyFile(tmpDerPath, derPath);
|
||||||
this.hostDerPath = derPath;
|
this.hostDerPath = derPath;
|
||||||
}
|
}
|
||||||
if (p12Path) {
|
if (jksPath) {
|
||||||
p12Path = p12Path.startsWith('/') ? p12Path : path.join(Constants.dataDir, p12Path);
|
jksPath = jksPath.startsWith('/') ? jksPath : path.join(Constants.dataDir, jksPath);
|
||||||
this.copyFile(tmpP12Path, p12Path);
|
this.copyFile(tmpJksPath, jksPath);
|
||||||
this.hostP12Path = p12Path;
|
this.hostJksPath = jksPath;
|
||||||
}
|
}
|
||||||
this.logger.info('请注意,如果使用的是相对路径,那么文件就在你的数据库同级目录下,默认是/data/certd/下面');
|
this.logger.info('请注意,如果使用的是相对路径,那么文件就在你的数据库同级目录下,默认是/data/certd/下面');
|
||||||
this.logger.info(
|
this.logger.info(
|
||||||
|
|
|
@ -68,14 +68,14 @@ export class UploadCertToHostPlugin extends AbstractTaskPlugin {
|
||||||
derPath!: string;
|
derPath!: string;
|
||||||
|
|
||||||
@TaskInput({
|
@TaskInput({
|
||||||
title: 'p12证书保存路径',
|
title: 'jks证书保存路径',
|
||||||
helper: '需要有写入权限,路径要包含证书文件名,例如:/tmp/cert.p12',
|
helper: '需要有写入权限,路径要包含证书文件名,例如:/tmp/cert.jks',
|
||||||
component: {
|
component: {
|
||||||
placeholder: '/root/deploy/nginx/cert.p12',
|
placeholder: '/root/deploy/nginx/cert.jks',
|
||||||
},
|
},
|
||||||
rules: [{ type: 'filepath' }],
|
rules: [{ type: 'filepath' }],
|
||||||
})
|
})
|
||||||
p12Path!: string;
|
jksPath!: string;
|
||||||
|
|
||||||
@TaskInput({
|
@TaskInput({
|
||||||
title: '域名证书',
|
title: '域名证书',
|
||||||
|
@ -158,9 +158,9 @@ export class UploadCertToHostPlugin extends AbstractTaskPlugin {
|
||||||
})
|
})
|
||||||
hostDerPath!: string;
|
hostDerPath!: string;
|
||||||
@TaskOutput({
|
@TaskOutput({
|
||||||
title: 'P12保存路径',
|
title: 'jks保存路径',
|
||||||
})
|
})
|
||||||
hostP12Path!: string;
|
hostJksPath!: string;
|
||||||
|
|
||||||
async onInstance() {}
|
async onInstance() {}
|
||||||
|
|
||||||
|
@ -181,7 +181,7 @@ export class UploadCertToHostPlugin extends AbstractTaskPlugin {
|
||||||
const certReader = new CertReader(cert);
|
const certReader = new CertReader(cert);
|
||||||
|
|
||||||
const handle = async (opts: CertReaderHandleContext) => {
|
const handle = async (opts: CertReaderHandleContext) => {
|
||||||
const { tmpCrtPath, tmpKeyPath, tmpDerPath, tmpP12Path, tmpPfxPath, tmpIcPath } = opts;
|
const { tmpCrtPath, tmpKeyPath, tmpDerPath, tmpJksPath, tmpPfxPath, tmpIcPath } = opts;
|
||||||
// if (this.copyToThisHost) {
|
// if (this.copyToThisHost) {
|
||||||
// this.logger.info('复制到目标路径');
|
// this.logger.info('复制到目标路径');
|
||||||
// this.copyFile(tmpCrtPath, crtPath);
|
// this.copyFile(tmpCrtPath, crtPath);
|
||||||
|
@ -241,12 +241,12 @@ export class UploadCertToHostPlugin extends AbstractTaskPlugin {
|
||||||
});
|
});
|
||||||
this.logger.info(`上传DER证书到主机:${this.derPath}`);
|
this.logger.info(`上传DER证书到主机:${this.derPath}`);
|
||||||
}
|
}
|
||||||
if (this.p12Path) {
|
if (this.jksPath) {
|
||||||
transports.push({
|
transports.push({
|
||||||
localPath: tmpP12Path,
|
localPath: tmpJksPath,
|
||||||
remotePath: this.p12Path,
|
remotePath: this.jksPath,
|
||||||
});
|
});
|
||||||
this.logger.info(`上传p12证书到主机:${this.p12Path}`);
|
this.logger.info(`上传jks证书到主机:${this.jksPath}`);
|
||||||
}
|
}
|
||||||
this.logger.info('开始上传文件到服务器');
|
this.logger.info('开始上传文件到服务器');
|
||||||
await sshClient.uploadFiles({
|
await sshClient.uploadFiles({
|
||||||
|
@ -261,7 +261,7 @@ export class UploadCertToHostPlugin extends AbstractTaskPlugin {
|
||||||
this.hostIcPath = this.icPath;
|
this.hostIcPath = this.icPath;
|
||||||
this.hostPfxPath = this.pfxPath;
|
this.hostPfxPath = this.pfxPath;
|
||||||
this.hostDerPath = this.derPath;
|
this.hostDerPath = this.derPath;
|
||||||
this.hostP12Path = this.p12Path;
|
this.hostJksPath = this.jksPath;
|
||||||
};
|
};
|
||||||
|
|
||||||
await certReader.readCertFile({
|
await certReader.readCertFile({
|
||||||
|
|
Loading…
Reference in New Issue