From 52f35fc4858cc4a40b6498079e446a15719fd62f Mon Sep 17 00:00:00 2001 From: Mika Date: Wed, 2 Apr 2025 13:57:48 +0200 Subject: [PATCH] WIP: erm, added placeholder functions --- crates/backend/src/controller.rs | 3 + crates/backend/src/controller/group.rs | 21 + crates/backend/src/controller/project.rs | 14 +- crates/backend/src/controller/template.rs | 16 + crates/backend/src/controller/user.rs | 16 + crates/migration/erm.drawio | 752 ++++++++++++++++------ 6 files changed, 634 insertions(+), 188 deletions(-) create mode 100644 crates/backend/src/controller/group.rs create mode 100644 crates/backend/src/controller/template.rs create mode 100644 crates/backend/src/controller/user.rs diff --git a/crates/backend/src/controller.rs b/crates/backend/src/controller.rs index b1e8a58..ec2ef9b 100644 --- a/crates/backend/src/controller.rs +++ b/crates/backend/src/controller.rs @@ -1,6 +1,9 @@ use actix_web::web::{self, ServiceConfig}; +mod group; mod project; +mod template; +mod user; pub fn register_controllers(cfg: &mut ServiceConfig) { cfg.service(web::scope("/projects").configure(project::setup)); diff --git a/crates/backend/src/controller/group.rs b/crates/backend/src/controller/group.rs new file mode 100644 index 0000000..36a378c --- /dev/null +++ b/crates/backend/src/controller/group.rs @@ -0,0 +1,21 @@ +use actix_web::{Responder, delete, get, post}; + +#[get("")] +async fn get_groups() -> impl Responder { + "" +} + +#[get("/{project}")] +async fn get_projects_for_project() -> impl Responder { + "" +} + +#[post("")] +async fn create_group() -> impl Responder { + "" +} + +#[delete("/{id}")] +async fn delete_group() -> impl Responder { + "" +} diff --git a/crates/backend/src/controller/project.rs b/crates/backend/src/controller/project.rs index 9aa072e..d588e67 100644 --- a/crates/backend/src/controller/project.rs +++ b/crates/backend/src/controller/project.rs @@ -1,4 +1,4 @@ -use actix_web::{Result, web}; +use actix_web::{Responder, Result, delete, get, post, web}; use serde::Deserialize; use crate::db::Database; @@ -13,7 +13,7 @@ pub fn setup(cfg: &mut actix_web::web::ServiceConfig) { cfg.service(create_project); } -#[actix_web::post("")] +#[post("")] async fn create_project( db: web::Data, create_project_struct: web::Json, @@ -22,3 +22,13 @@ async fn create_project( Ok(web::Json(result)) } + +#[delete("/{id}")] +async fn delete_project() -> impl Responder { + "" +} + +#[get("")] +async fn get_projects() -> impl Responder { + "" +} diff --git a/crates/backend/src/controller/template.rs b/crates/backend/src/controller/template.rs new file mode 100644 index 0000000..f1ecb8a --- /dev/null +++ b/crates/backend/src/controller/template.rs @@ -0,0 +1,16 @@ +use actix_web::{Responder, delete, get, post}; + +#[get("")] +async fn get_templates() -> impl Responder { + "" +} + +#[post("")] +async fn create_template() -> impl Responder { + "" +} + +#[delete("/{id}")] +async fn delete_template() -> impl Responder { + "" +} diff --git a/crates/backend/src/controller/user.rs b/crates/backend/src/controller/user.rs new file mode 100644 index 0000000..16b6cf2 --- /dev/null +++ b/crates/backend/src/controller/user.rs @@ -0,0 +1,16 @@ +use actix_web::{Responder, delete, get, post}; + +#[get("")] +async fn get_users() -> impl Responder { + "" +} + +#[post("")] +async fn create_user() -> impl Responder { + "" +} + +#[delete("/{id}")] +async fn delete_user() -> impl Responder { + "" +} diff --git a/crates/migration/erm.drawio b/crates/migration/erm.drawio index f23a7d3..e0bfd75 100644 --- a/crates/migration/erm.drawio +++ b/crates/migration/erm.drawio @@ -1,212 +1,592 @@ - + - - + + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - + + + - - + + - + - - - + + + - - + + - - + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +