// Copyright 2018 the Deno authors. All rights reserved. MIT license. import { assert, createResolvable, notImplemented, isTypedArray } from "./util"; import * as flatbuffers from "./flatbuffers"; import { sendAsync } from "./dispatch"; import * as msg from "gen/msg_generated"; import * as domTypes from "./dom_types"; import { TextDecoder } from "./text_encoding"; import { DenoBlob } from "./blob"; import { Headers } from "./headers"; import * as io from "./io"; import { read, close } from "./files"; import { Buffer } from "./buffer"; class Body implements domTypes.Body, domTypes.ReadableStream, io.ReadCloser { bodyUsed = false; private _bodyPromise: null | Promise = null; private _data: ArrayBuffer | null = null; readonly locked: boolean = false; // TODO readonly body: null | Body = this; constructor(private rid: number, readonly contentType: string) {} private async _bodyBuffer(): Promise { assert(this._bodyPromise == null); const buf = new Buffer(); try { const nread = await buf.readFrom(this); const ui8 = buf.bytes(); assert(ui8.byteLength === nread); this._data = ui8.buffer.slice( ui8.byteOffset, ui8.byteOffset + nread ) as ArrayBuffer; assert(this._data.byteLength === nread); } finally { this.close(); } return this._data; } async arrayBuffer(): Promise { // If we've already bufferred the response, just return it. if (this._data != null) { return this._data; } // If there is no _bodyPromise yet, start it. if (this._bodyPromise == null) { this._bodyPromise = this._bodyBuffer(); } return this._bodyPromise; } async blob(): Promise { const arrayBuffer = await this.arrayBuffer(); return new DenoBlob([arrayBuffer], { type: this.contentType }); } async formData(): Promise { return notImplemented(); } // tslint:disable-next-line:no-any async json(): Promise { const text = await this.text(); return JSON.parse(text); } async text(): Promise { const ab = await this.arrayBuffer(); const decoder = new TextDecoder("utf-8"); return decoder.decode(ab); } read(p: Uint8Array): Promise { return read(this.rid, p); } close(): void { close(this.rid); } async cancel(): Promise { return notImplemented(); } getReader(): domTypes.ReadableStreamReader { return notImplemented(); } } class Response implements domTypes.Response { readonly url: string = ""; statusText = "FIXME"; // TODO readonly type = "basic"; // TODO redirected = false; // TODO headers: domTypes.Headers; readonly trailer: Promise; bodyUsed = false; readonly body: Body; constructor( readonly status: number, headersList: Array<[string, string]>, rid: number, body_: null | Body = null ) { this.trailer = createResolvable(); this.headers = new Headers(headersList); const contentType = this.headers.get("content-type") || ""; if (body_ == null) { this.body = new Body(rid, contentType); } else { this.body = body_; } } async arrayBuffer(): Promise { return this.body.arrayBuffer(); } async blob(): Promise { return this.body.blob(); } async formData(): Promise { return this.body.formData(); } // tslint:disable-next-line:no-any async json(): Promise { return this.body.json(); } async text(): Promise { return this.body.text(); } get ok(): boolean { return 200 <= this.status && this.status < 300; } clone(): domTypes.Response { if (this.bodyUsed) { throw new TypeError( "Failed to execute 'clone' on 'Response': Response body is already used" ); } const iterators = this.headers.entries(); const headersList: Array<[string, string]> = []; for (const header of iterators) { headersList.push(header); } return new Response(this.status, headersList, -1, this.body); } } function msgHttpRequest( builder: flatbuffers.Builder, url: string, method: null | string, headers: null | domTypes.Headers ): flatbuffers.Offset { const methodOffset = !method ? -1 : builder.createString(method); let fieldsOffset: flatbuffers.Offset = -1; const urlOffset = builder.createString(url); if (headers) { const kvOffsets: flatbuffers.Offset[] = []; for (const [key, val] of headers.entries()) { const keyOffset = builder.createString(key); const valOffset = builder.createString(val); msg.KeyValue.startKeyValue(builder); msg.KeyValue.addKey(builder, keyOffset); msg.KeyValue.addValue(builder, valOffset); kvOffsets.push(msg.KeyValue.endKeyValue(builder)); } fieldsOffset = msg.HttpHeader.createFieldsVector(builder, kvOffsets); } else { } msg.HttpHeader.startHttpHeader(builder); msg.HttpHeader.addIsRequest(builder, true); msg.HttpHeader.addUrl(builder, urlOffset); if (methodOffset >= 0) { msg.HttpHeader.addMethod(builder, methodOffset); } if (fieldsOffset >= 0) { msg.HttpHeader.addFields(builder, fieldsOffset); } return msg.HttpHeader.endHttpHeader(builder); } /** Fetch a resource from the network. */ export async function fetch( input: domTypes.Request | string, init?: domTypes.RequestInit ): Promise { let url: string; let method: string | null = null; let headers: domTypes.Headers | null = null; let body: ArrayBufferView | undefined; if (typeof input === "string") { url = input; if (init != null) { method = init.method || null; if (init.headers) { headers = init.headers instanceof Headers ? init.headers : new Headers(init.headers); } else { headers = null; } if (init.body) { if (typeof init.body === "string") { body = new TextEncoder().encode(init.body); } else if (isTypedArray(init.body)) { body = init.body; } else { notImplemented(); } } } } else { url = input.url; method = input.method; headers = input.headers; } // Send Fetch message const builder = flatbuffers.createBuilder(); const headerOff = msgHttpRequest(builder, url, method, headers); msg.Fetch.startFetch(builder); msg.Fetch.addHeader(builder, headerOff); const resBase = await sendAsync( builder, msg.Any.Fetch, msg.Fetch.endFetch(builder), body ); // Decode FetchRes assert(msg.Any.FetchRes === resBase.innerType()); const inner = new msg.FetchRes(); assert(resBase.inner(inner) != null); const header = inner.header()!; const bodyRid = inner.bodyRid(); assert(!header.isRequest()); const status = header.status(); const headersList = deserializeHeaderFields(header); const response = new Response(status, headersList, bodyRid); return response; } function deserializeHeaderFields(m: msg.HttpHeader): Array<[string, string]> { const out: Array<[string, string]> = []; for (let i = 0; i < m.fieldsLength(); i++) { const item = m.fields(i)!; out.push([item.key()!, item.value()!]); } return out; }