@nestjs/core
Version:
Nest - modern, fast, powerful node.js web framework (@core)
38 lines (37 loc) • 1.7 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.InterceptorsConsumer = void 0;
const shared_utils_1 = require("@nestjs/common/utils/shared.utils");
const async_hooks_1 = require("async_hooks");
const rxjs_1 = require("rxjs");
const operators_1 = require("rxjs/operators");
const execution_context_host_1 = require("../helpers/execution-context-host");
class InterceptorsConsumer {
async intercept(interceptors, args, instance, callback, next, type) {
if ((0, shared_utils_1.isEmpty)(interceptors)) {
return next();
}
const context = this.createContext(args, instance, callback);
context.setType(type);
const nextFn = async (i = 0) => {
if (i >= interceptors.length) {
return (0, rxjs_1.defer)(async_hooks_1.AsyncResource.bind(() => this.transformDeferred(next)));
}
const handler = {
handle: () => (0, rxjs_1.from)(nextFn(i + 1)).pipe((0, operators_1.mergeAll)()),
};
return interceptors[i].intercept(context, handler);
};
return (0, rxjs_1.defer)(() => nextFn()).pipe((0, operators_1.mergeAll)());
}
createContext(args, instance, callback) {
return new execution_context_host_1.ExecutionContextHost(args, instance.constructor, callback);
}
transformDeferred(next) {
return (0, rxjs_1.from)(next()).pipe((0, operators_1.switchMap)(res => {
const isDeferred = res instanceof Promise || res instanceof rxjs_1.Observable;
return isDeferred ? res : Promise.resolve(res);
}));
}
}
exports.InterceptorsConsumer = InterceptorsConsumer;
;