1.2.0 • Published 3 months ago

@aulasoftwarelibre/next-auth-firewall v1.2.0

Weekly downloads
-
License
EUPL-1.2
Repository
github
Last release
3 months ago

RBAC NextAuth.js firewall

⚠️ Warning: This is a Proof of Concept (PoC), and it is not production-ready. Use with caution and provide feedback for improvements. Thanks!

This package is a plugin for NextAuth version 5 that adds a Role-Based Access Control (RBAC) authorization layer to your authentication setup. The RBAC implementation is inspired by Symfony.

Installation

To install the @aulasoftwarelibre/next-auth-firewall package, run:

npm install @aulasoftwarelibre/next-auth-firewall

Setup

Change auth.ts

Replace the content of your auth.ts file with the following code:

import NextAuthFirewall from '@aulasoftwarelibre/next-auth-firewall'
import authConfig from '@/lib/auth/auth.config'

export const {
  auth,
  firewallHandler,
  handlers: { GET, POST },
  signIn,
  signOut,
} = NextAuthFirewall(authConfig)

Change middleware.ts

Update your middleware.ts file with the following code:

import NextAuthFirewall from '@aulasoftwarelibre/next-auth-firewall'
import authConfig from '@/lib/auth/auth.config'

export default NextAuthFirewall(authConfig).auth

export const config = {
  matcher: [
    '/((?!api|_next/static|_next/image|favicon.ico).*)',
  ],
}

Add Firewall Router

Create a new file src/app/api/auth/firewall/route.ts and add the following code:

import { firewallHandler } from '@/lib/auth/auth'

const { POST } = firewallHandler

export { POST }

Update auth.config.ts

Modify your auth.config.ts file to replace the authorize callback with access control rules. Here's an example:

import type { NextAuthFirewallConfig } from '@aulasoftwarelibre/next-auth-firewall'

const authConfig = {
    accessControl: [
        {
            path: '^/(signout|settings)',
            roles: 'IS_AUTHENTICATED',
        },
        {
            path: '^/',
            roles: 'PUBLIC_ACCESS',
        },
    ],
    // ...
} as NextAuthFirewallConfig

export default authConfig

Make sure to configure the adapter as per your requirements.

1.2.0

3 months ago

1.1.0

4 months ago

1.0.2

5 months ago

1.0.1

6 months ago

1.0.0

6 months ago

0.1.0

6 months ago