2018-01-26 10:19:43 +00:00
|
|
|
// @flow
|
|
|
|
|
|
|
|
import { parseStandardURIString } from '../base/util';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Normalizes a URL entered by the user.
|
|
|
|
* FIXME: Consider adding this to base/util/uri.
|
|
|
|
*
|
|
|
|
* @param {string} url - The URL to validate.
|
|
|
|
* @returns {string|null} - The normalized URL, or null if the URL is invalid.
|
|
|
|
*/
|
|
|
|
export function normalizeUserInputURL(url: string) {
|
|
|
|
/* eslint-disable no-param-reassign */
|
|
|
|
|
|
|
|
if (url) {
|
|
|
|
url = url.replace(/\s/g, '').toLowerCase();
|
2018-02-26 16:14:46 +00:00
|
|
|
|
2018-01-26 10:19:43 +00:00
|
|
|
const urlRegExp = new RegExp('^(\\w+://)?(.+)$');
|
|
|
|
const urlComponents = urlRegExp.exec(url);
|
|
|
|
|
|
|
|
if (!urlComponents[1] || !urlComponents[1].startsWith('http')) {
|
|
|
|
url = `https://${urlComponents[2]}`;
|
|
|
|
}
|
|
|
|
|
2018-02-26 16:14:46 +00:00
|
|
|
const parsedURI = parseStandardURIString(url);
|
2018-01-26 10:19:43 +00:00
|
|
|
|
|
|
|
if (!parsedURI.host) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return parsedURI.toString();
|
|
|
|
}
|
|
|
|
|
|
|
|
return url;
|
|
|
|
|
|
|
|
/* eslint-enable no-param-reassign */
|
|
|
|
}
|