insomnia/app/network/url-matches-cert-host.js
Gregory Schier f76e382387 Revamp Keyboard Shortcuts (#487)
* More shortcuts and accessibility tweaks

* Use hotkey objects everywhere

* A few last-minute tweaks
2017-09-17 16:04:56 +02:00

23 lines
778 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 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, '.*');
if (assumedCPort !== assumedPort) {
return false;
}
return !!(hostname || '').match(`^${cHostnameRegex}$`);
}