Created
July 24, 2022 10:37
-
-
Save Mr-Malomz/77f3fafffb8640228d8545d45d1a784b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//imports goes here | |
pub struct DBMongo { | |
db: Database, | |
} | |
impl DBMongo { | |
pub async fn init() -> Self { | |
//init code goes here | |
} | |
fn col_helper<T>(data_source: &Self, collection_name: &str) -> Collection<T> { | |
data_source.db.collection(collection_name) | |
} | |
//Owners logic | |
pub async fn create_owner(&self, new_owner: Owner) -> Result<Owner, Error> { | |
let new_doc = Owner { | |
_id: None, | |
name: new_owner.name.clone(), | |
email: new_owner.email.clone(), | |
phone: new_owner.phone.clone(), | |
}; | |
let col = DBMongo::col_helper::<Owner>(&self, "owner"); | |
let data = col | |
.insert_one(new_doc, None) | |
.await | |
.expect("Error creating owner"); | |
let new_owner = Owner { | |
_id: data.inserted_id.as_object_id(), | |
name: new_owner.name.clone(), | |
email: new_owner.email.clone(), | |
phone: new_owner.phone.clone(), | |
}; | |
Ok(new_owner) | |
} | |
pub async fn get_owners(&self) -> Result<Vec<Owner>, Error> { | |
let col = DBMongo::col_helper::<Owner>(&self, "owner"); | |
let mut cursors = col | |
.find(None, None) | |
.await | |
.expect("Error getting list of owners"); | |
let mut owners: Vec<Owner> = Vec::new(); | |
while let Some(owner) = cursors | |
.try_next() | |
.await | |
.expect("Error mapping through cursor") | |
{ | |
owners.push(owner) | |
} | |
Ok(owners) | |
} | |
pub async fn single_owner(&self, id: &String) -> Result<Owner, Error> { | |
let obj_id = ObjectId::parse_str(id).unwrap(); | |
let filter = doc! {"_id": obj_id}; | |
let col = DBMongo::col_helper::<Owner>(&self, "owner"); | |
let owner_detail = col | |
.find_one(filter, None) | |
.await | |
.expect("Error getting owner's detail"); | |
Ok(owner_detail.unwrap()) | |
} | |
//project logics | |
pub async fn create_project(&self, new_project: Project) -> Result<Project, Error> { | |
let new_doc = Project { | |
_id: None, | |
owner_id: new_project.owner_id.clone(), | |
name: new_project.name.clone(), | |
description: new_project.description.clone(), | |
status: new_project.status.clone(), | |
}; | |
let col = DBMongo::col_helper::<Project>(&self, "project"); | |
let data = col | |
.insert_one(new_doc, None) | |
.await | |
.expect("Error creating project"); | |
let new_project = Project { | |
_id: data.inserted_id.as_object_id(), | |
owner_id: new_project.owner_id.clone(), | |
name: new_project.name.clone(), | |
description: new_project.description.clone(), | |
status: new_project.status.clone(), | |
}; | |
Ok(new_project) | |
} | |
pub async fn get_projects(&self) -> Result<Vec<Project>, Error> { | |
let col = DBMongo::col_helper::<Project>(&self, "project"); | |
let mut cursors = col | |
.find(None, None) | |
.await | |
.expect("Error getting list of projects"); | |
let mut projects: Vec<Project> = Vec::new(); | |
while let Some(project) = cursors | |
.try_next() | |
.await | |
.expect("Error mapping through cursor") | |
{ | |
projects.push(project) | |
} | |
Ok(projects) | |
} | |
pub async fn single_project(&self, id: &String) -> Result<Project, Error> { | |
let obj_id = ObjectId::parse_str(id).unwrap(); | |
let filter = doc! {"_id": obj_id}; | |
let col = DBMongo::col_helper::<Project>(&self, "project"); | |
let project_detail = col | |
.find_one(filter, None) | |
.await | |
.expect("Error getting project's detail"); | |
Ok(project_detail.unwrap()) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment