Spaces:
Sleeping
Sleeping
File size: 6,677 Bytes
cd6720a | 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 | import type { Emitter } from 'strict-event-emitter'
import { DeferredPromise } from '@open-draft/deferred-promise'
import { until } from '@open-draft/until'
import type { HttpRequestEventMap } from '../glossary'
import { emitAsync } from './emitAsync'
import { RequestController } from '../RequestController'
import {
createServerErrorResponse,
isResponseError,
isResponseLike,
} from './responseUtils'
import { InterceptorError } from '../InterceptorError'
import { isNodeLikeError } from './isNodeLikeError'
import { isObject } from './isObject'
interface HandleRequestOptions {
requestId: string
request: Request
emitter: Emitter<HttpRequestEventMap>
controller: RequestController
}
export async function handleRequest(
options: HandleRequestOptions
): Promise<void> {
const handleResponse = async (
response: Response | Error | Record<string, any>
) => {
if (response instanceof Error) {
await options.controller.errorWith(response)
return true
}
// Handle "Response.error()" instances.
if (isResponseError(response)) {
await options.controller.respondWith(response)
return true
}
/**
* Handle normal responses or response-like objects.
* @note This must come before the arbitrary object check
* since Response instances are, in fact, objects.
*/
if (isResponseLike(response)) {
await options.controller.respondWith(response)
return true
}
// Handle arbitrary objects provided to `.errorWith(reason)`.
if (isObject(response)) {
await options.controller.errorWith(response)
return true
}
return false
}
const handleResponseError = async (error: unknown): Promise<boolean> => {
// Forward the special interceptor error instances
// to the developer. These must not be handled in any way.
if (error instanceof InterceptorError) {
throw result.error
}
// Support mocking Node.js-like errors.
if (isNodeLikeError(error)) {
await options.controller.errorWith(error)
return true
}
// Handle thrown responses.
if (error instanceof Response) {
return await handleResponse(error)
}
return false
}
// Add the last "request" listener to check if the request
// has been handled in any way. If it hasn't, resolve the
// response promise with undefined.
// options.emitter.once('request', async ({ requestId: pendingRequestId }) => {
// if (
// pendingRequestId === options.requestId &&
// options.controller.readyState === RequestController.PENDING
// ) {
// await options.controller.passthrough()
// }
// })
const requestAbortPromise = new DeferredPromise<void, unknown>()
const onAbort = () => {
requestAbortPromise.reject(options.request.signal?.reason)
}
/**
* @note `signal` is not always defined in React Native.
*/
if (options.request.signal) {
if (options.request.signal.aborted) {
await options.controller.errorWith(options.request.signal.reason)
return
}
options.request.signal.addEventListener('abort', onAbort, { once: true })
}
const result = await until(async () => {
// Emit the "request" event and wait until all the listeners
// for that event are finished (e.g. async listeners awaited).
// By the end of this promise, the developer cannot affect the
// request anymore.
const requestListenersPromise = emitAsync(options.emitter, 'request', {
requestId: options.requestId,
request: options.request,
controller: options.controller,
})
await Promise.race([
// Short-circuit the request handling promise if the request gets aborted.
requestAbortPromise,
requestListenersPromise,
options.controller.handled,
])
})
options.request.signal?.removeEventListener('abort', onAbort)
// Handle the request being aborted while waiting for the request listeners.
if (requestAbortPromise.state === 'rejected') {
await options.controller.errorWith(requestAbortPromise.rejectionReason)
return
}
if (result.error) {
// Handle the error during the request listener execution.
// These can be thrown responses or request errors.
if (await handleResponseError(result.error)) {
return
}
// If the developer has added "unhandledException" listeners,
// allow them to handle the error. They can translate it to a
// mocked response, network error, or forward it as-is.
if (options.emitter.listenerCount('unhandledException') > 0) {
// Create a new request controller just for the unhandled exception case.
// This is needed because the original controller might have been already
// interacted with (e.g. "respondWith" or "errorWith" called on it).
const unhandledExceptionController = new RequestController(
options.request,
{
/**
* @note Intentionally empty passthrough handle.
* This controller is created within another controller and we only need
* to know if `unhandledException` listeners handled the request.
*/
passthrough() {},
async respondWith(response) {
await handleResponse(response)
},
async errorWith(reason) {
/**
* @note Handle the result of the unhandled controller
* in the same way as the original request controller.
* The exception here is that thrown errors within the
* "unhandledException" event do NOT result in another
* emit of the same event. They are forwarded as-is.
*/
await options.controller.errorWith(reason)
},
}
)
await emitAsync(options.emitter, 'unhandledException', {
error: result.error,
request: options.request,
requestId: options.requestId,
controller: unhandledExceptionController,
})
// If all the "unhandledException" listeners have finished
// but have not handled the request in any way, passthrough.
if (
unhandledExceptionController.readyState !== RequestController.PENDING
) {
return
}
}
// Otherwise, coerce unhandled exceptions to a 500 Internal Server Error response.
await options.controller.respondWith(
createServerErrorResponse(result.error)
)
return
}
// If the request hasn't been handled by this point, passthrough.
if (options.controller.readyState === RequestController.PENDING) {
return await options.controller.passthrough()
}
return options.controller.handled
}
|