mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
20 lines
812 B
JavaScript
20 lines
812 B
JavaScript
|
import {parse as urlParse} from 'url';
|
||
|
import certificateUrlParse from './certificate-url-parse';
|
||
|
import {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 = (cHostname || '').replace(/([.+?^=!:${}()|[\]/\\])/g, '\\$1')
|
||
|
.replace(/\*/g, '.*');
|
||
|
|
||
|
return (assumedCPort === assumedPort && !!hostname.match(`^${cHostnameRegex}$`));
|
||
|
}
|