Aragog

pipeline status MIT licensed Crates.io aragog

aragog is a simple lightweight ODM 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. In the future versions aragog will also be able to act as a ORM and OGM for ArangoDB

Features

By now the available features are: * Creating a database connection pool from a defined schema.json * 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) * Different operations can return a AragogServiceError error that can easily be transformed into a Http Error (can be used for the actix framework)

Schema and collections

In order for everything yo work you need to specify a schema.json file. The path of the schema must be set in SCHEMA_PATH environment variable or by default the pool will look for it in src/config/db/schema.json.

There is an example schema.json file in /examples/simplefoodorder_app

The json must look like this:

json { "collections": [ { "name": "collection1", "indexes": [] }, { "name": "collection2", "indexes": [ { "name": "byUsernameAndEmail", "fields": ["username", "email"], "settings": { "type": "persistent", "unique": true, "sparse": false, "deduplicate": false } } ] } ] }

When initializing the DatabaseConnectionPool every collection name will be searched in the database and if not found the collection will be automatically created.

You don't need to create the collections yourself

Indexes

The array of Index in indexes must have that exact format: * name: the index name, * fields: an array of the fields concerned on that compound index, * settings: this json bloc must be the serialized version of an IndexSettings variant from arangors driver.

Database Record

The global architecture is simple, every Model you define that can be synced with the database must implement Record and derive from serde::Serialize, serde::Deserialize and Clone. If you want any of the other behaviors you can implement the associated trait

The final Model structure will be an Exact representation of the content of a ArangoDB document, so without its _key, _id and _rev. Your project should contain some models folder with every struct representation of your database documents.

The real representation of a complete document is DatabaseRecord<T> where T is your model structure.

Example:

```rust use serde::{Deserialize, Serialize}; use aragog::{Record, DatabaseRecord, DatabaseConnectionPool};

[derive(Serialize, Deserialize, Clone)]

pub struct User { pub username: String, pub firstname: String, pub lastname: String, }

impl Record for User { fn collection_name() -> String { String::from("Users")
} }

async fn main() { /// Database connection Setup let databasepool = DatabaseConnectionPool::new("http://localhost:8529", "db", "root", "").await; /// Define a document let mut user = User { username: String::from("LeRevenant1234"), firstname: String::from("Robert"), lastname: String::from("Surcouf") }; /// userrecord is a DatabaseRecord let userrecord = DatabaseRecord::create(user, &databasepool).await; /// You can access and edit the document userrecord.record.username = String::from("LeRevenant1524356"); /// And directly save it userrecord.save(&database_pool).await; } ```

Querying

You can retrieve a document from the database as simply as it gets, from the unique ArangoDB _key or from multiple conditions. The example below show different ways to retrieve records, look at each function documentation for more exhaustive exaplanations.

Example ````rust /// Find with the primary key let userrecord = User::find("1234567", &databasepool).await.unwrap();

/// Find with a single condition let userrecord = User::findby("username" ,"LeRevenant1234", &database_pool).await.unwrap();

/// Find a user with multiple conditions let mut findconditions = Vec::new(); findconditions.push(r#"username == "LeRevenant1234""#); findconditions.push(r#"lastname == "Surcouf""#); findconditions.push("age > 15"); let userrecord = User::findwhere(findconditions, &database_pool).await.unwrap();

/// Find all users with multiple conditions let mut findconditions = Vec::new(); findconditions.push(r#"username == "LeRevenant1234""#); findconditions.push(r#"lastname == "Surcouf""#); findconditions.push("age > 15"); let userrecords = User::getwhere(findconditions, &database_pool).await.unwrap(); ````

TODO

Arango db setup

Installation (See official documentation Here)

License

aragog is provided under the MIT license. See LICENSE. An simple lightweight ODM for ArangoDB based on arangors.

Special thanks to fMeow creator of arangors and inzanez