2016-11-10 02:40:53 +00:00
|
|
|
import * as util from '../common/misc.js';
|
2016-08-15 17:04:36 +00:00
|
|
|
|
2016-11-10 02:45:43 +00:00
|
|
|
/** Join a URL with a querystring */
|
2016-10-02 20:57:00 +00:00
|
|
|
export function joinURL (url, qs) {
|
2016-07-22 20:02:17 +00:00
|
|
|
if (!qs) {
|
|
|
|
return url;
|
|
|
|
}
|
2016-11-10 02:45:43 +00:00
|
|
|
|
|
|
|
// TODO: Make this work with URLs that have a #hash component
|
2016-07-14 22:48:56 +00:00
|
|
|
url = url || '';
|
2016-10-02 20:57:00 +00:00
|
|
|
return url + getJoiner(url) + qs;
|
|
|
|
}
|
2016-07-14 22:48:56 +00:00
|
|
|
|
2016-11-10 02:45:43 +00:00
|
|
|
export function getJoiner (url) {
|
|
|
|
url = url || '';
|
|
|
|
return url.indexOf('?') === -1 ? '?' : '&';
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Build a querystring param out of a name/value pair */
|
2016-10-02 20:57:00 +00:00
|
|
|
export function build (param, strict = true) {
|
2016-07-22 20:02:17 +00:00
|
|
|
// Skip non-name ones in strict mode
|
|
|
|
if (strict && !param.name) {
|
|
|
|
return '';
|
|
|
|
}
|
2016-07-14 22:48:56 +00:00
|
|
|
|
2016-07-22 20:02:17 +00:00
|
|
|
if (!strict || param.value) {
|
2016-09-24 03:26:24 +00:00
|
|
|
const name = util.flexibleEncodeComponent(param.name || '');
|
|
|
|
const value = util.flexibleEncodeComponent(param.value || '');
|
|
|
|
return `${name}=${value}`
|
2016-07-14 22:48:56 +00:00
|
|
|
} else {
|
2016-09-24 03:26:24 +00:00
|
|
|
return util.flexibleEncodeComponent(param.name);
|
2016-07-14 22:48:56 +00:00
|
|
|
}
|
2016-10-02 20:57:00 +00:00
|
|
|
}
|
2016-07-14 22:48:56 +00:00
|
|
|
|
2016-07-22 20:02:17 +00:00
|
|
|
/**
|
2016-11-10 02:45:43 +00:00
|
|
|
* Build a querystring from a list of name/value pairs
|
2016-07-22 20:02:17 +00:00
|
|
|
* @param parameters
|
|
|
|
* @param strict allow empty names and values
|
|
|
|
*/
|
2016-10-02 20:57:00 +00:00
|
|
|
export function buildFromParams (parameters, strict = true) {
|
2016-07-20 23:16:28 +00:00
|
|
|
let items = [];
|
2016-09-24 03:26:24 +00:00
|
|
|
for (const param of parameters) {
|
2016-10-02 20:57:00 +00:00
|
|
|
let built = build(param, strict);
|
2016-07-20 23:16:28 +00:00
|
|
|
|
|
|
|
if (!built) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
items.push(built);
|
2016-07-14 22:48:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return items.join('&');
|
2016-10-02 20:57:00 +00:00
|
|
|
}
|
2016-07-22 20:02:17 +00:00
|
|
|
|
|
|
|
/**
|
2016-11-10 02:45:43 +00:00
|
|
|
* Deconstruct a querystring to name/value pairs
|
2016-07-22 20:02:17 +00:00
|
|
|
* @param qs
|
|
|
|
* @param strict allow empty names and values
|
|
|
|
*/
|
2016-10-02 20:57:00 +00:00
|
|
|
export function deconstructToParams (qs, strict = true) {
|
2016-07-22 20:02:17 +00:00
|
|
|
const stringPairs = qs.split('&');
|
|
|
|
const pairs = [];
|
|
|
|
|
|
|
|
for (let stringPair of stringPairs) {
|
|
|
|
const tmp = stringPair.split('=');
|
|
|
|
|
|
|
|
const name = decodeURIComponent(tmp[0] || '');
|
|
|
|
const value = decodeURIComponent(tmp[1] || '');
|
|
|
|
|
|
|
|
if (strict && !name) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
pairs.push({name, value});
|
|
|
|
}
|
|
|
|
|
|
|
|
return pairs;
|
2016-10-02 20:57:00 +00:00
|
|
|
}
|