insomnia/app/backend/querystring.js

75 lines
1.4 KiB
JavaScript
Raw Normal View History

2016-09-21 00:03:26 +00:00
'use strict';
2016-09-21 00:03:26 +00:00
module.exports.getJoiner = url => {
2016-07-14 22:48:56 +00:00
url = url || '';
return url.indexOf('?') === -1 ? '?' : '&';
2016-09-21 00:03:26 +00:00
};
2016-07-14 22:48:56 +00:00
2016-09-21 00:03:26 +00:00
module.exports.joinURL = (url, qs) => {
if (!qs) {
return url;
}
2016-07-14 22:48:56 +00:00
url = url || '';
2016-09-21 00:03:26 +00:00
return url + module.exports.getJoiner(url) + qs;
};
2016-07-14 22:48:56 +00:00
2016-09-21 00:03:26 +00:00
module.exports.build = (param, strict = true) => {
// Skip non-name ones in strict mode
if (strict && !param.name) {
return '';
}
2016-07-14 22:48:56 +00:00
if (!strict || param.value) {
2016-07-14 22:48:56 +00:00
return encodeURIComponent(param.name) + '=' + encodeURIComponent(param.value);
} else {
return encodeURIComponent(param.name);
}
2016-09-21 00:03:26 +00:00
};
2016-07-14 22:48:56 +00:00
/**
*
* @param parameters
* @param strict allow empty names and values
* @returns {string}
*/
2016-09-21 00:03:26 +00:00
module.exports.buildFromParams = (parameters, strict = true) => {
2016-07-20 23:16:28 +00:00
let items = [];
for (var i = 0; i < parameters.length; i++) {
2016-09-21 00:03:26 +00:00
let built = module.exports.build(parameters[i], 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-09-21 00:03:26 +00:00
};
/**
*
* @param qs
* @param strict allow empty names and values
* @returns {Array}
*/
2016-09-21 00:03:26 +00:00
module.exports.deconstructToParams = (qs, strict = true) => {
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-09-21 00:03:26 +00:00
};