Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: simplify http client #35

Merged
merged 1 commit into from
Apr 9, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
63 changes: 16 additions & 47 deletions src/http.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,22 @@ class HTTP {
throw new HTTPError(response)
}

response.ndjson = async function * () {
const it = streamToAsyncIterator(response.body)

if (!isAsyncIterator(it)) {
throw new Error('Can\'t convert fetch body into a Async Iterator:')
}

for await (const chunk of ndjson(it)) {
if (options.transform) {
yield options.transform(chunk)
} else {
yield chunk
}
}
}

return response
}

Expand Down Expand Up @@ -183,52 +199,6 @@ class HTTP {
options (resource, options = {}) {
return this.fetch(resource, merge(this.opts, options, { method: 'OPTIONS' }))
}

/**
* @param {string | URL | Request} resource
* @param {APIOptions} options
* @returns {Promise<ReadableStream<Uint8Array>>}
*/
async stream (resource, options = {}) {
const res = await this.fetch(resource, merge(this.opts, options))

return res.body
}

/**
* @param {string | URL | Request} resource
* @param {APIOptions} options
* @returns {AsyncGenerator<Uint8Array, void, any>}
*/
async * iterator (resource, options = {}) {
const res = await this.fetch(resource, merge(this.opts, options))
const it = streamToAsyncIterator(res.body)

if (!isAsyncIterator(it)) {
throw new Error('Can\'t convert fetch body into a Async Iterator:')
}

for await (const chunk of it) {
yield chunk
}
}

/**
* @param {string | URL | Request} resource
* @param {APIOptions} options
* @returns {AsyncGenerator<Object, void, any>}
*/
ndjson (resource, options = {}) {
const source = ndjson(this.iterator(resource, merge(this.opts, options)))
if (options.transform) {
return (async function * () {
for await (const chunk of source) {
yield options.transform(chunk)
}
})()
}
return source
}
}

/**
Expand Down Expand Up @@ -309,7 +279,6 @@ const isAsyncIterator = (obj) => {

HTTP.HTTPError = HTTPError
HTTP.TimeoutError = TimeoutError
HTTP.ndjson = ndjson
HTTP.streamToAsyncIterator = streamToAsyncIterator

/**
Expand Down
11 changes: 11 additions & 0 deletions test/http.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ const toStream = require('it-to-stream')
const delay = require('delay')
const AbortController = require('abort-controller')
const drain = require('it-drain')
const all = require('it-all')
const { isBrowser, isWebWorker } = require('../src/env')

describe('http', function () {
Expand All @@ -27,6 +28,16 @@ describe('http', function () {
await expect(res).to.eventually.be.rejectedWith(/aborted/)
})

it('parses the response as ndjson', async function () {
const res = await HTTP.post('http://localhost:3000', {
body: '{}\n{}'
})

const entities = await all(res.ndjson())

expect(entities).to.deep.equal([{}, {}])
})

it.skip('should handle errors in streaming bodies', async function () {
if (isBrowser || isWebWorker) {
// streaming bodies not supported by browsers
Expand Down