summaryrefslogtreecommitdiff
path: root/op_crates/url/00_url.js
blob: 3409377486a79c2a9b33a51673b4be42ce5cd22c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
"use strict";

((window) => {
  const core = window.Deno.core;

  function requiredArguments(name, length, required) {
    if (length < required) {
      const errMsg = `${name} requires at least ${required} argument${
        required === 1 ? "" : "s"
      }, but only ${length} present`;
      throw new TypeError(errMsg);
    }
  }

  const paramLists = new WeakMap();
  const urls = new WeakMap();

  class URLSearchParams {
    #params = [];

    constructor(init = "") {
      if (typeof init === "string") {
        // Overload: USVString
        // If init is a string and starts with U+003F (?),
        // remove the first code point from init.
        if (init[0] == "?") {
          init = init.slice(1);
        }

        this.#params = core.opSync("op_url_parse_search_params", init);
      } else if (
        Array.isArray(init) ||
        typeof init?.[Symbol.iterator] == "function"
      ) {
        // Overload: sequence<sequence<USVString>>
        for (const pair of init) {
          // If pair does not contain exactly two items, then throw a TypeError.
          if (pair.length !== 2) {
            throw new TypeError(
              "URLSearchParams.constructor sequence argument must only contain pair elements",
            );
          }
          this.#params.push([String(pair[0]), String(pair[1])]);
        }
      } else if (Object(init) !== init) {
        // pass
      } else if (init instanceof URLSearchParams) {
        this.#params = [...init.#params];
      } else {
        // Overload: record<USVString, USVString>
        for (const key of Object.keys(init)) {
          this.#params.push([key, String(init[key])]);
        }
      }

      paramLists.set(this, this.#params);
      urls.set(this, null);
    }

    #updateUrlSearch = () => {
      const url = urls.get(this);
      if (url == null) {
        return;
      }
      const parseArgs = { href: url.href, setSearch: this.toString() };
      parts.set(url, core.opSync("op_url_parse", parseArgs));
    };

    append(name, value) {
      requiredArguments("URLSearchParams.append", arguments.length, 2);
      this.#params.push([String(name), String(value)]);
      this.#updateUrlSearch();
    }

    delete(name) {
      requiredArguments("URLSearchParams.delete", arguments.length, 1);
      name = String(name);
      let i = 0;
      while (i < this.#params.length) {
        if (this.#params[i][0] === name) {
          this.#params.splice(i, 1);
        } else {
          i++;
        }
      }
      this.#updateUrlSearch();
    }

    getAll(name) {
      requiredArguments("URLSearchParams.getAll", arguments.length, 1);
      name = String(name);
      const values = [];
      for (const entry of this.#params) {
        if (entry[0] === name) {
          values.push(entry[1]);
        }
      }

      return values;
    }

    get(name) {
      requiredArguments("URLSearchParams.get", arguments.length, 1);
      name = String(name);
      for (const entry of this.#params) {
        if (entry[0] === name) {
          return entry[1];
        }
      }

      return null;
    }

    has(name) {
      requiredArguments("URLSearchParams.has", arguments.length, 1);
      name = String(name);
      return this.#params.some((entry) => entry[0] === name);
    }

    set(name, value) {
      requiredArguments("URLSearchParams.set", arguments.length, 2);

      // If there are any name-value pairs whose name is name, in list,
      // set the value of the first such name-value pair to value
      // and remove the others.
      name = String(name);
      value = String(value);
      let found = false;
      let i = 0;
      while (i < this.#params.length) {
        if (this.#params[i][0] === name) {
          if (!found) {
            this.#params[i][1] = value;
            found = true;
            i++;
          } else {
            this.#params.splice(i, 1);
          }
        } else {
          i++;
        }
      }

      // Otherwise, append a new name-value pair whose name is name
      // and value is value, to list.
      if (!found) {
        this.#params.push([String(name), String(value)]);
      }

      this.#updateUrlSearch();
    }

    sort() {
      this.#params.sort((a, b) => (a[0] === b[0] ? 0 : a[0] > b[0] ? 1 : -1));
      this.#updateUrlSearch();
    }

    forEach(callbackfn, thisArg) {
      requiredArguments("URLSearchParams.forEach", arguments.length, 1);

      if (typeof thisArg !== "undefined") {
        callbackfn = callbackfn.bind(thisArg);
      }

      for (const [key, value] of this.#params) {
        callbackfn(value, key, this);
      }
    }

    *keys() {
      for (const [key] of this.#params) {
        yield key;
      }
    }

    *values() {
      for (const [, value] of this.#params) {
        yield value;
      }
    }

    *entries() {
      yield* this.#params;
    }

    *[Symbol.iterator]() {
      yield* this.#params;
    }

    toString() {
      return core.opSync("op_url_stringify_search_params", this.#params);
    }
  }

  const parts = new WeakMap();

  class URL {
    #searchParams = null;

    constructor(url, base) {
      new.target;

      if (url instanceof URL && base === undefined) {
        parts.set(this, parts.get(url));
      } else {
        base = base !== undefined ? String(base) : base;
        const parseArgs = { href: String(url), baseHref: base };
        parts.set(this, core.opSync("op_url_parse", parseArgs));
      }
    }

    [Symbol.for("Deno.customInspect")](inspect) {
      const object = {
        href: this.href,
        origin: this.origin,
        protocol: this.protocol,
        username: this.username,
        password: this.password,
        host: this.host,
        hostname: this.hostname,
        port: this.port,
        pathname: this.pathname,
        hash: this.hash,
        search: this.search,
      };
      return `${this.constructor.name} ${inspect(object)}`;
    }

    #updateSearchParams = () => {
      if (this.#searchParams != null) {
        const params = paramLists.get(this.#searchParams);
        const newParams = core.opSync(
          "op_url_parse_search_params",
          this.search.slice(1),
        );
        params.splice(0, params.length, ...newParams);
      }
    };

    get hash() {
      return parts.get(this).hash;
    }

    set hash(value) {
      try {
        const parseArgs = { href: this.href, setHash: String(value) };
        parts.set(this, core.opSync("op_url_parse", parseArgs));
      } catch {
        /* pass */
      }
    }

    get host() {
      return parts.get(this).host;
    }

    set host(value) {
      try {
        const parseArgs = { href: this.href, setHost: String(value) };
        parts.set(this, core.opSync("op_url_parse", parseArgs));
      } catch {
        /* pass */
      }
    }

    get hostname() {
      return parts.get(this).hostname;
    }

    set hostname(value) {
      try {
        const parseArgs = { href: this.href, setHostname: String(value) };
        parts.set(this, core.opSync("op_url_parse", parseArgs));
      } catch {
        /* pass */
      }
    }

    get href() {
      return parts.get(this).href;
    }

    set href(value) {
      try {
        const parseArgs = { href: String(value) };
        parts.set(this, core.opSync("op_url_parse", parseArgs));
      } catch {
        throw new TypeError("Invalid URL");
      }
      this.#updateSearchParams();
    }

    get origin() {
      return parts.get(this).origin;
    }

    get password() {
      return parts.get(this).password;
    }

    set password(value) {
      try {
        const parseArgs = { href: this.href, setPassword: String(value) };
        parts.set(this, core.opSync("op_url_parse", parseArgs));
      } catch {
        /* pass */
      }
    }

    get pathname() {
      return parts.get(this).pathname;
    }

    set pathname(value) {
      try {
        const parseArgs = { href: this.href, setPathname: String(value) };
        parts.set(this, core.opSync("op_url_parse", parseArgs));
      } catch {
        /* pass */
      }
    }

    get port() {
      return parts.get(this).port;
    }

    set port(value) {
      try {
        const parseArgs = { href: this.href, setPort: String(value) };
        parts.set(this, core.opSync("op_url_parse", parseArgs));
      } catch {
        /* pass */
      }
    }

    get protocol() {
      return parts.get(this).protocol;
    }

    set protocol(value) {
      try {
        const parseArgs = { href: this.href, setProtocol: String(value) };
        parts.set(this, core.opSync("op_url_parse", parseArgs));
      } catch {
        /* pass */
      }
    }

    get search() {
      return parts.get(this).search;
    }

    set search(value) {
      try {
        const parseArgs = { href: this.href, setSearch: String(value) };
        parts.set(this, core.opSync("op_url_parse", parseArgs));
        this.#updateSearchParams();
      } catch {
        /* pass */
      }
    }

    get username() {
      return parts.get(this).username;
    }

    set username(value) {
      try {
        const parseArgs = { href: this.href, setUsername: String(value) };
        parts.set(this, core.opSync("op_url_parse", parseArgs));
      } catch {
        /* pass */
      }
    }

    get searchParams() {
      if (this.#searchParams == null) {
        this.#searchParams = new URLSearchParams(this.search);
        urls.set(this.#searchParams, this);
      }
      return this.#searchParams;
    }

    toString() {
      return this.href;
    }

    toJSON() {
      return this.href;
    }
  }

  /**
   * This function implements application/x-www-form-urlencoded parsing.
   * https://url.spec.whatwg.org/#concept-urlencoded-parser
   * @param {Uint8Array} bytes
   * @returns {[string, string][]}
   */
  function parseUrlEncoded(bytes) {
    return core.opSync("op_url_parse_search_params", null, bytes);
  }

  window.__bootstrap.url = {
    URL,
    URLSearchParams,
    parseUrlEncoded,
  };
})(this);