mirror of
https://github.com/bluewave-labs/Checkmate.git
synced 2026-01-10 03:39:44 -06:00
13 lines
415 B
JavaScript
Executable File
13 lines
415 B
JavaScript
Executable File
const fetchMonitorCertificate = async (sslChecker, monitor) => {
|
|
const monitorUrl = new URL(monitor.url);
|
|
const hostname = monitorUrl.hostname;
|
|
const cert = await sslChecker(hostname);
|
|
// Throw an error if no cert or if cert.validTo is not present
|
|
if (cert?.validTo === null || cert?.validTo === undefined) {
|
|
throw new Error("Certificate not found");
|
|
}
|
|
return cert;
|
|
};
|
|
|
|
export { fetchMonitorCertificate };
|