2019-01-21 14:03:30 -05:00
|
|
|
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
2019-09-02 17:07:11 -04:00
|
|
|
|
import * as domTypes from "./dom_types.ts";
|
|
|
|
|
import * as blob from "./blob.ts";
|
|
|
|
|
import * as domFile from "./dom_file.ts";
|
|
|
|
|
import { DomIterableMixin } from "./mixins/dom_iterable.ts";
|
|
|
|
|
import { requiredArguments } from "./util.ts";
|
2018-11-04 13:05:02 -05:00
|
|
|
|
|
|
|
|
|
const dataSymbol = Symbol("data");
|
|
|
|
|
|
|
|
|
|
class FormDataBase {
|
|
|
|
|
private [dataSymbol]: Array<[string, domTypes.FormDataEntryValue]> = [];
|
|
|
|
|
|
|
|
|
|
/** Appends a new value onto an existing key inside a `FormData`
|
|
|
|
|
* object, or adds the key if it does not already exist.
|
|
|
|
|
*
|
|
|
|
|
* formData.append('name', 'first');
|
|
|
|
|
* formData.append('name', 'second');
|
|
|
|
|
*/
|
|
|
|
|
append(name: string, value: string): void;
|
|
|
|
|
append(name: string, value: blob.DenoBlob, filename?: string): void;
|
|
|
|
|
append(name: string, value: string | blob.DenoBlob, filename?: string): void {
|
2018-12-26 21:12:55 -05:00
|
|
|
|
requiredArguments("FormData.append", arguments.length, 2);
|
|
|
|
|
name = String(name);
|
2018-11-04 13:05:02 -05:00
|
|
|
|
if (value instanceof blob.DenoBlob) {
|
2018-12-27 04:45:58 -05:00
|
|
|
|
const dfile = new domFile.DenoFile([value], filename || name);
|
2018-11-04 13:05:02 -05:00
|
|
|
|
this[dataSymbol].push([name, dfile]);
|
|
|
|
|
} else {
|
|
|
|
|
this[dataSymbol].push([name, String(value)]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** Deletes a key/value pair from a `FormData` object.
|
|
|
|
|
*
|
|
|
|
|
* formData.delete('name');
|
|
|
|
|
*/
|
|
|
|
|
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++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** Returns an array of all the values associated with a given key
|
|
|
|
|
* from within a `FormData`.
|
|
|
|
|
*
|
|
|
|
|
* formData.getAll('name');
|
|
|
|
|
*/
|
|
|
|
|
getAll(name: string): domTypes.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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** Returns the first value associated with a given key from within a
|
|
|
|
|
* `FormData` object.
|
|
|
|
|
*
|
|
|
|
|
* formData.get('name');
|
|
|
|
|
*/
|
|
|
|
|
get(name: string): domTypes.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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** Returns a boolean stating whether a `FormData` object contains a
|
|
|
|
|
* certain key/value pair.
|
|
|
|
|
*
|
|
|
|
|
* formData.has('name');
|
|
|
|
|
*/
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** Sets a new value for an existing key inside a `FormData` object, or
|
|
|
|
|
* adds the key/value if it does not already exist.
|
2018-12-26 21:12:55 -05:00
|
|
|
|
* ref: https://xhr.spec.whatwg.org/#dom-formdata-set
|
2018-11-04 13:05:02 -05:00
|
|
|
|
*
|
|
|
|
|
* formData.set('name', 'value');
|
|
|
|
|
*/
|
|
|
|
|
set(name: string, value: string): void;
|
|
|
|
|
set(name: string, value: blob.DenoBlob, filename?: string): void;
|
|
|
|
|
set(name: string, value: string | blob.DenoBlob, 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) {
|
|
|
|
|
if (value instanceof blob.DenoBlob) {
|
2018-12-27 04:45:58 -05:00
|
|
|
|
const dfile = new domFile.DenoFile([value], filename || name);
|
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) {
|
|
|
|
|
if (value instanceof blob.DenoBlob) {
|
2018-12-27 04:45:58 -05:00
|
|
|
|
const dfile = new domFile.DenoFile([value], filename || name);
|
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
|
|
|
|
}
|
|
|
|
|
|
2018-12-24 11:18:01 -05:00
|
|
|
|
export class FormData extends DomIterableMixin<
|
2018-11-04 13:05:02 -05:00
|
|
|
|
string,
|
|
|
|
|
domTypes.FormDataEntryValue,
|
|
|
|
|
typeof FormDataBase
|
2018-12-24 11:18:01 -05:00
|
|
|
|
>(FormDataBase, dataSymbol) {}
|