#actix-web #actix-web-middleware #jwt #keycloak #middleware #http-response

actix-web-middleware-keycloak-auth

A middleware for Actix Web that handles authentication with a JWT emitted by Keycloak

8 releases

0.4.2 Dec 3, 2023
0.4.1 Sep 27, 2023
0.4.0 Apr 5, 2022
0.4.0-beta.2 Nov 5, 2021
0.1.0 Nov 25, 2020

#250 in HTTP server

Download history 187/week @ 2024-03-14 72/week @ 2024-03-21 87/week @ 2024-03-28 74/week @ 2024-04-04 127/week @ 2024-04-11 76/week @ 2024-04-18 63/week @ 2024-04-25 36/week @ 2024-05-02 116/week @ 2024-05-09 93/week @ 2024-05-16 137/week @ 2024-05-23 44/week @ 2024-05-30 102/week @ 2024-06-06 124/week @ 2024-06-13 91/week @ 2024-06-20 38/week @ 2024-06-27

359 downloads per month

MIT license

56KB
925 lines

actix-web-middleware-keycloak-auth

LICENSE Build and test Lint Crates.io Version Documentation

A middleware for Actix Web that handles authentication with a JWT emitted by Keycloak.

Features

  • Actix Web middleware
  • deny HTTP requests that do not provide a valid JWT (or choose to allow them and handle the authentication state from a following middleware)
  • require one or several Keycloak realm or client roles to be included in the JWT
  • error HTTP responses sent from the middleware can have generic bodies as well as detailed error reasons
  • access JWT claims from handlers (for example: get the ID of the authenticated user)
  • parse custom JWT claims (using Serde)
  • access parsed roles from handlers (every Keycloak role contained in the JWT)
  • compatible with paperclip using the paperclip_compat feature
  • store auth status in request-local data instead of returning a HTTP response (so that the next middleware/handler can try another auth mechanism, for example)

Usage

License

MIT License Copyright (c) 2020 David Sferruzza

Dependencies

~16–34MB
~552K SLoC