@nexica/nestjs-trpc
Version:
NestJS TRPC Bridge
80 lines • 5.8 kB
JavaScript
;
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.GenericEnhancedContextFactory = exports.EnhancedContextFactory = void 0;
exports.createEnhancedContextFactory = createEnhancedContextFactory;
const common_1 = require("@nestjs/common");
const context_utils_1 = require("../utils/context-utils");
let EnhancedContextFactory = class EnhancedContextFactory {
create(opts) {
const contextType = (0, context_utils_1.isWebSocketContext)(opts) ? 'websocket' : (0, context_utils_1.isFastifyContext)(opts) ? 'fastify' : 'express';
const enhancedContext = Object.assign(Object.assign({}, opts), { _contextType: contextType, isWebSocketRequest: () => context_utils_1.ContextUtils.isWebSocketRequest(opts), isHttpRequest: () => context_utils_1.ContextUtils.isHttpRequest(opts), getConnectionType: () => context_utils_1.ContextUtils.getConnectionType(opts), getAuthorizationHeader: () => context_utils_1.ContextUtils.getAuthorizationHeader(opts), getBearerToken: () => context_utils_1.ContextUtils.getBearerToken(opts), getHeader: (headerName) => context_utils_1.ContextUtils.getHeader(opts, headerName), getClientIP: () => context_utils_1.ContextUtils.getClientIP(opts), getUserAgent: () => context_utils_1.ContextUtils.getUserAgent(opts), isExpressContext: function () {
return (0, context_utils_1.isEnhancedExpressContext)(this);
}, isFastifyContext: function () {
return (0, context_utils_1.isEnhancedFastifyContext)(this);
}, isWebSocketContext: function () {
return (0, context_utils_1.isEnhancedWebSocketContext)(this);
} });
return enhancedContext;
}
};
exports.EnhancedContextFactory = EnhancedContextFactory;
exports.EnhancedContextFactory = EnhancedContextFactory = __decorate([
(0, common_1.Injectable)()
], EnhancedContextFactory);
let GenericEnhancedContextFactory = class GenericEnhancedContextFactory {
constructor(customContextCreator) {
Object.defineProperty(this, "customContextCreator", {
enumerable: true,
configurable: true,
writable: true,
value: customContextCreator
});
}
create(opts) {
return __awaiter(this, void 0, void 0, function* () {
const contextType = (0, context_utils_1.isWebSocketContext)(opts) ? 'websocket' : (0, context_utils_1.isFastifyContext)(opts) ? 'fastify' : 'express';
const baseEnhancedContext = Object.assign(Object.assign({}, opts), { _contextType: contextType, isWebSocketRequest: () => context_utils_1.ContextUtils.isWebSocketRequest(opts), isHttpRequest: () => context_utils_1.ContextUtils.isHttpRequest(opts), getConnectionType: () => context_utils_1.ContextUtils.getConnectionType(opts), getAuthorizationHeader: () => context_utils_1.ContextUtils.getAuthorizationHeader(opts), getBearerToken: () => context_utils_1.ContextUtils.getBearerToken(opts), getHeader: (headerName) => context_utils_1.ContextUtils.getHeader(opts, headerName), getClientIP: () => context_utils_1.ContextUtils.getClientIP(opts), getUserAgent: () => context_utils_1.ContextUtils.getUserAgent(opts), isExpressContext: function () {
return (0, context_utils_1.isEnhancedExpressContext)(this);
}, isFastifyContext: function () {
return (0, context_utils_1.isEnhancedFastifyContext)(this);
}, isWebSocketContext: function () {
return (0, context_utils_1.isEnhancedWebSocketContext)(this);
} });
let customContext;
if (this.customContextCreator) {
customContext = yield this.customContextCreator(opts);
}
else {
customContext = {};
}
return Object.assign(Object.assign({}, baseEnhancedContext), customContext);
});
}
};
exports.GenericEnhancedContextFactory = GenericEnhancedContextFactory;
exports.GenericEnhancedContextFactory = GenericEnhancedContextFactory = __decorate([
(0, common_1.Injectable)(),
__metadata("design:paramtypes", [Function])
], GenericEnhancedContextFactory);
function createEnhancedContextFactory(customContextCreator) {
return new GenericEnhancedContextFactory(customContextCreator);
}
//# sourceMappingURL=enhanced-context.factory.js.map