UNPKG

@loopback/rest

Version:

Expose controllers as REST endpoints and route REST API requests to controller methods

36 lines 1.54 kB
"use strict"; // Copyright IBM Corp. and LoopBack contributors 2018. All Rights Reserved. // Node module: @loopback/rest // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT Object.defineProperty(exports, "__esModule", { value: true }); exports.RawBodyParser = void 0; const tslib_1 = require("tslib"); const core_1 = require("@loopback/core"); const body_parser_1 = require("body-parser"); const type_is_1 = require("type-is"); const keys_1 = require("../keys"); const body_parser_helpers_1 = require("./body-parser.helpers"); /** * Parsing the request body into Buffer */ let RawBodyParser = class RawBodyParser { constructor(options = {}) { this.name = body_parser_helpers_1.builtinParsers.raw; const rawOptions = (0, body_parser_helpers_1.getParserOptions)('raw', options); this.rawParser = (0, body_parser_1.raw)(rawOptions); } supports(mediaType) { return !!(0, type_is_1.is)(mediaType, 'application/octet-stream'); } async parse(request) { const body = await (0, body_parser_helpers_1.invokeBodyParserMiddleware)(this.rawParser, request); return { value: body }; } }; exports.RawBodyParser = RawBodyParser; exports.RawBodyParser = RawBodyParser = tslib_1.__decorate([ tslib_1.__param(0, (0, core_1.inject)(keys_1.RestBindings.REQUEST_BODY_PARSER_OPTIONS, { optional: true })), tslib_1.__metadata("design:paramtypes", [Object]) ], RawBodyParser); //# sourceMappingURL=body-parser.raw.js.map