mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
19 lines
751 B
JavaScript
19 lines
751 B
JavaScript
import {parse as urlParse} from 'url';
|
|
import certificateUrlParse from './certificate-url-parse';
|
|
import {escapeRegex, setDefaultProtocol} from '../common/misc';
|
|
|
|
const DEFAULT_PORT = 443;
|
|
|
|
export default function urlMatchesCertHost (certificateHost, requestUrl) {
|
|
const cHostWithProtocol = setDefaultProtocol(certificateHost, 'https:');
|
|
const {hostname, port} = urlParse(requestUrl);
|
|
const {hostname: cHostname, port: cPort} = certificateUrlParse(cHostWithProtocol);
|
|
|
|
const assumedPort = parseInt(port) || DEFAULT_PORT;
|
|
const assumedCPort = parseInt(cPort) || DEFAULT_PORT;
|
|
|
|
const cHostnameRegex = escapeRegex(cHostname || '').replace(/\\\*/g, '.*');
|
|
|
|
return (assumedCPort === assumedPort && !!hostname.match(`^${cHostnameRegex}$`));
|
|
}
|