package FPauth-strategies

  1. Overview
  2. Docs
Strategies to be used with FPauth-core authentication system

Install

Dune Dependency

Authors

Maintainers

Sources

1.0.0.tar.gz
md5=5661fa07d29c5d8b229ac198653f96d8
sha512=4eafc8d414a5e9fc954f6cb26080dc1e21600b85e21f4e3a82528b37e8a19ff3d88530cde5f3cdc56dc2ce47fe7d1552ded26ec250d646f0c9f7805773d30305

Description

Published: 20 Apr 2022

README

FPauth - user authentication for Dream

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:

  • Control authentication in web-session;

  • Get authentication status for each request via Dream.field;

  • Check user identity with strategies;

  • Use built-in strategies or custom ones;

  • Add all routes for authentication and strategies at once;

  • Add your own representations of authentication events or use built-in;

  • Use built-in handlers or write your own;

  • Extract params for authentication from requests.

Docs can be found here.

Quick setup

In order to start using FPauth, in your project you should:

  • Initialize the system with a model of user, which suffices 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)
  • Initialize strategies you are going to use to verify users' identities. There are some strategies in 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)
  • Add Session_manager middleware after your session middleware;

let () = run
  @@ memory_sessions
  @@ Auth.Session_manager.auth_setup
  • Insert FPauth routes into 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.

  • In FPauth_responses you can find some default responses in JSON and HTML format;

  • In FPauth.Static.Params you can find some default extractors from JSON-requests' bodies, forms or from query;

  • Done! Your application can now authenticate users!

Advanced Usage

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;

  • You can write your own Strategies, Responses and Params Extractors.

Dependencies (8)

  1. conf-libargon2
  2. base
  3. dune >= "2.7"
  4. ocaml >= "4.12.0"
  5. FPauth-core = version
  6. twostep
  7. argon2
  8. dream >= "1.0.0~alpha3"

Dev Dependencies (3)

  1. odoc with-doc
  2. bisect_ppx with-test & >= "2.5.0"
  3. alcotest with-test

Used by (1)

  1. FPauth

Conflicts

None