diff --git a/bruno/project/Create Project.bru b/bruno/project/Create Project.bru index 0974523..b899b41 100644 --- a/bruno/project/Create Project.bru +++ b/bruno/project/Create Project.bru @@ -1,7 +1,7 @@ meta { name: Create Project type: http - seq: 1 + seq: 3 } post { diff --git a/bruno/project/Delete Project.bru b/bruno/project/Delete Project.bru index 702cf94..930d813 100644 --- a/bruno/project/Delete Project.bru +++ b/bruno/project/Delete Project.bru @@ -1,7 +1,7 @@ meta { name: Delete Project type: http - seq: 2 + seq: 4 } delete { diff --git a/bruno/project/Get Projects.bru b/bruno/project/Get Projects.bru new file mode 100644 index 0000000..5d36c0c --- /dev/null +++ b/bruno/project/Get Projects.bru @@ -0,0 +1,11 @@ +meta { + name: Get Projects + type: http + seq: 1 +} + +get { + url: {{api_base}}/project + body: none + auth: inherit +} diff --git a/bruno/project/Get specific Project.bru b/bruno/project/Get specific Project.bru new file mode 100644 index 0000000..e927199 --- /dev/null +++ b/bruno/project/Get specific Project.bru @@ -0,0 +1,15 @@ +meta { + name: Get specific Project + type: http + seq: 2 +} + +get { + url: {{api_base}}/project/:id + body: none + auth: inherit +} + +params:path { + id: 1c2bc42d-20d7-4cec-953f-acf691bad55a +} diff --git a/crates/backend/src/controller/project.rs b/crates/backend/src/controller/project.rs index 887a440..e2c9c46 100644 --- a/crates/backend/src/controller/project.rs +++ b/crates/backend/src/controller/project.rs @@ -1,5 +1,5 @@ use actix_web::{Responder, Result, delete, get, post, web}; -use log::info; +use log::debug; use sea_orm::prelude::Uuid; use serde::Deserialize; @@ -17,6 +17,30 @@ pub fn setup(cfg: &mut actix_web::web::ServiceConfig) { .service(get_projects); } +#[get("")] +async fn get_projects( + db: web::Data, +) -> Result>, ApiError> { + debug!("Fetching all projects"); + + let projects = db.get_projects().await?; + + Ok(web::Json(projects)) +} + +#[get("/{id}")] +async fn get_project( + db: web::Data, + path: web::Path, +) -> Result, ApiError> { + debug!("Fetching project with id: {}", path); + let id = path.into_inner(); + + let project = db.get_project(&id).await?; + + Ok(web::Json(project.unwrap())) +} + #[post("")] async fn create_project( db: web::Data, @@ -40,8 +64,3 @@ async fn delete_project( result.rows_affected, id ))) } - -#[get("")] -async fn get_projects() -> impl Responder { - "" -} diff --git a/crates/backend/src/db/project.rs b/crates/backend/src/db/project.rs index c1f84d2..72c1f1f 100644 --- a/crates/backend/src/db/project.rs +++ b/crates/backend/src/db/project.rs @@ -1,6 +1,6 @@ use super::Database; use crate::error::ApiError; -use log::info; +use log::debug; use entity::project; use sea_orm::ActiveValue::{NotSet, Set}; @@ -8,7 +8,30 @@ use sea_orm::prelude::Uuid; use sea_orm::{ActiveModelTrait, DeleteResult, EntityTrait}; impl Database { + pub async fn get_projects(&self) -> Result, ApiError> { + debug!("Fetching all projects"); + + let projects = project::Entity::find().all(&self.conn).await?; + Ok(projects) + } + + // TODO: This is not working yet + pub async fn get_project(&self, id: &Uuid) -> Result, ApiError> { + debug!("Fetching project with id: {}", id); + + let project = project::Entity::find_by_id(id.to_owned()) + .one(&self.conn) + .await?; + + if project.is_none() { + return Err(ApiError::NotFound); + } + Ok(project) + } + pub async fn create_project(&self, name: &str) -> Result { + debug!("Creating project with name: {}", name); + let project = project::ActiveModel { id: NotSet, name: Set(name.to_owned()), @@ -19,7 +42,7 @@ impl Database { } pub async fn delete_project(&self, id: &Uuid) -> Result { - info!("Deleting project with id: {}", id); + debug!("Deleting project with id: {}", id); let project = project::Entity::delete_by_id(id.to_owned()) .exec(&self.conn) diff --git a/crates/backend/src/db/user.rs b/crates/backend/src/db/user.rs index 83052e7..f4f0b8b 100644 --- a/crates/backend/src/db/user.rs +++ b/crates/backend/src/db/user.rs @@ -2,4 +2,8 @@ use super::Database; impl Database { async fn create_user() {} + + async fn verify_user() {} + + async fn change_user_password() {} }