feat: add local_auth entity and restructure project entities
Some checks failed
ci/woodpecker/push/check_fmt Pipeline failed

This commit is contained in:
Mika Bomm 2025-04-03 11:04:49 +02:00
parent 8e460ec6dd
commit 60805ea449
16 changed files with 76 additions and 19 deletions

View file

@ -5,7 +5,7 @@ DB_PASSWORD=
DB_HOST=
DB_PORT=
DATABASE_URL=postgresql://${DB_USER}:${DB_PASSWORD}@${DB_HOST}:{DB_PORT}/${DB_NAME}
DATABASE_URL=postgresql://${DB_USER}:${DB_PASSWORD}@${DB_HOST}:${DB_PORT}/${DB_NAME}
# Redis section
REDIS_HOST=

View file

@ -1,5 +1,6 @@
use actix_web::web::{self, ServiceConfig};
mod auth;
mod class;
mod group;
mod project;
@ -11,5 +12,6 @@ pub fn register_controllers(cfg: &mut ServiceConfig) {
.service(web::scope("/group").configure(group::setup))
.service(web::scope("/user").configure(user::setup))
.service(web::scope("/class").configure(class::setup))
.service(web::scope("/template").configure(template::setup));
.service(web::scope("/template").configure(template::setup))
.service(web::scope("/auth").configure(auth::setup));
}

View file

@ -0,0 +1,25 @@
use actix_session::Session;
use actix_web::{
HttpResponse, get, post,
web::{self, ServiceConfig},
};
use serde::Deserialize;
use crate::error::ApiError;
#[derive(Deserialize)]
struct LoginRequest {
username: String,
password: String,
}
pub fn setup(cfg: &mut ServiceConfig) {
cfg.service(login);
}
#[post("/login")]
async fn login(
login_request: web::Json<LoginRequest>,
session: Session,
) -> Result<HttpResponse, ApiError> {
}

View file

@ -1,5 +1,7 @@
use sea_orm::{ConnectOptions, DatabaseConnection};
mod auth;
pub mod entity;
mod group;
pub mod project;
mod user;

View file

@ -0,0 +1 @@

View file

@ -1,4 +1,4 @@
//! `SeaORM` Entity, @generated by sea-orm-codegen 1.1.4
//! `SeaORM` Entity, @generated by sea-orm-codegen 1.1.7
use sea_orm::entity::prelude::*;
use serde::{Deserialize, Serialize};

View file

@ -0,0 +1,17 @@
//! `SeaORM` Entity, @generated by sea-orm-codegen 1.1.7
use sea_orm::entity::prelude::*;
use serde::{Deserialize, Serialize};
#[derive(Clone, Debug, PartialEq, DeriveEntityModel, Eq, Serialize, Deserialize)]
#[sea_orm(table_name = "local_auth")]
pub struct Model {
#[sea_orm(primary_key, auto_increment = false)]
pub id: Uuid,
pub hash: String,
}
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
pub enum Relation {}
impl ActiveModelBehavior for ActiveModel {}

View file

@ -0,0 +1,9 @@
//! `SeaORM` Entity, @generated by sea-orm-codegen 1.1.7
pub mod prelude;
pub mod group;
pub mod local_auth;
pub mod project;
pub mod user;
pub mod user_group_project;

View file

@ -1,6 +1,7 @@
//! `SeaORM` Entity, @generated by sea-orm-codegen 1.1.4
//! `SeaORM` Entity, @generated by sea-orm-codegen 1.1.7
pub use super::group::Entity as Group;
pub use super::local_auth::Entity as LocalAuth;
pub use super::project::Entity as Project;
pub use super::user::Entity as User;
pub use super::user_group_project::Entity as UserGroupProject;

View file

@ -1,4 +1,4 @@
//! `SeaORM` Entity, @generated by sea-orm-codegen 1.1.4
//! `SeaORM` Entity, @generated by sea-orm-codegen 1.1.7
use sea_orm::entity::prelude::*;
use serde::{Deserialize, Serialize};

View file

@ -1,4 +1,4 @@
//! `SeaORM` Entity, @generated by sea-orm-codegen 1.1.4
//! `SeaORM` Entity, @generated by sea-orm-codegen 1.1.7
use sea_orm::entity::prelude::*;
use serde::{Deserialize, Serialize};
@ -8,6 +8,7 @@ use serde::{Deserialize, Serialize};
pub struct Model {
#[sea_orm(primary_key, auto_increment = false)]
pub id: Uuid,
#[sea_orm(unique)]
pub name: String,
pub role: String,
}

View file

@ -1,4 +1,4 @@
//! `SeaORM` Entity, @generated by sea-orm-codegen 1.1.4
//! `SeaORM` Entity, @generated by sea-orm-codegen 1.1.7
use sea_orm::entity::prelude::*;
use serde::{Deserialize, Serialize};

View file

@ -1 +0,0 @@
pub mod project;

View file

@ -1,8 +0,0 @@
use sea_orm::prelude::Uuid;
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug)]
pub struct UpdateProject {
pub id: Uuid,
pub name: String,
}

View file

@ -7,9 +7,15 @@ use log::debug;
mod controller;
mod db;
mod dto;
mod error;
pub use db::entity;
#[derive(Clone)]
struct AppConfig {
ldap_auth: bool,
}
#[actix_web::main]
async fn main() -> std::io::Result<()> {
dotenvy::dotenv().ok();
@ -21,6 +27,8 @@ async fn main() -> std::io::Result<()> {
let redis_conn = connect_to_redis_database().await;
let app_config = AppConfig { ldap_auth: false };
// use dotenvy here to get SECRET_KEY
let secret_key = Key::generate();
debug!("Secret Key {:?}", secret_key.master());
@ -29,6 +37,7 @@ async fn main() -> std::io::Result<()> {
let app = App::new()
.app_data(web::Data::new(database.clone()))
.app_data(web::Data::new(Argon2::default()))
.app_data(web::Data::new(app_config.clone()))
.wrap(Logger::default())
.wrap(SessionMiddleware::new(
redis_conn.clone(),

View file

@ -40,8 +40,7 @@ fn main() {
.arg("generate")
.arg("entity")
.arg("-o")
.arg("crates/entity/src/")
.arg("--lib")
.arg("crates/backend/src/db/entity/")
.arg("--with-serde")
.arg("both")
.current_dir(&workspace_dir)