Use Warrant in server-side Express.js projects.
Use npm
to install the Warrant module:
npm install @warrantdev/warrant-node
npm install @warrantdev/warrant-express-middleware
Import the createMiddleware
function and call it with some initialization options to get a configured middleware function you can protect your API routes with:
const Warrant = require("@warrantdev/warrant-node");
const WarrantMw = require("@warrantdev/warrant-express-middleware");
const { hasPermission, hasAccess } = WarrantMw.createMiddleware({
client: new Warrant({
apiKey: "api_test_f5dsKVeYnVSLHGje44zAygqgqXiLJBICbFzCiAg1E=",
}),
getUserId: (req, res) => MyUserSession.getUserId(req, res).toString(), // Tell the middleware how to get the current user in your API
});
// The hasAccess middleware will run before the route code.
app.get(
"/api/posts/:postId",
hasAccess("post", (req) => req.params["postId"], "viewer"),
(req, res) => {
const { postId } = req.params;
const post = getPost(postId);
if (!post) {
res.sendStatus(404);
return;
}
res.json(post);
}
);
Or using ES modules:
import Warrant from "@warrantdev/warrant-node";
import { createMiddleware } from "@warrantdev/warrant-express-middleware";
const { hasPermission, hasAccess } = Warrant.createMiddleware({
client: new Warrant({
apiKey: "api_test_f5dsKVeYnVSLHGje44zAygqgqXiLJBICbFzCiAg1E=",
}),
getUserId: (req, res) => MyUserSession.getUserId(req, res).toString(), // Tell the middleware how to get the current user in your API
});
// The hasAccess middleware will run before the route code.
app.get(
"/api/posts/:postId",
hasAccess("post", (req) => req.params["postId"], "viewer"),
(req, res) => {
const { postId } = req.params;
const post = getPost(postId);
if (!post) {
res.sendStatus(404);
return;
}
res.json(post);
}
);
Once you've initialized the middleware as shown above, you can use either the hasPermission
or the hasAccess
method to protect your Express.js API routes:
// The hasPermission middleware will check that the current user
// has the specified permission before executing the route.
app.post("/api/posts", hasPermission("create-posts"), (req, res) => {
try {
const newPost = createPost(req.body);
res.json(newPost);
} catch (e) {
res.sendStatus(e.code);
}
});
// The hasAccess middleware will check that the current user is a "viewer"
// of the particular Post with id postId before executing the route.
app.get(
"/api/posts/:postId",
hasAccess("post", (req) => req.params["postId"], "viewer"),
(req, res) => {
const { postId } = req.params;
const post = getPost(postId);
if (!post) {
res.sendStatus(404);
return;
}
res.json(post);
}
);
The hasPermission
middleware function takes a single argument:
string
- This is the string id of the permission you want to check for (ex: "view-posts"
).
The hasAccess
middleware function takes 3 arguments:
string
- This is the object type you want to perform an access check for. To learn more about creating object types, visit our documentation.
function
- A function executed by the middleware in order to get the id of the object for which to perform the access check. In most scenarios, this will be the value of one of the request params. An example of what this function might look like:
(req: Request) => req.params["myParam"];
string
- This is the relation you want to perform an access check for. To learn more about relations, visit our documentation.
The middleware supports options that allow you to configure how it works during the initialization step. All options are required unless stated that they are optional.
string
- This is the API Key from the Warrant Dashboard. Without this value, the middleware cannot make requests to the Warrant API to perform access checks in your application.
function
- A function executed by the middleware in order to get the userId for which to perform an access check. Use this function to tell the middleware how to get the current user's id. Usually this user is determined using the current session or authentication token provided in the request.
function
- A function executed by the middleware when an access check fails (the user is unauthorized). Use this function to tell the middleware what to do when a user fails an access check. This option defaults to:
(req: Request, res: Response) => res.sendStatus(401);
We’ve used a random API key in these code examples. Replace it with your actual publishable API keys to test this code through your own Warrant account.
For more information on how to use the Warrant API, please refer to the Warrant API reference.
Note that we may release new minor and patch versions of
@warrantdev/warrant-express-middleware
with small but backwards-incompatible fixes to the type
declarations. These changes will not affect Warrant itself.
This package includes TypeScript declarations for Warrant.