123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449 |
- "use strict";
- const conversions = require("webidl-conversions");
- const utils = require("./utils.js");
- const impl = utils.implSymbol;
- const IteratorPrototype = Object.create(utils.IteratorPrototype, {
- next: {
- value: function next() {
- const internal = this[utils.iterInternalSymbol];
- const { target, kind, index } = internal;
- const values = Array.from(target[impl]);
- const len = values.length;
- if (index >= len) {
- return { value: undefined, done: true };
- }
- const pair = values[index];
- internal.index = index + 1;
- const [key, value] = pair.map(utils.tryWrapperForImpl);
- let result;
- switch (kind) {
- case "key":
- result = key;
- break;
- case "value":
- result = value;
- break;
- case "key+value":
- result = [key, value];
- break;
- }
- return { value: result, done: false };
- },
- writable: true,
- enumerable: true,
- configurable: true
- },
- [Symbol.toStringTag]: {
- value: "URLSearchParamsIterator",
- writable: false,
- enumerable: false,
- configurable: true
- }
- });
- function URLSearchParams() {
- const args = [];
- for (let i = 0; i < arguments.length && i < 1; ++i) {
- args[i] = arguments[i];
- }
- if (args[0] !== undefined) {
- if (utils.isObject(args[0])) {
- if (args[0][Symbol.iterator] !== undefined) {
- if (!utils.isObject(args[0])) {
- throw new TypeError(
- "Failed to construct 'URLSearchParams': parameter 1" + " sequence" + " is not an iterable object."
- );
- } else {
- const V = [];
- const tmp = args[0];
- for (let nextItem of tmp) {
- if (!utils.isObject(nextItem)) {
- throw new TypeError(
- "Failed to construct 'URLSearchParams': parameter 1" +
- " sequence" +
- "'s element" +
- " is not an iterable object."
- );
- } else {
- const V = [];
- const tmp = nextItem;
- for (let nextItem of tmp) {
- nextItem = conversions["USVString"](nextItem, {
- context:
- "Failed to construct 'URLSearchParams': parameter 1" + " sequence" + "'s element" + "'s element"
- });
- V.push(nextItem);
- }
- nextItem = V;
- }
- V.push(nextItem);
- }
- args[0] = V;
- }
- } else {
- if (!utils.isObject(args[0])) {
- throw new TypeError("Failed to construct 'URLSearchParams': parameter 1" + " record" + " is not an object.");
- } else {
- const result = Object.create(null);
- for (const key of Reflect.ownKeys(args[0])) {
- const desc = Object.getOwnPropertyDescriptor(args[0], key);
- if (desc && desc.enumerable) {
- let typedKey = key;
- let typedValue = args[0][key];
- typedKey = conversions["USVString"](typedKey, {
- context: "Failed to construct 'URLSearchParams': parameter 1" + " record" + "'s key"
- });
- typedValue = conversions["USVString"](typedValue, {
- context: "Failed to construct 'URLSearchParams': parameter 1" + " record" + "'s value"
- });
- result[typedKey] = typedValue;
- }
- }
- args[0] = result;
- }
- }
- } else {
- args[0] = conversions["USVString"](args[0], { context: "Failed to construct 'URLSearchParams': parameter 1" });
- }
- } else {
- args[0] = "";
- }
- iface.setup(this, args);
- }
- Object.defineProperty(URLSearchParams, "prototype", {
- value: URLSearchParams.prototype,
- writable: false,
- enumerable: false,
- configurable: false
- });
- Object.defineProperty(URLSearchParams.prototype, Symbol.iterator, {
- writable: true,
- enumerable: false,
- configurable: true,
- value: function entries() {
- if (!this || !module.exports.is(this)) {
- throw new TypeError("Illegal invocation");
- }
- return module.exports.createDefaultIterator(this, "key+value");
- }
- });
- URLSearchParams.prototype.forEach = function forEach(callback) {
- if (!this || !module.exports.is(this)) {
- throw new TypeError("Illegal invocation");
- }
- if (arguments.length < 1) {
- throw new TypeError(
- "Failed to execute 'forEach' on 'URLSearchParams': 1 argument required, " + "but only 0 present."
- );
- }
- if (typeof callback !== "function") {
- throw new TypeError(
- "Failed to execute 'forEach' on 'URLSearchParams': The callback provided " + "as parameter 1 is not a function."
- );
- }
- const thisArg = arguments[1];
- let pairs = Array.from(this[impl]);
- let i = 0;
- while (i < pairs.length) {
- const [key, value] = pairs[i].map(utils.tryWrapperForImpl);
- callback.call(thisArg, value, key, this);
- pairs = Array.from(this[impl]);
- i++;
- }
- };
- URLSearchParams.prototype.append = function append(name, value) {
- if (!this || !module.exports.is(this)) {
- throw new TypeError("Illegal invocation");
- }
- if (arguments.length < 2) {
- throw new TypeError(
- "Failed to execute 'append' on 'URLSearchParams': 2 " +
- "arguments required, but only " +
- arguments.length +
- " present."
- );
- }
- const args = [];
- for (let i = 0; i < arguments.length && i < 2; ++i) {
- args[i] = arguments[i];
- }
- args[0] = conversions["USVString"](args[0], {
- context: "Failed to execute 'append' on 'URLSearchParams': parameter 1"
- });
- args[1] = conversions["USVString"](args[1], {
- context: "Failed to execute 'append' on 'URLSearchParams': parameter 2"
- });
- return this[impl].append(...args);
- };
- URLSearchParams.prototype.delete = function _(name) {
- if (!this || !module.exports.is(this)) {
- throw new TypeError("Illegal invocation");
- }
- if (arguments.length < 1) {
- throw new TypeError(
- "Failed to execute 'delete' on 'URLSearchParams': 1 " +
- "argument required, but only " +
- arguments.length +
- " present."
- );
- }
- const args = [];
- for (let i = 0; i < arguments.length && i < 1; ++i) {
- args[i] = arguments[i];
- }
- args[0] = conversions["USVString"](args[0], {
- context: "Failed to execute 'delete' on 'URLSearchParams': parameter 1"
- });
- return this[impl].delete(...args);
- };
- URLSearchParams.prototype.get = function get(name) {
- if (!this || !module.exports.is(this)) {
- throw new TypeError("Illegal invocation");
- }
- if (arguments.length < 1) {
- throw new TypeError(
- "Failed to execute 'get' on 'URLSearchParams': 1 " +
- "argument required, but only " +
- arguments.length +
- " present."
- );
- }
- const args = [];
- for (let i = 0; i < arguments.length && i < 1; ++i) {
- args[i] = arguments[i];
- }
- args[0] = conversions["USVString"](args[0], { context: "Failed to execute 'get' on 'URLSearchParams': parameter 1" });
- return this[impl].get(...args);
- };
- URLSearchParams.prototype.getAll = function getAll(name) {
- if (!this || !module.exports.is(this)) {
- throw new TypeError("Illegal invocation");
- }
- if (arguments.length < 1) {
- throw new TypeError(
- "Failed to execute 'getAll' on 'URLSearchParams': 1 " +
- "argument required, but only " +
- arguments.length +
- " present."
- );
- }
- const args = [];
- for (let i = 0; i < arguments.length && i < 1; ++i) {
- args[i] = arguments[i];
- }
- args[0] = conversions["USVString"](args[0], {
- context: "Failed to execute 'getAll' on 'URLSearchParams': parameter 1"
- });
- return utils.tryWrapperForImpl(this[impl].getAll(...args));
- };
- URLSearchParams.prototype.has = function has(name) {
- if (!this || !module.exports.is(this)) {
- throw new TypeError("Illegal invocation");
- }
- if (arguments.length < 1) {
- throw new TypeError(
- "Failed to execute 'has' on 'URLSearchParams': 1 " +
- "argument required, but only " +
- arguments.length +
- " present."
- );
- }
- const args = [];
- for (let i = 0; i < arguments.length && i < 1; ++i) {
- args[i] = arguments[i];
- }
- args[0] = conversions["USVString"](args[0], { context: "Failed to execute 'has' on 'URLSearchParams': parameter 1" });
- return this[impl].has(...args);
- };
- URLSearchParams.prototype.set = function set(name, value) {
- if (!this || !module.exports.is(this)) {
- throw new TypeError("Illegal invocation");
- }
- if (arguments.length < 2) {
- throw new TypeError(
- "Failed to execute 'set' on 'URLSearchParams': 2 " +
- "arguments required, but only " +
- arguments.length +
- " present."
- );
- }
- const args = [];
- for (let i = 0; i < arguments.length && i < 2; ++i) {
- args[i] = arguments[i];
- }
- args[0] = conversions["USVString"](args[0], { context: "Failed to execute 'set' on 'URLSearchParams': parameter 1" });
- args[1] = conversions["USVString"](args[1], { context: "Failed to execute 'set' on 'URLSearchParams': parameter 2" });
- return this[impl].set(...args);
- };
- URLSearchParams.prototype.sort = function sort() {
- if (!this || !module.exports.is(this)) {
- throw new TypeError("Illegal invocation");
- }
- return this[impl].sort();
- };
- URLSearchParams.prototype.toString = function toString() {
- if (!this || !module.exports.is(this)) {
- throw new TypeError("Illegal invocation");
- }
- return this[impl].toString();
- };
- URLSearchParams.prototype.entries = URLSearchParams.prototype[Symbol.iterator];
- URLSearchParams.prototype.keys = function keys() {
- if (!this || !module.exports.is(this)) {
- throw new TypeError("Illegal invocation");
- }
- return module.exports.createDefaultIterator(this, "key");
- };
- URLSearchParams.prototype.values = function values() {
- if (!this || !module.exports.is(this)) {
- throw new TypeError("Illegal invocation");
- }
- return module.exports.createDefaultIterator(this, "value");
- };
- Object.defineProperty(URLSearchParams.prototype, Symbol.toStringTag, {
- value: "URLSearchParams",
- writable: false,
- enumerable: false,
- configurable: true
- });
- const iface = {
- mixedInto: [],
- is(obj) {
- if (obj) {
- if (obj[impl] instanceof Impl.implementation) {
- return true;
- }
- for (let i = 0; i < module.exports.mixedInto.length; ++i) {
- if (obj instanceof module.exports.mixedInto[i]) {
- return true;
- }
- }
- }
- return false;
- },
- isImpl(obj) {
- if (obj) {
- if (obj instanceof Impl.implementation) {
- return true;
- }
- const wrapper = utils.wrapperForImpl(obj);
- for (let i = 0; i < module.exports.mixedInto.length; ++i) {
- if (wrapper instanceof module.exports.mixedInto[i]) {
- return true;
- }
- }
- }
- return false;
- },
- convert(obj, { context = "The provided value" } = {}) {
- if (module.exports.is(obj)) {
- return utils.implForWrapper(obj);
- }
- throw new TypeError(`${context} is not of type 'URLSearchParams'.`);
- },
- createDefaultIterator(target, kind) {
- const iterator = Object.create(IteratorPrototype);
- Object.defineProperty(iterator, utils.iterInternalSymbol, {
- value: { target, kind, index: 0 },
- writable: false,
- enumerable: false,
- configurable: true
- });
- return iterator;
- },
- create(constructorArgs, privateData) {
- let obj = Object.create(URLSearchParams.prototype);
- obj = this.setup(obj, constructorArgs, privateData);
- return obj;
- },
- createImpl(constructorArgs, privateData) {
- let obj = Object.create(URLSearchParams.prototype);
- obj = this.setup(obj, constructorArgs, privateData);
- return utils.implForWrapper(obj);
- },
- _internalSetup(obj) {},
- setup(obj, constructorArgs, privateData) {
- if (!privateData) privateData = {};
- privateData.wrapper = obj;
- this._internalSetup(obj);
- Object.defineProperty(obj, impl, {
- value: new Impl.implementation(constructorArgs, privateData),
- writable: false,
- enumerable: false,
- configurable: true
- });
- obj[impl][utils.wrapperSymbol] = obj;
- if (Impl.init) {
- Impl.init(obj[impl], privateData);
- }
- return obj;
- },
- interface: URLSearchParams,
- expose: {
- Window: { URLSearchParams },
- Worker: { URLSearchParams }
- }
- }; // iface
- module.exports = iface;
- const Impl = require(".//URLSearchParams-impl.js");
|