2020-01-02 15:13:47 -05:00
|
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2019-09-02 17:07:11 -04:00
|
|
|
|
import * as blob from "./blob.ts";
|
|
|
|
|
import * as domFile from "./dom_file.ts";
|
2020-03-05 07:05:41 -05:00
|
|
|
|
import { DomIterableMixin } from "./dom_iterable.ts";
|
2020-03-11 10:49:53 -04:00
|
|
|
|
import { requiredArguments } from "./util.ts";
|
2018-11-04 13:05:02 -05:00
|
|
|
|
|
|
|
|
|
const dataSymbol = Symbol("data");
|
|
|
|
|
|
|
|
|
|
class FormDataBase {
|
2020-04-14 09:23:07 -04:00
|
|
|
|
[dataSymbol]: Array<[string, FormDataEntryValue]> = [];
|
2018-11-04 13:05:02 -05:00
|
|
|
|
|
|
|
|
|
append(name: string, value: string): void;
|
2020-04-05 15:49:04 -04:00
|
|
|
|
append(name: string, value: domFile.DomFileImpl): void;
|
2018-11-04 13:05:02 -05:00
|
|
|
|
append(name: string, value: blob.DenoBlob, filename?: string): void;
|
2020-04-05 15:49:04 -04:00
|
|
|
|
append(
|
|
|
|
|
name: string,
|
|
|
|
|
value: string | blob.DenoBlob | domFile.DomFileImpl,
|
|
|
|
|
filename?: string
|
|
|
|
|
): void {
|
2018-12-26 21:12:55 -05:00
|
|
|
|
requiredArguments("FormData.append", arguments.length, 2);
|
|
|
|
|
name = String(name);
|
2020-04-05 15:49:04 -04:00
|
|
|
|
if (value instanceof domFile.DomFileImpl) {
|
|
|
|
|
this[dataSymbol].push([name, value]);
|
|
|
|
|
} else if (value instanceof blob.DenoBlob) {
|
2020-05-28 09:02:00 -04:00
|
|
|
|
const dfile = new domFile.DomFileImpl([value], filename || "blob", {
|
2020-03-28 13:03:49 -04:00
|
|
|
|
type: value.type,
|
2020-03-17 02:32:43 -04:00
|
|
|
|
});
|
2018-11-04 13:05:02 -05:00
|
|
|
|
this[dataSymbol].push([name, dfile]);
|
|
|
|
|
} else {
|
|
|
|
|
this[dataSymbol].push([name, String(value)]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
delete(name: string): void {
|
2018-12-26 21:12:55 -05:00
|
|
|
|
requiredArguments("FormData.delete", arguments.length, 1);
|
|
|
|
|
name = String(name);
|
2018-11-04 13:05:02 -05:00
|
|
|
|
let i = 0;
|
|
|
|
|
while (i < this[dataSymbol].length) {
|
|
|
|
|
if (this[dataSymbol][i][0] === name) {
|
|
|
|
|
this[dataSymbol].splice(i, 1);
|
|
|
|
|
} else {
|
|
|
|
|
i++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-14 09:23:07 -04:00
|
|
|
|
getAll(name: string): FormDataEntryValue[] {
|
2018-12-26 21:12:55 -05:00
|
|
|
|
requiredArguments("FormData.getAll", arguments.length, 1);
|
|
|
|
|
name = String(name);
|
2018-11-04 13:05:02 -05:00
|
|
|
|
const values = [];
|
|
|
|
|
for (const entry of this[dataSymbol]) {
|
|
|
|
|
if (entry[0] === name) {
|
|
|
|
|
values.push(entry[1]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return values;
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-14 09:23:07 -04:00
|
|
|
|
get(name: string): FormDataEntryValue | null {
|
2018-12-26 21:12:55 -05:00
|
|
|
|
requiredArguments("FormData.get", arguments.length, 1);
|
|
|
|
|
name = String(name);
|
2018-11-04 13:05:02 -05:00
|
|
|
|
for (const entry of this[dataSymbol]) {
|
|
|
|
|
if (entry[0] === name) {
|
|
|
|
|
return entry[1];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
has(name: string): boolean {
|
2018-12-26 21:12:55 -05:00
|
|
|
|
requiredArguments("FormData.has", arguments.length, 1);
|
|
|
|
|
name = String(name);
|
2019-04-21 16:40:10 -04:00
|
|
|
|
return this[dataSymbol].some((entry): boolean => entry[0] === name);
|
2018-11-04 13:05:02 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
set(name: string, value: string): void;
|
2020-04-05 15:49:04 -04:00
|
|
|
|
set(name: string, value: domFile.DomFileImpl): void;
|
2018-11-04 13:05:02 -05:00
|
|
|
|
set(name: string, value: blob.DenoBlob, filename?: string): void;
|
2020-04-05 15:49:04 -04:00
|
|
|
|
set(
|
|
|
|
|
name: string,
|
|
|
|
|
value: string | blob.DenoBlob | domFile.DomFileImpl,
|
|
|
|
|
filename?: string
|
|
|
|
|
): void {
|
2018-12-26 21:12:55 -05:00
|
|
|
|
requiredArguments("FormData.set", arguments.length, 2);
|
|
|
|
|
name = String(name);
|
|
|
|
|
|
|
|
|
|
// If there are any entries in the context object’s entry list whose name
|
|
|
|
|
// is name, replace the first such entry with entry and remove the others
|
|
|
|
|
let found = false;
|
|
|
|
|
let i = 0;
|
|
|
|
|
while (i < this[dataSymbol].length) {
|
|
|
|
|
if (this[dataSymbol][i][0] === name) {
|
|
|
|
|
if (!found) {
|
2020-04-05 15:49:04 -04:00
|
|
|
|
if (value instanceof domFile.DomFileImpl) {
|
|
|
|
|
this[dataSymbol][i][1] = value;
|
|
|
|
|
} else if (value instanceof blob.DenoBlob) {
|
2020-05-28 09:02:00 -04:00
|
|
|
|
const dfile = new domFile.DomFileImpl([value], filename || "blob", {
|
2020-03-28 13:03:49 -04:00
|
|
|
|
type: value.type,
|
2020-03-17 02:32:43 -04:00
|
|
|
|
});
|
2018-12-26 21:12:55 -05:00
|
|
|
|
this[dataSymbol][i][1] = dfile;
|
|
|
|
|
} else {
|
|
|
|
|
this[dataSymbol][i][1] = String(value);
|
|
|
|
|
}
|
|
|
|
|
found = true;
|
|
|
|
|
} else {
|
|
|
|
|
this[dataSymbol].splice(i, 1);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
i++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Otherwise, append entry to the context object’s entry list.
|
|
|
|
|
if (!found) {
|
2020-04-05 15:49:04 -04:00
|
|
|
|
if (value instanceof domFile.DomFileImpl) {
|
|
|
|
|
this[dataSymbol].push([name, value]);
|
|
|
|
|
} else if (value instanceof blob.DenoBlob) {
|
2020-05-28 09:02:00 -04:00
|
|
|
|
const dfile = new domFile.DomFileImpl([value], filename || "blob", {
|
2020-03-28 13:03:49 -04:00
|
|
|
|
type: value.type,
|
2020-03-17 02:32:43 -04:00
|
|
|
|
});
|
2018-12-26 21:12:55 -05:00
|
|
|
|
this[dataSymbol].push([name, dfile]);
|
|
|
|
|
} else {
|
|
|
|
|
this[dataSymbol].push([name, String(value)]);
|
|
|
|
|
}
|
2018-11-04 13:05:02 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
2019-04-03 08:41:05 -04:00
|
|
|
|
|
|
|
|
|
get [Symbol.toStringTag](): string {
|
|
|
|
|
return "FormData";
|
|
|
|
|
}
|
2018-11-04 13:05:02 -05:00
|
|
|
|
}
|
|
|
|
|
|
2020-04-14 09:23:07 -04:00
|
|
|
|
export class FormDataImpl extends DomIterableMixin<
|
2018-11-04 13:05:02 -05:00
|
|
|
|
string,
|
2020-04-14 09:23:07 -04:00
|
|
|
|
FormDataEntryValue,
|
2018-11-04 13:05:02 -05:00
|
|
|
|
typeof FormDataBase
|
2018-12-24 11:18:01 -05:00
|
|
|
|
>(FormDataBase, dataSymbol) {}
|
2020-05-31 16:07:24 -04:00
|
|
|
|
|
|
|
|
|
Object.defineProperty(FormDataImpl, "name", {
|
|
|
|
|
value: "FormData",
|
|
|
|
|
configurable: true,
|
|
|
|
|
});
|