mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 06:39:48 +00:00
1d45367aa1
* Fixed duplication kve bug * Added semistandard and updated code * Actually got it working * Even better * I think it should work on Windows now
121 lines
2.7 KiB
JavaScript
121 lines
2.7 KiB
JavaScript
import * as util from './misc.js';
|
|
|
|
/** Join a URL with a querystring */
|
|
export function joinUrl (url, qs) {
|
|
if (!qs) {
|
|
return url;
|
|
}
|
|
|
|
const [base, ...hashes] = url.split('#');
|
|
|
|
// TODO: Make this work with URLs that have a #hash component
|
|
const baseUrl = base || '';
|
|
const joiner = getJoiner(base);
|
|
const hash = hashes.length ? `#${hashes.join('#')}` : '';
|
|
return `${baseUrl}${joiner}${qs}${hash}`;
|
|
}
|
|
|
|
export function extractFromUrl (url) {
|
|
// NOTE: This only splits on first ? sign. '1=2=3' --> ['1', '2=3']
|
|
const things = url.split('?');
|
|
if (things.length === 1) {
|
|
return '';
|
|
} else {
|
|
const qsWithHash = things.slice(1).join('?');
|
|
return qsWithHash.replace(/#.*/, '');
|
|
}
|
|
}
|
|
|
|
export function getJoiner (url) {
|
|
url = url || '';
|
|
return url.indexOf('?') === -1 ? '?' : '&';
|
|
}
|
|
|
|
/** Build a querystring param out of a name/value pair */
|
|
export function build (param, strict = true) {
|
|
// Skip non-name ones in strict mode
|
|
if (strict && !param.name) {
|
|
return '';
|
|
}
|
|
|
|
// Cast number values to strings
|
|
if (typeof param.value === 'number') {
|
|
param.value += '';
|
|
}
|
|
|
|
if (!strict || param.value) {
|
|
// Don't encode ',' in values
|
|
const value = util.flexibleEncodeComponent(param.value || '').replace(/%2C/gi, ',');
|
|
const name = util.flexibleEncodeComponent(param.name || '');
|
|
|
|
return `${name}=${value}`;
|
|
} else {
|
|
return util.flexibleEncodeComponent(param.name);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Build a querystring from a list of name/value pairs
|
|
* @param parameters
|
|
* @param strict allow empty names and values
|
|
*/
|
|
export function buildFromParams (parameters, strict = true) {
|
|
let items = [];
|
|
|
|
for (const param of parameters) {
|
|
let built = build(param, strict);
|
|
|
|
if (!built) {
|
|
continue;
|
|
}
|
|
|
|
items.push(built);
|
|
}
|
|
|
|
return items.join('&');
|
|
}
|
|
|
|
/**
|
|
* Deconstruct a querystring to name/value pairs
|
|
* @param qs
|
|
* @param strict allow empty names and values
|
|
*/
|
|
export function deconstructToParams (qs, strict = true) {
|
|
if (!qs) {
|
|
return [];
|
|
}
|
|
|
|
const stringPairs = qs.split('&');
|
|
const pairs = [];
|
|
|
|
for (let stringPair of stringPairs) {
|
|
// NOTE: This only splits on first equals sign. '1=2=3' --> ['1', '2=3']
|
|
const [encodedName, ...encodedValues] = stringPair.split('=');
|
|
const encodedValue = encodedValues.join('=');
|
|
|
|
let name = '';
|
|
try {
|
|
name = decodeURIComponent(encodedName || '');
|
|
} catch (e) {
|
|
// Just leave it
|
|
name = encodedName;
|
|
}
|
|
|
|
let value = '';
|
|
try {
|
|
value = decodeURIComponent(encodedValue || '');
|
|
} catch (e) {
|
|
// Just leave it
|
|
value = encodedValue;
|
|
}
|
|
|
|
if (strict && !name) {
|
|
continue;
|
|
}
|
|
|
|
pairs.push({name, value});
|
|
}
|
|
|
|
return pairs;
|
|
}
|