diff --git a/bruno/projects/Create Project.bru b/bruno/projects/Create Project.bru index 7ad2fa6..af88881 100644 --- a/bruno/projects/Create Project.bru +++ b/bruno/projects/Create Project.bru @@ -6,6 +6,16 @@ meta { post { url: {{api_base}}/projects - body: none + body: json auth: inherit } + +body:json { + { + "name": "{{name}}" + } +} + +vars:pre-request { + name: FillThisOutButDontCommitIt! +} \ No newline at end of file diff --git a/crates/backend/Cargo.toml b/crates/backend/Cargo.toml index 261c06c..85c8684 100644 --- a/crates/backend/Cargo.toml +++ b/crates/backend/Cargo.toml @@ -14,11 +14,16 @@ actix-files = "0.6" tracing-actix-web = "0.7.16" argon2 = "0.5.3" +thiserror = "2" -env_logger = "0.11" +env_logger = "0.11" -serde = {version = "1", features = ["derive"]} -sea-orm ={ version = "1.1", features = ["sqlx-postgres", "runtime-tokio-rustls", "macros"]} +serde = { version = "1", features = ["derive"] } +sea-orm = { version = "1.1", features = [ + "sqlx-postgres", + "runtime-tokio-rustls", + "macros", +] } dotenvy = "0.15" diff --git a/crates/backend/src/controller.rs b/crates/backend/src/controller.rs index c0fd585..b1e8a58 100644 --- a/crates/backend/src/controller.rs +++ b/crates/backend/src/controller.rs @@ -1,7 +1,7 @@ use actix_web::web::{self, ServiceConfig}; -mod projects; +mod project; pub fn register_controllers(cfg: &mut ServiceConfig) { - cfg.service(web::scope("/projects").configure(projects::setup)); + cfg.service(web::scope("/projects").configure(project::setup)); } diff --git a/crates/backend/src/controller/project.rs b/crates/backend/src/controller/project.rs new file mode 100644 index 0000000..9aa072e --- /dev/null +++ b/crates/backend/src/controller/project.rs @@ -0,0 +1,24 @@ +use actix_web::{Result, web}; +use serde::Deserialize; + +use crate::db::Database; +use crate::error::ApiError; + +#[derive(Deserialize)] +struct CreateProject { + name: String, +} + +pub fn setup(cfg: &mut actix_web::web::ServiceConfig) { + cfg.service(create_project); +} + +#[actix_web::post("")] +async fn create_project( + db: web::Data, + create_project_struct: web::Json, +) -> Result, ApiError> { + let result = db.create_project(&create_project_struct.name).await?; + + Ok(web::Json(result)) +} diff --git a/crates/backend/src/controller/projects.rs b/crates/backend/src/controller/projects.rs deleted file mode 100644 index b28bf74..0000000 --- a/crates/backend/src/controller/projects.rs +++ /dev/null @@ -1,10 +0,0 @@ -use actix_web::Result; - -pub fn setup(cfg: &mut actix_web::web::ServiceConfig) { - cfg.service(create_project); -} - -#[actix_web::post("")] -async fn create_project() -> Result { - Ok(actix_web::HttpResponse::Ok().finish()) -} diff --git a/crates/backend/src/db.rs b/crates/backend/src/db.rs index 89568e8..3265f52 100644 --- a/crates/backend/src/db.rs +++ b/crates/backend/src/db.rs @@ -1,15 +1,16 @@ use sea_orm::{ConnectOptions, DatabaseConnection}; +mod project; #[derive(Clone)] pub struct Database { - conn: DatabaseConnection + conn: DatabaseConnection, } impl Database { pub async fn new(options: ConnectOptions) -> Result { Ok(Database { - conn: sea_orm::Database::connect(options).await? + conn: sea_orm::Database::connect(options).await?, }) } -} \ No newline at end of file +} diff --git a/crates/backend/src/db/project.rs b/crates/backend/src/db/project.rs new file mode 100644 index 0000000..763bf9f --- /dev/null +++ b/crates/backend/src/db/project.rs @@ -0,0 +1,18 @@ +use super::Database; +use crate::error::ApiError; + +use entity::project; +use sea_orm::ActiveModelTrait; +use sea_orm::ActiveValue::{NotSet, Set}; + +impl Database { + pub async fn create_project(&self, name: &str) -> Result { + let project = project::ActiveModel { + id: NotSet, + name: Set(name.to_owned()), + }; + + let project = project.insert(&self.conn).await?; + Ok(project) + } +} diff --git a/crates/backend/src/error.rs b/crates/backend/src/error.rs new file mode 100644 index 0000000..dd717e1 --- /dev/null +++ b/crates/backend/src/error.rs @@ -0,0 +1,20 @@ +use actix_web::{HttpResponse, ResponseError, http::StatusCode}; +use thiserror::Error; + +#[derive(Error, Debug)] +pub enum ApiError { + #[error("Database Error: {0}")] + Database(#[from] sea_orm::DbErr), +} + +impl ResponseError for ApiError { + fn status_code(&self) -> StatusCode { + match self { + ApiError::Database(..) => StatusCode::INTERNAL_SERVER_ERROR, + } + } + + fn error_response(&self) -> HttpResponse { + HttpResponse::build(self.status_code()).body(self.to_string()) + } +} diff --git a/crates/backend/src/main.rs b/crates/backend/src/main.rs index 2eeea00..918d9d8 100644 --- a/crates/backend/src/main.rs +++ b/crates/backend/src/main.rs @@ -7,6 +7,7 @@ use std::env; mod controller; mod db; +mod error; #[actix_web::main] async fn main() -> std::io::Result<()> {