braid-http 1.3.50 → 1.3.51
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/braid-http-client.js +46 -37
- package/package.json +1 -1
package/braid-http-client.js
CHANGED
|
@@ -266,9 +266,13 @@ async function braid_fetch (url, params = {}) {
|
|
|
266
266
|
// see if we should retry..
|
|
267
267
|
var retry = params.retry && // only try to reconnect if the user has chosen to
|
|
268
268
|
e.name !== "AbortError" && // don't retry if the user has chosen to abort
|
|
269
|
-
!e.
|
|
270
|
-
!
|
|
271
|
-
|
|
269
|
+
!e.dont_retry && // some errors are unlikely to be fixed by retrying
|
|
270
|
+
!cb_running // if an error is thrown in the callback,
|
|
271
|
+
// then it may not be good to reconnect, and generate more errors
|
|
272
|
+
|
|
273
|
+
// some errors can be fixed by changing something, and retrying right away,
|
|
274
|
+
// for instance, for a duplicate multiplexer request id
|
|
275
|
+
if (e.dont_wait) waitTime = 0
|
|
272
276
|
|
|
273
277
|
if (retry && !original_signal?.aborted) {
|
|
274
278
|
// retry after some time..
|
|
@@ -278,7 +282,7 @@ async function braid_fetch (url, params = {}) {
|
|
|
278
282
|
} else {
|
|
279
283
|
// if we would have retried except that original_signal?.aborted,
|
|
280
284
|
// then we want to return that as the error..
|
|
281
|
-
if (retry && original_signal?.aborted) e =
|
|
285
|
+
if (retry && original_signal?.aborted) e = create_error('already aborted', {name: 'AbortError'})
|
|
282
286
|
|
|
283
287
|
// let people know things are shutting down..
|
|
284
288
|
subscription_counts_on_close?.()
|
|
@@ -288,7 +292,7 @@ async function braid_fetch (url, params = {}) {
|
|
|
288
292
|
}
|
|
289
293
|
|
|
290
294
|
try {
|
|
291
|
-
if (original_signal?.aborted) throw
|
|
295
|
+
if (original_signal?.aborted) throw create_error('already aborted', {name: 'AbortError'})
|
|
292
296
|
|
|
293
297
|
// We need a fresh underlying abort controller each time we connect
|
|
294
298
|
underlying_aborter = new AbortController()
|
|
@@ -304,7 +308,7 @@ async function braid_fetch (url, params = {}) {
|
|
|
304
308
|
// undocumented feature used by braid-chrome
|
|
305
309
|
// to see the fetch args as they are right before it is actually called,
|
|
306
310
|
// to display them for the user in the dev panel
|
|
307
|
-
params.onFetch?.(url, params)
|
|
311
|
+
params.onFetch?.(url, params, underlying_aborter)
|
|
308
312
|
|
|
309
313
|
// Now we run the original fetch....
|
|
310
314
|
|
|
@@ -363,7 +367,7 @@ async function braid_fetch (url, params = {}) {
|
|
|
363
367
|
if (!err) {
|
|
364
368
|
// check whether we aborted
|
|
365
369
|
if (original_signal?.aborted)
|
|
366
|
-
throw
|
|
370
|
+
throw create_error('already aborted', {name: 'AbortError'})
|
|
367
371
|
|
|
368
372
|
// Yay! We got a new version! Tell the callback!
|
|
369
373
|
cb_running = true
|
|
@@ -442,19 +446,16 @@ async function braid_fetch (url, params = {}) {
|
|
|
442
446
|
give_up = false
|
|
443
447
|
}
|
|
444
448
|
if (give_up) {
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
return fail(e)
|
|
448
|
-
}
|
|
449
|
-
if (!res.ok) throw new Error(`status not ok: ${res.status}`)
|
|
449
|
+
if (subscription_cb) subscription_error?.(new Error(`giving up because of http status: ${res.status}${(res.status === 401 || res.status === 403) ? ` (access denied)` : ''}`))
|
|
450
|
+
} else if (!res.ok) throw new Error(`status not ok: ${res.status}`)
|
|
450
451
|
}
|
|
451
452
|
|
|
452
|
-
if (subscription_cb) start_subscription(subscription_cb, subscription_error)
|
|
453
|
-
|
|
454
|
-
done(res)
|
|
453
|
+
if (subscription_cb && res.ok) start_subscription(subscription_cb, subscription_error)
|
|
455
454
|
|
|
456
455
|
params?.retry?.onRes?.(res)
|
|
457
456
|
waitTime = 1
|
|
457
|
+
|
|
458
|
+
done(res)
|
|
458
459
|
} catch (e) { on_error(e) }
|
|
459
460
|
}
|
|
460
461
|
})
|
|
@@ -566,7 +567,7 @@ var subscription_parser = (cb) => ({
|
|
|
566
567
|
|
|
567
568
|
// Or maybe there's an error to report upstream
|
|
568
569
|
else if (this.state.result === 'error') {
|
|
569
|
-
await this.cb(null, this.state.message)
|
|
570
|
+
await this.cb(null, create_error(this.state.message, {dont_retry: true}))
|
|
570
571
|
return
|
|
571
572
|
}
|
|
572
573
|
|
|
@@ -872,9 +873,9 @@ function ascii_ify(s) {
|
|
|
872
873
|
return s.replace(/[^\x20-\x7E]/g, c => '\\u' + c.charCodeAt(0).toString(16).padStart(4, '0'))
|
|
873
874
|
}
|
|
874
875
|
|
|
875
|
-
function
|
|
876
|
+
function create_error(msg, override) {
|
|
876
877
|
var e = new Error(msg)
|
|
877
|
-
e
|
|
878
|
+
if (override) Object.assign(e, override)
|
|
878
879
|
return e
|
|
879
880
|
}
|
|
880
881
|
|
|
@@ -958,7 +959,7 @@ async function multiplex_fetch(url, params, mux_params, aborter) {
|
|
|
958
959
|
if (r.status === 409) {
|
|
959
960
|
var e = await r.json()
|
|
960
961
|
if (e.error === 'Multiplexer already exists')
|
|
961
|
-
return cleanup(
|
|
962
|
+
return cleanup(create_error(e.error, {dont_wait: true}))
|
|
962
963
|
}
|
|
963
964
|
if (!r.ok || r.headers.get('Multiplex-Version') !== multiplex_version)
|
|
964
965
|
throw 'bad'
|
|
@@ -973,7 +974,7 @@ async function multiplex_fetch(url, params, mux_params, aborter) {
|
|
|
973
974
|
if (r.status === 409) {
|
|
974
975
|
var e = await r.json()
|
|
975
976
|
if (e.error === 'Multiplexer already exists')
|
|
976
|
-
return cleanup(
|
|
977
|
+
return cleanup(create_error(e.error, {dont_wait: true}))
|
|
977
978
|
}
|
|
978
979
|
if (!r.ok) throw new Error('status not ok: ' + r.status)
|
|
979
980
|
if (r.headers.get('Multiplex-Version') !== multiplex_version)
|
|
@@ -1060,13 +1061,20 @@ async function multiplex_fetch(url, params, mux_params, aborter) {
|
|
|
1060
1061
|
var res = await normal_fetch(url, params)
|
|
1061
1062
|
|
|
1062
1063
|
if (res.status === 409) {
|
|
1063
|
-
var e = await
|
|
1064
|
-
if (e.error === 'Request already multiplexed')
|
|
1064
|
+
var e = await res.json()
|
|
1065
|
+
if (e.error === 'Request already multiplexed') {
|
|
1066
|
+
// the id is already in use,
|
|
1067
|
+
// so we want to retry right away with a different id
|
|
1068
|
+
throw create_error(e.error, {dont_wait: true})
|
|
1069
|
+
}
|
|
1065
1070
|
}
|
|
1066
1071
|
|
|
1067
1072
|
if (res.status === 424) {
|
|
1068
|
-
//
|
|
1069
|
-
|
|
1073
|
+
// the multiplexer isn't there,
|
|
1074
|
+
// could be we arrived before the multiplexer,
|
|
1075
|
+
// or after it was shutdown;
|
|
1076
|
+
// in either case we want to retry right away
|
|
1077
|
+
throw create_error('multiplexer not connected', {dont_wait: true})
|
|
1070
1078
|
}
|
|
1071
1079
|
|
|
1072
1080
|
// if the response says it's ok,
|
|
@@ -1075,21 +1083,23 @@ async function multiplex_fetch(url, params, mux_params, aborter) {
|
|
|
1075
1083
|
if (res.ok && res.status !== 293) return res
|
|
1076
1084
|
|
|
1077
1085
|
if (res.status !== 293)
|
|
1078
|
-
throw
|
|
1079
|
-
|
|
1080
|
-
|
|
1086
|
+
throw create_error('Could not establish multiplexed request '
|
|
1087
|
+
+ params.headers.get('multiplex-through')
|
|
1088
|
+
+ ', got status: ' + res.status,
|
|
1089
|
+
{ dont_retry: true })
|
|
1081
1090
|
|
|
1082
1091
|
if (res.headers.get('Multiplex-Version') !== multiplex_version)
|
|
1083
|
-
throw
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1092
|
+
throw create_error('Could not establish multiplexed request '
|
|
1093
|
+
+ params.headers.get('multiplex-through')
|
|
1094
|
+
+ ', got unknown version: '
|
|
1095
|
+
+ res.headers.get('Multiplex-Version'),
|
|
1096
|
+
{ dont_retry: true })
|
|
1087
1097
|
|
|
1088
1098
|
// we want to present the illusion that the connection is still open,
|
|
1089
1099
|
// and therefor closable with "abort",
|
|
1090
1100
|
// so we handle the abort ourselves to close the multiplexed request
|
|
1091
|
-
params.signal
|
|
1092
|
-
unset(
|
|
1101
|
+
params.signal.addEventListener('abort', () =>
|
|
1102
|
+
unset(create_error('request aborted', {name: 'AbortError'})))
|
|
1093
1103
|
|
|
1094
1104
|
// first, we need to listen for the headers..
|
|
1095
1105
|
var headers_buffer = new Uint8Array()
|
|
@@ -1135,12 +1145,11 @@ async function multiplex_fetch(url, params, mux_params, aborter) {
|
|
|
1135
1145
|
try {
|
|
1136
1146
|
await process_buffers(() => {
|
|
1137
1147
|
var b = buffers.shift()
|
|
1138
|
-
if (!b)
|
|
1139
|
-
if (mux_error || request_error) controller.error(mux_error || request_error)
|
|
1140
|
-
return true
|
|
1141
|
-
}
|
|
1148
|
+
if (!b) return true
|
|
1142
1149
|
controller.enqueue(b)
|
|
1143
1150
|
})
|
|
1151
|
+
} catch (e) {
|
|
1152
|
+
controller.error(e)
|
|
1144
1153
|
} finally { controller.close() }
|
|
1145
1154
|
}
|
|
1146
1155
|
}), {
|