debian-mirror-gitlab/app/assets/javascripts/lib/utils/url_utility.js

177 lines
4.8 KiB
JavaScript
Raw Normal View History

2019-09-04 21:01:54 +05:30
import { join as joinPaths } from 'path';
2019-12-04 20:38:33 +05:30
// Returns a decoded url parameter value
// - Treats '+' as '%20'
function decodeUrlParameter(val) {
return decodeURIComponent(val.replace(/\+/g, '%20'));
}
2017-08-17 22:00:37 +05:30
// Returns an array containing the value(s) of the
// of the key passed as an argument
2019-10-12 21:52:04 +05:30
export function getParameterValues(sParam, url = window.location) {
const sPageURL = decodeURIComponent(new URL(url).search.substring(1));
2018-03-17 18:26:18 +05:30
return sPageURL.split('&').reduce((acc, urlParam) => {
const sParameterName = urlParam.split('=');
2017-08-17 22:00:37 +05:30
if (sParameterName[0] === sParam) {
2018-03-17 18:26:18 +05:30
acc.push(sParameterName[1].replace(/\+/g, ' '));
2016-09-13 17:45:13 +05:30
}
2018-03-17 18:26:18 +05:30
return acc;
}, []);
}
2017-08-17 22:00:37 +05:30
// @param {Object} params - url keys and value to merge
// @param {String} url
2018-03-17 18:26:18 +05:30
export function mergeUrlParams(params, url) {
2019-02-15 15:39:39 +05:30
const re = /^([^?#]*)(\?[^#]*)?(.*)/;
const merged = {};
const urlparts = url.match(re);
if (urlparts[2]) {
urlparts[2]
.substr(1)
.split('&')
.forEach(part => {
if (part.length) {
const kv = part.split('=');
2019-12-04 20:38:33 +05:30
merged[decodeUrlParameter(kv[0])] = decodeUrlParameter(kv.slice(1).join('='));
2019-02-15 15:39:39 +05:30
}
});
}
2018-03-17 18:26:18 +05:30
2019-02-15 15:39:39 +05:30
Object.assign(merged, params);
2019-01-03 12:48:30 +05:30
2019-02-15 15:39:39 +05:30
const query = Object.keys(merged)
.map(key => `${encodeURIComponent(key)}=${encodeURIComponent(merged[key])}`)
.join('&');
2018-03-17 18:26:18 +05:30
2019-02-15 15:39:39 +05:30
return `${urlparts[1]}?${query}${urlparts[3]}`;
2018-03-17 18:26:18 +05:30
}
2019-03-02 22:35:43 +05:30
/**
* Removes specified query params from the url by returning a new url string that no longer
* includes the param/value pair. If no url is provided, `window.location.href` is used as
* the default value.
*
* @param {string[]} params - the query param names to remove
* @param {string} [url=windowLocation().href] - url from which the query param will be removed
* @returns {string} A copy of the original url but without the query param
*/
export function removeParams(params, url = window.location.href) {
const [rootAndQuery, fragment] = url.split('#');
const [root, query] = rootAndQuery.split('?');
if (!query) {
return url;
}
2018-03-17 18:26:18 +05:30
2019-03-02 22:35:43 +05:30
const encodedParams = params.map(param => encodeURIComponent(param));
const updatedQuery = query
.split('&')
.filter(paramPair => {
const [foundParam] = paramPair.split('=');
return encodedParams.indexOf(foundParam) < 0;
})
.join('&');
2018-03-17 18:26:18 +05:30
2019-03-02 22:35:43 +05:30
const writableQuery = updatedQuery.length > 0 ? `?${updatedQuery}` : '';
const writableFragment = fragment ? `#${fragment}` : '';
return `${root}${writableQuery}${writableFragment}`;
2018-03-17 18:26:18 +05:30
}
export function getLocationHash(url = window.location.href) {
const hashIndex = url.indexOf('#');
2017-08-17 22:00:37 +05:30
return hashIndex === -1 ? null : url.substring(hashIndex + 1);
2018-03-17 18:26:18 +05:30
}
2019-03-02 22:35:43 +05:30
/**
* Apply the fragment to the given url by returning a new url string that includes
* the fragment. If the given url already contains a fragment, the original fragment
* will be removed.
*
* @param {string} url - url to which the fragment will be applied
* @param {string} fragment - fragment to append
*/
export const setUrlFragment = (url, fragment) => {
const [rootUrl] = url.split('#');
const encodedFragment = encodeURIComponent(fragment.replace(/^#/, ''));
return `${rootUrl}#${encodedFragment}`;
};
2018-03-17 18:26:18 +05:30
export function visitUrl(url, external = false) {
if (external) {
// Simulate `target="blank" rel="noopener noreferrer"`
// See https://mathiasbynens.github.io/rel-noopener/
const otherWindow = window.open();
otherWindow.opener = null;
otherWindow.location = url;
} else {
window.location.href = url;
}
}
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
export function refreshCurrentPage() {
visitUrl(window.location.href);
}
2016-09-13 17:45:13 +05:30
2018-03-17 18:26:18 +05:30
export function redirectTo(url) {
return window.location.assign(url);
}
2018-05-09 12:01:36 +05:30
export function webIDEUrl(route = undefined) {
2018-11-08 19:23:39 +05:30
let returnUrl = `${gon.relative_url_root || ''}/-/ide/`;
2018-05-09 12:01:36 +05:30
if (route) {
2018-11-08 19:23:39 +05:30
returnUrl += `project${route.replace(new RegExp(`^${gon.relative_url_root || ''}`), '')}`;
2018-05-09 12:01:36 +05:30
}
return returnUrl;
}
2019-07-31 22:56:46 +05:30
2019-09-04 21:01:54 +05:30
/**
* Returns current base URL
*/
export function getBaseURL() {
const { protocol, host } = window.location;
return `${protocol}//${host}`;
}
/**
* Returns true if url is an absolute or root-relative URL
*
* @param {String} url
*/
export function isAbsoluteOrRootRelative(url) {
return /^(https?:)?\//.test(url);
}
/**
* Checks if the provided URL is a safe URL (absolute http(s) or root-relative URL)
*
* @param {String} url that will be checked
* @returns {Boolean}
*/
export function isSafeURL(url) {
if (!isAbsoluteOrRootRelative(url)) {
return false;
}
try {
const parsedUrl = new URL(url, getBaseURL());
return ['http:', 'https:'].includes(parsedUrl.protocol);
} catch (e) {
return false;
}
}
export function getWebSocketProtocol() {
return window.location.protocol.replace('http', 'ws');
}
export function getWebSocketUrl(path) {
return `${getWebSocketProtocol()}//${joinPaths(window.location.host, path)}`;
}
export { joinPaths };