Skip to content
On this page

Middlewares

In this section, you are going to learn the Axe API middleware, and how you can use it in your API projects.

  • You will learn
  • What is middleware?
  • When is middleware executed?
  • How to create a model-based middleware?
  • How to create a handle-based middleware?

Middleware example

Middleware refers to software components that sit between an application's core functionality and the underlying infrastructure.

You can see a simple middleware for Express.js application in the following example;

js
const express = require("express");
const app = express();

const myLogger = function (req, res, next) {
  console.log("LOGGED");
  next();
};

app.use(myLogger);

app.get("/", (req, res) => {
  res.send("Hello World!");
});

app.listen(3000);

In this example, every HTTP request should be passed via the myLogger middleware. In that middleware, you can log the request, check the HTTP Request Headers, validate the request, etc.

Axe API middleware functions are completely the same as Express.js'. Since Axe API generates HTTP routes automatically, the defining method is different, and it depends on the middleware type.

You can see the middleware schema in the following schema;

Axe API Middlewares

Global middleware

In Axe API you can create a global middleware that would be executed in every HTTP request.

You should add the middleware function to your Express.js instance in the app/v1/init.ts file like the following example;

ts
import { Express, Request, Response, NextFunction } from "express";
import myLogger from "./Middlewares/myLogger";

const onBeforeInit = async (app: Express) => {
  app.use(myLogger);
};

const onAfterInit = async (app: Express) => {};

export { onBeforeInit, onAfterInit };
ts
import { Request, Response, NextFunction } from "express";

export default (req: Request, res: Response, next: NextFunction) => {
  console.log("LOGGED");
  next();
};

In this example, myLogger middleware would be executed automatically in every HTTP request that manages by Axe API.

Model-based middleware

You can define a specific middleware for all model routes in Axe API. For example, you can define a specific logger middleware for the User model. In this case, all user-specific routes would call the middleware.

ts
import { Model } from "axe-api";
import myUserLogger from "../Middlewares/myUserLogger";

class User extends Model {
  get middlewares() {
    return [myUserLogger];
  }
}

export default User;
ts
import { Request, Response, NextFunction } from "express";

export default (req: Request, res: Response, next: NextFunction) => {
  console.log("USER LOGGED");
  next();
};

TIP

As you can see in the example above, you can define multiple middleware functions for a model.

Handler-based middleware

You can define a specific middleware for a specific model handler in Axe API. For example, you can define a specific middleware for the user pagination. In this case, the middleware would be executed for only the pagination action for the User model.

ts
import { Model, HandlerTypes } from "axe-api";
import { shouldBeAdmin, shouldBeLogged } from "../Middlewares";
const { INSERT, PAGINATE, UPDATE, DELETE } = HandlerTypes;

class User extends Model {
  get middlewares() {
    return [
      {
        handler: [INSERT, PAGINATE, UPDATE, DELETE],
        middleware: shouldBeLogged,
      },
      {
        handler: [DELETE],
        middleware: shouldBeAdmin,
      },
    ];
  }
}

export default User;
ts
import { Request, Response, NextFunction } from "express";

export default (req: Request, res: Response, next: NextFunction) => {
  console.log("Should be logged!");
  next();
};
ts
import { Request, Response, NextFunction } from "express";

export default (req: Request, res: Response, next: NextFunction) => {
  console.log("Should be admin!");
  next();
};

In this example, we added a specific middleware to specific handlers of the model.

The shouldBeLogged middleware will be executed for only INSERT, UPDATE, UPDATE, and DELETE handlers. But the shouldBeAdmin middleware will be executed for only the DELETE handlers.

Next steps

In this section, the middleware structure in Axe API has been explained. You can find more in the API Reference section.

In the next section, we are going to talk about Hooks and Events.

Released under the MIT License.