# Aragog

pipeline status MIT licensed Crates.io aragog Discord

aragog is a simple lightweight ODM and OGM library for ArangoDB using the arangors driver. The main concept is to provide behaviors allowing to synchronize documents and structs as simply an lightly as possible.

The crate provides a powerful AQL querying tool allowing complex graph queries in Rust

### Features

By now the available features are: * Creating a database connection pool from a defined schema.yaml * Structures can implement different behaviors: * Record: The structure can be written into a ArangoDB collection as well as retrieved, from its _key or other query arguments. * New: The structure can be initialized from an other type (a form for example). It allows to maintain a privacy level in the model and to use different data formats. * Update: The structure can be updated from an other type (a form for example). It allows to maintain a privacy level in the model and to use different data formats. * Validate: The structure can perform simple validations before being created or saved into the database. * Authenticate: The structure can define a authentication behaviour from a secret (a password for example) * AuthorizeAction: The structure can define authorization behavior on a target record with custom Action type. * Link: The structure can define relations with other models based on defined queries. * ForeignLink: The structure can define relations with other models based on defined foreign key. * Different operations can return a ServiceError error that can easily be transformed into a Http Error (can be used for the actix framework)

#### Cargo features

##### Async and Blocking

By default all aragog items are asynchronous, you can compile aragog in a synchronous build using the blocking feature:

toml aragog = { version = "0.7", features = ["blocking"], default-features = false }

You need to disable the default features. Don't forget to add the derive feature to use the derive macros.

##### Actix and Open API

If you use this crate with the actix-web framework, you may want the aragog errors to be usable as http errors. To do so you can add to your cargo.toml the following feature: actix. This will add Actix 3 dependency and compatibility

toml aragog = { version = "0.7", features = ["actix"] }

If you also want to be able to use paperclip, you may want aragog elements to be compatible. To do so you can add to your cargo.toml the following feature: open-api.

toml aragog = { version = "0.7", features = ["actix", "open-api"] }

##### Password hashing

You may want aragog to provide a more complete Authenticate trait allowing to hash and verify passwords. To do so you can add to your cargo.toml the following feature: password_hashing.

toml aragog = { version = "0.7", features = ["password_hashing"] }

It will add two functions in the Authenticate trait:

rust ignore fn hash_password(password: &str, secret_key: &str) -> Result<String, ServiceError>; fn verify_password(password: &str, password_hash: &str, secret_key: &str) -> Result<(), ServiceError>;