inversify-hapijs-utils
TypeScript icon, indicating that this package has built-in type declarations

3.2.0 • Public • Published

inversify-hapijs-utils

npm version npm downloads Build Status Code Coverage Known Vulnerabilities

Version Support

The version of inversify-hapijs-utils depends on which version of hapi you plan on using. Below lists the corresponding version of hapi used for each inversify-hapijs-utils version:

inversify-hapijs-utils @hapi/hapi hapi
0.0.x n/a ^16.6.2
1.x.x n/a ^17.8.5
2.x.x ^18.4.1 n/a
^3.2.x >=18.4.1 n/a

Installation

You can install inversify-hapijs-utils using npm:

$ npm install inversify inversify-hapijs-utils reflect-metadata --save

The inversify-hapijs-utils type definitions are included in the npm module and require TypeScript 2.0. Please refer to the InversifyJS documentation to learn more about the installation process.

This version requires node 12 or higher.

The Basics

Step 1: Decorate your controllers

To use a class as a "controller" for your hapijs app, simply add the @Controller decorator to the class. Similarly, decorate methods of the class to serve as request handlers.

The following example will declare a controller that responds to `GET /foo'.

import { Request } from 'hapijs';
import { Controller, Get, interfaces } from 'inversify-hapijs-utils';
import { injectable, inject } from 'inversify';
 
@Controller('/foo')
@injectable()
export class FooController implements interfaces.Controller {
        
    @Get('/')
    private index(req: Request): string {
        return 'foo'
    }
}

Note: The controller should not use the hapijs reply method to control output, but rather it should return the result directly. Any errors should return a Boom error.

Step 2: Configure container and server

Configure the inversify container in your composition root as usual.

Then, pass the container to the InversifyHapiServer constructor. This will allow it to register all controllers and their dependencies from your container and attach them to the hapi app. Then just call server.build() to prepare your app.

In order for the InversifyHapiServer to find your controllers, you must bind them to the TYPE.Controller service identifier and tag the binding with the controller's name. The Controller interface exported by inversify-hapijs-utils is empty and solely for convenience, so feel free to implement your own if you want.

import { Container } from 'inversify';
import { interfaces, InversifyHapiServer, TYPE } from 'inversify-hapijs-utils';
 
// set up container
let container = new Container();
 
// note that you *must* bind your controllers to Controller 
container.bind<interfaces.Controller>(TYPE.Controller).to(FooController).whenTargetNamed('FooController');
container.bind<FooService>('FooService').to(FooService);
 
// create server
let server = new InversifyHapiServer(container, {port: 8080});
 
 
server
    .build()
    .start();

InversifyHapiServer

A wrapper for a hapijs Application.

.build()

Attaches all registered controllers and middleware to the hapijs application. Returns the application instance.

// ...
let server = new InversifyHapiServer(container, {port: 8080});
 
server.setConfig(async(app) => {
    await app.register({
        plugin: require("hapi-pino")
    });
});
 
const init = async() => {
    const serverInstance = await server.build();
    serverInstance.start();
}
 
init();

Decorators

@Controller(path, [middleware, ...])

Registers the decorated class as a controller with a root path, and optionally registers any global middleware for this controller.

@Method(method, path, [middleware, ...])

Registers the decorated controller method as a request handler for a particular path and method, where the method name is a valid hapijs routing method.

@SHORTCUT(path, [middleware, ...])

Shortcut decorators which are simply wrappers for @Method. Right now these include @Get, @Post, @Put, @Patch, @Delete, and @Options. For anything more obscure, use @Method (Or make a PR 😄).

Middleware

Middleware can be either an instance of RequestHandler or an InversifyJS service identifier. To stop processing you will need to return a Boom error or a javascript Error.

The simplest way to use middleware is to define a RequestHandler instance and pass that handler as decorator parameter. You must return a value. If it is a side-effect, than you can return null;

// ...
import * as Boom from "boom";
 
const loggingHandler = (req: Request) => {
  console.log(req);
  return null;
};
 
const securityHandler = (req: Request) => {
  // Return a Boom (or any Error) if you want processing to stop
  if (!req.headers['token']) {
      return Boom.unauthorized('No session id in request header');
  }
 
  return null;
};
 
@Controller('/foo', loggingHandler, securityHandler)
@injectable()
export class FooController {
    
    @Get('/', loggingHandler)
    private index(req: Request): string {
        return 'foo'
    }
}

But if you wish to take full advantage of InversifyJS you can bind the same handler to your IOC container and pass the handler's service identifier to decorators.

// ...
import { TYPES } from 'types';
// ...
const loggingHandler = (req: Request) => {
  console.log(req);
  return null;
};
container.bind<RequestHandler>(TYPES.LoggingMiddleware).toConstantValue(loggingHandler);
// ...
@Controller('/foo', TYPES.LoggingMiddleware)
@injectable()
export class FooController implements interfaces.Controller {
   
    @Get('/', TYPES.LoggingMiddleware)
    private index(req: Request): string {
        return 'foo'
    }
}

Error Handling

HapiJs supports Boom objects.

// ...
const TYPES = {
  Controller: Symbol.for("Controller"),
  FooService: "FooService",
  loggingMiddleware: Symbol.for("loggingMiddleware")
};
// ...
import { Request } from "hapi";
import { injectable, inject } from "inversify";
import * as Boom from "boom";
 
@Controller('/foo', TYPES.LoggingMiddleware)
@injectable()
export class FooController implements interfaces.Controller {
    
    constructor( @inject('FooService') private fooService: FooService ) {}
    
    @Get('/{id}')
    private index(req: Request): string {
        if (!req.params.id) {
            return Boom.badRequest('id is required');
        }
        return this.fooService.get(req.query.id);
    }
}

Support and Contributing

If you have any questions or issues using inversify-hapijs-utils please post your issues here:

If you want to contribute, create a PR in the repository

Package Sidebar

Install

npm i inversify-hapijs-utils

Weekly Downloads

0

Version

3.2.0

License

MIT

Unpacked Size

28.5 kB

Total Files

23

Last publish

Collaborators

  • andrewwh