Page
Library
Module
Module type
Parameter
Class
Class type
Source
FPauth is an easy user authentication system for OCaml Dream web-framework. "
The main idea behind the system is that user authentication is done via running sets of Strategies, and when one of them succeeds, user is considered to be authenticated. Authentication status is controlled by a middleware standing downstream of session middleware.
The system allows to:
Dream.field
;Docs can be found here.
In order to start using FPauth, in your project you should:
FPauth.Auth_sign.MODEL
. Basically it requires functions which define, how to put and restore your users in session (serialize
and deserialize
), how to find users from request params (identificate
) and which strategies can be applied to a user (applicable_strats
);module Auth = FPauth.Make_Auth (User)
FPauth_strategies
. Password
can be used for password authentication, passwords are to be hashed with Argon2. OTP
is a time-based OTP strategy, it contains routes for setting the strategy up for an already authenticated user. Strategies can have additional requirements for your models, as well as need some other modules.module Password = FPauth_strategies.Password.Make (User)
Session_manager
middleware after your session middleware;let () = run
@@ memory_sessions
@@ Auth.Session_manager.auth_setup
Dream.router
middleware. Here you specify strategies used in the authentication process, the way params are extracted, responses on main authentication events. You can also specify the scope for authentication routes; @@ router [
Auth.Router.call [(module Password)] ~responses:(module Responses) ~extractor:extractor ~scope:"/authentication"
]
Strategies and Responses modules are passed as first-class objects which suffice FPauth.Auth_sign.STRATEGY
and FPauth.Auth_sign.RESPONSES
signatures correspondingly. Extractor is a function which meets FPauth.Static.Params.extractor
type.
FPauth_responses
you can find some default responses in JSON and HTML format;FPauth.Static.Params
you can find some default extractors from JSON-requests' bodies, forms or from query;It is possible to customize many aspects of the system workflow.
You can install only the packages you actually need:
FPauth-core
contains Session_manager, Authenticator, Router, Variables, as well as Static module and signatures. These allow you to build your own workflow almost from the ground;FPauth-strategies
contains Password
and OTP
strategies. If you don't need them - you can choose not to have them 😉;FPauth-responses
contains some default responses on main authentication events;