package guardian
Install
Dune Dependency
Authors
Maintainers
Sources
md5=4aa712fb5ae59dc3483d4f1d84a59b97
sha512=b5b936f35d6a519760c100480a0e3748db23989d10d58b601d05b3c235dbe3ef0a9253676a5f6ce33b45ece9fd0caaba6ae9097fe2c73f370b7166051a4a2ec6
Description
Defined actors can access targets according to specified rules (allowed actions: CRUD).
Published: 22 Mar 2023
README
Guardian
Generic framework for roles and permissions to be used in our projects
Limitations and Notes
Supported Database: Implementation with MariaDb
Context (
ctx
): Allows to have multiple database pools (See next section)
Setup with MariaDB backend (MultiPools)
let open Guardian_backend.Pools in
let module MariaConfig = struct
include DefaultConfig
let database =
MultiPools
[ "pool-one", "mariadb://root@database:3306/dev"
; "pool-two", "mariadb://root@database:3306/test"
]
;;
end
in
let module MariaDb = Guardian_backend.MariaDb.Make (Roles) (Make (MariaConfig))
let%lwt () = Lwt_list.iter (fun pool -> MariaDb.migrate ~ctx:["pool", pool] ()) ["pool-one"; "pool-two"]
(** NOTE: To integrate migrations into your applications migration state see
e.g. function 'MariaDB.find_migrations *)
Usage
The test
directory shows an example implementation of how guardian can be used.
role.ml
: Definition of actors and targetsrole.mli
: Signature of the defined actors and targetsguard.ml
: Create the guardian servicearticle.ml
: Definition of the article targethacker.ml
: Definition of the hacker actoruser.ml
: Definition of the user actor and targetmain.ml
: implementation of all test cases
Example usage:
module Guard = Guardian.Make (Role.Actor) (Role.Target)
let thomas = "Thomas", Guard.Uuid.Actor.create ()
let mike = "Mike", Guard.Uuid.Actor.create ()
let thomas_article = Article.make "Foo" "Bar" thomas
let mike_article = Article.make "Hello" "World" mike
let example_rule = `Actor (snd mike), `Update, `Target thomas_article.uuid
let initialize_authorizables_and_rules ?ctx =
(* Note: As a user can be an actor and a target, both need to be initialized *)
let* (_: [> `User ] MariaDb.actor) = User.to_authorizable ?ctx thomas in
let* (_: [> `User ] MariaDb.actor) = User.to_authorizable ?ctx mike in
let* (_: [> `User ] MariaDb.target) = UserTarget.to_authorizable ?ctx thomas in
let* (_: [> `User ] MariaDb.target) = UserTarget.to_authorizable ?ctx mike in
let* (_: [> `Article ] MariaDb.target) = Article.to_authorizable ?ctx thomas_article in
let* (_: [> `Article ] MariaDb.target) = Article.to_authorizable ?ctx mike_article in
let* () = MariaDb.Rule.save ?ctx example_role in
Lwt.return_unit
(* let mike Update the title of thomas article -> returns a (Article.t, string) Lwt_result.t *)
let update_title = Article.update_title ?ctx mike thomas_article "Updated Title"
Development
A guide how to setup the project with devcontainers can be found here.
Commands
Most used commands can be found in the following list. For the full list of commands, checkout the Makefile
.
make build
- to build the projectmake build-watch
- to build and watch the projectmake test
- to run all tests. This requires a running MariaDB instance.
🚀 Release new version
Update
CHANGELOG.md
and document changes made. Ensure the version to be releases has a header matching the version, follow previous releases.Edit the file
dune-project
and update version(version 0.0.0)
.Build the project
dune build
OR edit the filepool.opam
and update versionversion: "0.0.0"
Commit your changes.
Tag the commit and push changes and git tag
create opam release (
opam-publish
)
Dependencies (15)
-
result
>= "1.5"
-
yojson
>= "2.0.2"
-
uuidm
>= "0.9.8"
-
uri
>= "4.2.0"
-
ppx_deriving_yojson
>= "3.6.1"
-
ppx_deriving
>= "5.2.1"
-
ocaml
>= "4.12.0"
-
mariadb
>= "1.1.4"
-
lwt_ppx
>= "2.1.0"
-
lwt
>= "5.6.1"
-
logs
>= "0.7.0"
-
containers
>= "3.6"
-
caqti-lwt
>= "1.8.0" & < "2.0.0~"
-
caqti-driver-mariadb
>= "1.8.0" & < "2.0.0~"
-
dune
>= "2.9"
Dev Dependencies (2)
-
alcotest-lwt
with-test
-
odoc
with-doc
Used by
None
Conflicts
None