UNPKG

url-search-params

Version:
311 lines (274 loc) 7.82 kB
/*! Copyright (C) 2015-2017 Andrea Giammarchi - @WebReflection Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 'use strict'; function URLSearchParams(query) { var index, key, value, pairs, i, length, dict = Object.create(null) ; this[secret] = dict; if (!query) return; if (typeof query === 'string') { if (query.charAt(0) === '?') { query = query.slice(1); } for ( pairs = query.split('&'), i = 0, length = pairs.length; i < length; i++ ) { value = pairs[i]; index = value.indexOf('='); if (-1 < index) { appendTo( dict, decode(value.slice(0, index)), decode(value.slice(index + 1)) ); } else if (value.length){ appendTo( dict, decode(value), '' ); } } } else { if (isArray(query)) { for ( i = 0, length = query.length; i < length; i++ ) { value = query[i]; appendTo(dict, value[0], value[1]); } } else if (query.forEach) { query.forEach(addEach, dict); } else { for (key in query) { appendTo(dict, key, query[key]); } } } } var isArray = Array.isArray, URLSearchParamsProto = URLSearchParams.prototype, find = /[!'\(\)~]|%20|%00/g, plus = /\+/g, replace = { '!': '%21', "'": '%27', '(': '%28', ')': '%29', '~': '%7E', '%20': '+', '%00': '\x00' }, replacer = function (match) { return replace[match]; }, secret = '__URLSearchParams__:' + Math.random() ; function addEach(value, key) { /* jshint validthis:true */ appendTo(this, key, value); } function appendTo(dict, name, value) { var res = isArray(value) ? value.join(',') : value; if (name in dict) dict[name].push(res); else dict[name] = [res]; } function decode(str) { return decodeURIComponent(str.replace(plus, ' ')); } function encode(str) { return encodeURIComponent(str).replace(find, replacer); } URLSearchParamsProto.append = function append(name, value) { appendTo(this[secret], name, value); }; URLSearchParamsProto.delete = function del(name) { delete this[secret][name]; }; URLSearchParamsProto.get = function get(name) { var dict = this[secret]; return name in dict ? dict[name][0] : null; }; URLSearchParamsProto.getAll = function getAll(name) { var dict = this[secret]; return name in dict ? dict[name].slice(0) : []; }; URLSearchParamsProto.has = function has(name) { return name in this[secret]; }; URLSearchParamsProto.set = function set(name, value) { this[secret][name] = ['' + value]; }; URLSearchParamsProto.forEach = function forEach(callback, thisArg) { var dict = this[secret]; Object.getOwnPropertyNames(dict).forEach(function(name) { dict[name].forEach(function(value) { callback.call(thisArg, value, name, this); }, this); }, this); }; /* URLSearchParamsProto.toBody = function() { return new Blob( [this.toString()], {type: 'application/x-www-form-urlencoded'} ); }; */ URLSearchParamsProto.toJSON = function toJSON() { return {}; }; URLSearchParamsProto.toString = function toString() { var dict = this[secret], query = [], i, key, name, value; for (key in dict) { name = encode(key); for ( i = 0, value = dict[key]; i < value.length; i++ ) { query.push(name + '=' + encode(value[i])); } } return query.join('&'); }; URLSearchParams = (module.exports = global.URLSearchParams || URLSearchParams); (function (URLSearchParamsProto) { var iterable = (function () { try { return !!Symbol.iterator; } catch(error) { return false; } }()); // mostly related to issue #24 if (!('forEach' in URLSearchParamsProto)) { URLSearchParamsProto.forEach = function forEach(callback, thisArg) { var names = Object.create(null); this.toString() .replace(/=[\s\S]*?(?:&|$)/g, '=') .split('=') .forEach(function (name) { if (!name.length || name in names) return; (names[name] = this.getAll(name)).forEach(function(value) { callback.call(thisArg, value, name, this); }, this); }, this); }; } if (!('keys' in URLSearchParamsProto)) { URLSearchParamsProto.keys = function keys() { var items = []; this.forEach(function(value, name) { items.push(name); }); var iterator = { next: function() { var value = items.shift(); return {done: value === undefined, value: value}; } }; if (iterable) { iterator[Symbol.iterator] = function() { return iterator; }; } return iterator; }; } if (!('values' in URLSearchParamsProto)) { URLSearchParamsProto.values = function values() { var items = []; this.forEach(function(value) { items.push(value); }); var iterator = { next: function() { var value = items.shift(); return {done: value === undefined, value: value}; } }; if (iterable) { iterator[Symbol.iterator] = function() { return iterator; }; } return iterator; }; } if (!('entries' in URLSearchParamsProto)) { URLSearchParamsProto.entries = function entries() { var items = []; this.forEach(function(value, name) { items.push([name, value]); }); var iterator = { next: function() { var value = items.shift(); return {done: value === undefined, value: value}; } }; if (iterable) { iterator[Symbol.iterator] = function() { return iterator; }; } return iterator; }; } if (iterable && !(Symbol.iterator in URLSearchParamsProto)) { URLSearchParamsProto[Symbol.iterator] = URLSearchParamsProto.entries; } if (!('sort' in URLSearchParamsProto)) { URLSearchParamsProto.sort = function sort() { var entries = this.entries(), entry = entries.next(), done = entry.done, keys = [], values = Object.create(null), i, key, value ; while (!done) { value = entry.value; key = value[0]; keys.push(key); if (!(key in values)) { values[key] = []; } values[key].push(value[1]); entry = entries.next(); done = entry.done; } // not the champion in efficiency // but these two bits just do the job keys.sort(); for (i = 0; i < keys.length; i++) { this.delete(keys[i]); } for (i = 0; i < keys.length; i++) { key = keys[i]; this.append(key, values[key].shift()); } }; } }(URLSearchParams.prototype));