blob: 3c7e57722a101d5f2e40bd12c19d6b63e391d4fa (
plain)
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
|
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.compose = void 0;
const context_1 = require("./context");
// Based on the code in the MIT licensed `koa-compose` package.
const compose = (middleware, onError, onNotFound) => {
const middlewareLength = middleware.length;
return (context, next) => {
let index = -1;
return dispatch(0);
async function dispatch(i) {
if (i <= index) {
throw new Error('next() called multiple times');
}
let handler = middleware[i];
index = i;
if (i === middlewareLength && next)
handler = next;
if (!handler) {
if (context instanceof context_1.HonoContext && context.finalized === false && onNotFound) {
context.res = await onNotFound(context);
}
return context;
}
let res;
let isError = false;
try {
const tmp = handler(context, () => dispatch(i + 1));
res = tmp instanceof Promise ? await tmp : tmp;
}
catch (err) {
if (context instanceof context_1.HonoContext && onError) {
if (err instanceof Error) {
isError = true;
res = onError(err, context);
}
}
if (!res) {
throw err;
}
}
if (res && context instanceof context_1.HonoContext && (!context.finalized || isError)) {
context.res = res;
}
return context;
}
};
};
exports.compose = compose;
|