Lines
99.58 %
Functions
59.57 %
Branches
100 %
use std::{error::Error as StdError, sync::Arc};
use async_trait::async_trait;
use futures::TryStreamExt;
use mongodb::{
action::Find,
bson::{self, doc, DateTime, Document, Regex},
Cursor as MongoDbCursor, Database,
};
use serde::{Deserialize, Serialize};
use super::super::application::{
Application, ApplicationModel, Cursor, ListOptions, ListQueryCond, QueryCond, SortKey,
UpdateQueryCond, Updates,
/// Model instance.
pub struct Model {
/// The associated database connection.
conn: Arc<Database>,
}
/// Cursor instance.
struct DbCursor {
/// The associated collection cursor.
cursor: MongoDbCursor<Schema>,
/// (Useless) only for Cursor trait implementation.
offset: u64,
/// MongoDB schema.
#[derive(Deserialize, Serialize)]
struct Schema {
#[serde(rename = "applicationId")]
application_id: String,
code: String,
#[serde(rename = "unitId")]
unit_id: String,
#[serde(rename = "unitCode")]
unit_code: String,
#[serde(rename = "createdAt")]
created_at: DateTime,
#[serde(rename = "modifiedAt")]
modified_at: DateTime,
#[serde(rename = "hostUri")]
host_uri: String,
name: String,
info: Document,
const COL_NAME: &'static str = "application";
impl Model {
/// To create the model instance with a database connection.
pub async fn new(conn: Arc<Database>) -> Result<Self, Box<dyn StdError>> {
let model = Model { conn };
model.init().await?;
Ok(model)
#[async_trait]
impl ApplicationModel for Model {
async fn init(&self) -> Result<(), Box<dyn StdError>> {
let indexes = vec![
doc! {"name": "applicationId_1", "key": {"applicationId": 1}, "unique": true},
doc! {"name": "unitId_1_code_1", "key": {"unitId": 1, "code": 1}, "unique": true},
doc! {"name": "code_1", "key": {"code": 1}},
doc! {"name": "unitId_1", "key": {"unitId": 1}},
doc! {"name": "createdAt_1", "key": {"createdAt": 1}},
doc! {"name": "modifiedAt_1", "key": {"modifiedAt": 1}},
doc! {"name": "name_1", "key": {"name": 1}},
];
let command = doc! {
"createIndexes": COL_NAME,
"indexes": indexes,
self.conn.run_command(command).await?;
Ok(())
async fn count(&self, cond: &ListQueryCond) -> Result<u64, Box<dyn StdError>> {
let filter = get_list_query_filter(cond);
let count = self
.conn
.collection::<Schema>(COL_NAME)
.count_documents(filter)
.await?;
Ok(count)
async fn list(
&self,
opts: &ListOptions,
cursor: Option<Box<dyn Cursor>>,
) -> Result<(Vec<Application>, Option<Box<dyn Cursor>>), Box<dyn StdError>> {
let mut cursor = match cursor {
None => {
let filter = get_list_query_filter(opts.cond);
Box::new(DbCursor::new(
build_find_options(opts, self.conn.collection::<Schema>(COL_NAME).find(filter))
.await?,
))
Some(cursor) => cursor,
let mut count: u64 = 0;
let mut list = Vec::new();
while let Some(item) = cursor.try_next().await? {
list.push(item);
if let Some(cursor_max) = opts.cursor_max {
count += 1;
if count >= cursor_max {
return Ok((list, Some(cursor)));
Ok((list, None))
async fn get(&self, cond: &QueryCond) -> Result<Option<Application>, Box<dyn StdError>> {
let filter = get_query_filter(cond);
let mut cursor = self
.find(filter)
if let Some(item) = cursor.try_next().await? {
return Ok(Some(Application {
application_id: item.application_id,
code: item.code,
unit_id: item.unit_id,
unit_code: item.unit_code,
created_at: item.created_at.into(),
modified_at: item.modified_at.into(),
host_uri: item.host_uri,
name: item.name,
info: bson::from_document(item.info)?,
}));
Ok(None)
async fn add(&self, application: &Application) -> Result<(), Box<dyn StdError>> {
let item = Schema {
application_id: application.application_id.clone(),
code: application.code.clone(),
unit_id: application.unit_id.clone(),
unit_code: application.unit_code.clone(),
created_at: application.created_at.into(),
modified_at: application.modified_at.into(),
host_uri: application.host_uri.clone(),
name: application.name.clone(),
info: bson::to_document(&application.info)?,
self.conn
.insert_one(item)
async fn del(&self, cond: &QueryCond) -> Result<(), Box<dyn StdError>> {
.delete_many(filter)
async fn update(
cond: &UpdateQueryCond,
updates: &Updates,
) -> Result<(), Box<dyn StdError>> {
let filter = get_update_query_filter(cond);
if let Some(updates) = get_update_doc(updates) {
.update_one(filter, updates)
return Ok(());
impl DbCursor {
/// To create the cursor instance with a collection cursor.
pub fn new(cursor: MongoDbCursor<Schema>) -> Self {
DbCursor { cursor, offset: 0 }
impl Cursor for DbCursor {
async fn try_next(&mut self) -> Result<Option<Application>, Box<dyn StdError>> {
if let Some(item) = self.cursor.try_next().await? {
self.offset += 1;
fn offset(&self) -> u64 {
self.offset
/// Transforms query conditions to the MongoDB document.
fn get_query_filter(cond: &QueryCond) -> Document {
let mut filter = Document::new();
if let Some(value) = cond.unit_id {
filter.insert("unitId", value);
if let Some(value) = cond.application_id {
filter.insert("applicationId", value);
if let Some(value) = cond.code {
filter.insert("code", value);
filter
fn get_list_query_filter(cond: &ListQueryCond) -> Document {
if let Some(value) = cond.code_contains {
filter.insert(
"code",
Regex {
pattern: value.to_string(),
options: "i".to_string(),
},
);
if let Some(value) = cond.name_contains {
"name",
/// Transforms model options to the options.
fn build_find_options<'a, T>(opts: &ListOptions, mut find: Find<'a, T>) -> Find<'a, T>
where
T: Send + Sync,
{
if let Some(offset) = opts.offset {
find = find.skip(offset);
if let Some(limit) = opts.limit {
if limit > 0 {
find = find.limit(limit as i64);
if let Some(sort_list) = opts.sort.as_ref() {
if sort_list.len() > 0 {
let mut sort_opts = Document::new();
for cond in sort_list.iter() {
let key = match cond.key {
SortKey::CreatedAt => "createdAt",
SortKey::ModifiedAt => "modifiedAt",
SortKey::Code => "code",
SortKey::Name => "name",
if cond.asc {
sort_opts.insert(key.to_string(), 1);
} else {
sort_opts.insert(key.to_string(), -1);
find = find.sort(sort_opts);
find
fn get_update_query_filter(cond: &UpdateQueryCond) -> Document {
doc! {"applicationId": cond.application_id}
/// Transforms the model object to the MongoDB document.
fn get_update_doc(updates: &Updates) -> Option<Document> {
let mut count = 0;
let mut document = Document::new();
if let Some(value) = updates.modified_at.as_ref() {
document.insert(
"modifiedAt",
DateTime::from_millis(value.timestamp_millis()),
if let Some(value) = updates.host_uri {
document.insert("hostUri", value);
if let Some(value) = updates.name {
document.insert("name", value);
if let Some(value) = updates.info {
"info",
match bson::to_document(value) {
Err(_) => return None,
Ok(doc) => doc,
if count == 0 {
return None;
Some(doc! {"$set": document})