@denis-kalinin/dev-certs
Version:
Managing certificates on nodejs http server
48 lines • 2.45 kB
JavaScript
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.getHttpsServerOptions = void 0;
const fs = require("fs");
const defaults = require("./defaults");
const install_1 = require("./install");
function getHttpsServerOptions(pkiConfig) {
return __awaiter(this, void 0, void 0, function* () {
const defaultPkiConfig = defaults.getPkiConfig();
const fullPkiConfig = {
ca: Object.assign(Object.assign({}, defaultPkiConfig.ca), pkiConfig === null || pkiConfig === void 0 ? void 0 : pkiConfig.ca),
cert: Object.assign(Object.assign({}, defaultPkiConfig.cert), pkiConfig === null || pkiConfig === void 0 ? void 0 : pkiConfig.cert)
};
yield (0, install_1.ensureCertificatesAreInstalled)(false, fullPkiConfig);
const httpsServerOptions = {};
try {
httpsServerOptions.ca = fs.readFileSync(defaults.caCertificatePath);
}
catch (err) {
throw new Error(`Unable to read the CA certificate file.\n${err}`);
}
try {
httpsServerOptions.cert = fs.readFileSync(`${defaults.getLocalPath(fullPkiConfig.cert.fileName)}.crt`);
}
catch (err) {
throw new Error(`Unable to read the certificate file.\n${err}`);
}
try {
httpsServerOptions.key = fs.readFileSync(`${defaults.getLocalPath(fullPkiConfig.cert.fileName)}.key`);
}
catch (err) {
throw new Error(`Unable to read the certificate key.\n${err}`);
}
return httpsServerOptions;
});
}
exports.getHttpsServerOptions = getHttpsServerOptions;
//# sourceMappingURL=httpsServerOptions.js.map