aragog
is a simple lightweight ODM/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 also provides a powerful AQL querying tool allowing complex graph queries in Rust
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) (see password_hashing
section)
* 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)
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.5", 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.5", features = ["actix", "open-api"] }
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.5", features = ["password_hashing"] }
It will add two functions in the Authenticate
trait:
rust
fn hash_password(password: &str, secret_key: &str) -> Result<String, ServiceError>;
fn verify_password(password: &str, password_hash: &str, secret_key: &str) -> Result<(), ServiceError>;
* hash_password
will return a Argon2 encrypted password hash you can safely store to your database
* verify_password
will check if the provided password
matches the Argon2 encrypted hash you stored.
The Argon2 encryption is based on the argonautica crate.
That crate requires the clang
lib, so if you deploy on docker you will need to install it or define a custom image.
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 are example
schema.json
files in /examples/
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
}
}
]
}
],
"edge_collections": [
{
"name": "EdgeCollection1"
}
]
}
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
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.
There is no indexing for
edge_collections
The global architecture is simple, every model you define that can be synced with the database must implement serde::Serialize
, serde::Deserialize
and Clone
.
To declare a struct
as a Model it must derive from aragog::Record
(the collection name must be the same as the struct)
The model needs to have Validations so you'll need to either:
* Implement aragog::Validate
and specify validations
* Derive aragog::Validate
and validations will be empty.
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 aragog::{Record, DatabaseConnectionPool, DatabaseRecord, Validate, AuthMode}; use serde::{Serialize, Deserialize}; use tokio;
pub struct User { pub username: String, pub firstname: String, pub lastname: String, pub age: usize }
async fn main() {
// Database connection Setup
let databasepool = DatabaseConnectionPool::new("http://localhost:8529", "db", "user", "password", AuthMode::default()).await;
// Define a document
let mut user = User {
username: String::from("LeRevenant1234"),
firstname: String::from("Robert"),
lastname: String::from("Surcouf"),
age: 18
};
// userrecord is a DatabaseRecord
You can declare Edge collection models by deriving from aragog::EdgeRecord
, the structure requires two string fields: _from
and _to
.
When deriving from EdgeRecord
the struct will also automatically derive from Record
so you'll need to implement Validate
as well.
Example: ```rust
pub struct Dish { pub name: String, pub price: usize }
pub struct Order { pub name: String, }
pub struct PartOf { pub _from: String, pub _to: String, }
async fn main() { let databasepool = DatabaseConnectionPool::new("http://localhost:8529", "db", "user", "password", AuthMode::Jwt).await; // Define a document let mut dish = DatabaseRecord::create(Dish { name: "Pizza".tostring(), price: 10, }, &databasepool).await.unwrap(); let mut order = DatabaseRecord::create(Order { name: "Order 1".tostring(), }, &databasepool).await.unwrap(); let edge = DatabaseRecord::link(&dish, &order, &databasepool, |from, _to| { PartOf { _from, _to } }).await.unwrap(); asserteq!(&edge.record.from(), &dish.id); asserteq!(&edge.record.to(), &order.id); asserteq!(&edge.record.fromkey(), &dish.key); asserteq!(&edge.record.to_key(), &order.key); } ```
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 explanations.
Example ```rust // User creation let record = DatabaseRecord::create(user, &databasepool).await.unwrap(); // Find with the primary key or.. let userrecord = User::find(&record.key, &databasepool).await.unwrap(); // .. Generate a query and.. let query = User::query().filter(Filter::new(Comparison::field("lastname").equalsstr("Surcouf")).and(Comparison::field("age").greaterthan(15))); // get the only record (fails if no or multiple records) let userrecord = User::get(query, &databasepool).await.unwrap().uniq().unwrap();
// Find all users with multiple conditions
let query = User::query().filter(Filter::new(Comparison::field("lastname").like("%Surc%")).and(Comparison::field("age").inarray(&[15,16,17,18])));
let clonequery = query.clone(); // we clone the query
// This syntax is valid...
let userrecords = User::get(query, &databasepool).await.unwrap();
// ... This one too
let userrecords = clonequery.call(&databasepool).await.unwrap().get_records::
You can simplify the previous queries with some tweaks and macros: ```rust
// Find a user with multiple conditions let query = query!("Users").filter(compare!(field "lastname").equalsstr("Surcouf").and(compare!(field "age").greaterthan(15))); let records = User::get(query, &databasepool).await.unwrap(); ```
The querying system hierarchy works this way:
rust
Query::new("collection_name").filter(comparison_1).and(comparison_2).or(comparison_3).sort().limit().distinct();
You can intialize a query in the following ways:
* Query::new("CollectionName")
* Object.query()
(only works if Object
implements Record
)
* query!("CollectionName")
You can customize the query with the following operations:
* filter()
you can specify AQL comparisons
* prune()
you can specify blocking AQL comparisons for traversal queries
* sort()
you can specify fields to sort with
* limit()
you can skip and limit the query results
* distinct()
you can skip duplicate documents
The order of operations will be respected in the rendered AQL query (except for
distinct
)
you can then call a query in the following ways:
* query.call::<Object>(&database_connection_pool)
* Object::get(query, &database_connection_pool
Which will return a JsonQueryResult
containing a Vec
of serde_json::Value
.
JsonQueryResult
can return deserialized models as DatabaseRecord
by calling .get_records::<T>()
If you want to receive a unique record and render an error in case of multiple record you can use uniq()
.
You can initialize a Filter
with Filter::new(comparison)
Each comparison is a Comparison
struct built via ComparisonBuilder
:
```rust
// for a simple field comparison
// Explicit Comparison::field("somefield").somecomparison("comparedvalue"); // Macro compare!(field "somefield").somecomparison("comparedvalue");
// for field arrays (see ArangoDB operators)
// Explicit Comparison::all("somefieldarray").somecomparison("comparedvalue"); // Macro compare!(all "somefieldarray").somecomparison("comparedvalue");
// Explicit Comparison::any("somefieldarray").somecomparison("comparedvalue"); // Macro compare!(any "somefieldarray").somecomparison("comparedvalue");
// Explicit Comparison::none("somefieldarray").somecomparison("comparedvalue"); // Macro compare!(none "somefieldarray").somecomparison("comparedvalue"); ``` All the currently implemented comparison methods are listed under ComparisonBuilder documentation page.
Filters can be defined explicitely like this:
rust
let filter = Filter::new(Comparison::field("name").equals_str("felix"));
or
rust
let filter :Filter = Comparison::field("name").equals_str("felix").into();
You can use graph features with sub-queries with different ways:
let query = Query::outbound(1, 2, "edgeCollection", "User/123");
let query = Query::inbound(1, 2, "edgeCollection", "User/123");
let query = Query::any(1, 2, "edgeCollection", "User/123");
// Named graph
let query = Query::outboundgraph(1, 2, "NamedGraph", "User/123");
let query = Query::inboundgraph(1, 2, "NamedGraph", "User/123");
let query = Query::any_graph(1, 2, "NamedGraph", "User/123");
* Implicit way from a `DatabaseRecord<T>`
rust
let query = userrecord.outboundquery(1, 2, "edgeCollection"); let query = userrecord.inboundquery(1, 2, "edgeCollection"); ```
Queries can be joined together through * Edge traversal: ```rust
let query = Query::new("User")
.join_inbound(1, 2, false, Query::new("edgeCollection"));
* Named Graph traversal:
rust
let query = Query::new("User")
.join_inbound(1, 2, true, Query::new("SomeGraph"));
It works with complex queries:
rust
let query = Query::new("User") .filter(Comparison::field("age").greaterthan(10).into()) .joininbound(1, 2, false, Query::new("edgeCollection") .sort("key", None) .joinoutbound(1, 5, true, Query::new("SomeGraph") .filter(Comparison::any("roles").like("%Manager%").into()) .distinct() ) ); ```
ANY
, NONE
, ALL
)PRUNE
operationLENGTH
, ABS
, etc.)derive
macroderive
macro checking _from
and _to
presence at compile timeattribute
macro for indexes and generate the schema at compile timeattribute
macro for relations to provide the link methods automaticallyasync
validations for database advance state checkInstallation (See official documentation Here)
/usr/local/sbin/arangod
The default installation contains one database _system
and a user named root
arangosh
shell
arangosh> db._createDatabase("DB_NAME");
arangosh> var users = require("@arangodb/users");
arangosh> users.save("DB_USER", "DB_PASSWORD");
arangosh> users.grantDatabase("DB_USER", "DB_NAME");
> It is a good practice to create a test db and a development db.
$> arangosh --server.username $DB_USER --server.database $DB_NAME
collection_name
of my Record
?
> Instead of deriving from aragog::Record
you can implement aragog::Record
directly and declare collection_name()
as a string litteral
> This is not recommended as it will not be possible in the future with automatic schema generation
>collection_name
of my EdgeRecord
?
> Instead of deriving from aragog::EdgeRecord
you can implement aragog::EdgeRecord
and aragog::Record
directly and declare collection_name()
as a string litteral.
> This is not recommended as it will not be possible in the future with automatic schema generationaragog
is provided under the MIT license. See LICENSE.
An simple lightweight ODM for ArangoDB based on arangors.