feat: add local_auth entity and restructure project entities
Some checks failed
ci/woodpecker/push/check_fmt Pipeline failed
Some checks failed
ci/woodpecker/push/check_fmt Pipeline failed
This commit is contained in:
parent
8e460ec6dd
commit
60805ea449
16 changed files with 76 additions and 19 deletions
|
@ -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=
|
||||
|
|
|
@ -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));
|
||||
}
|
||||
|
|
25
crates/backend/src/controller/auth.rs
Normal file
25
crates/backend/src/controller/auth.rs
Normal 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> {
|
||||
}
|
|
@ -1,5 +1,7 @@
|
|||
use sea_orm::{ConnectOptions, DatabaseConnection};
|
||||
|
||||
mod auth;
|
||||
pub mod entity;
|
||||
mod group;
|
||||
pub mod project;
|
||||
mod user;
|
||||
|
|
1
crates/backend/src/db/entity.rs
Normal file
1
crates/backend/src/db/entity.rs
Normal file
|
@ -0,0 +1 @@
|
|||
|
|
@ -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};
|
17
crates/backend/src/db/entity/local_auth.rs
Normal file
17
crates/backend/src/db/entity/local_auth.rs
Normal 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 {}
|
9
crates/backend/src/db/entity/mod.rs
Normal file
9
crates/backend/src/db/entity/mod.rs
Normal 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;
|
|
@ -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;
|
|
@ -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};
|
|
@ -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,
|
||||
}
|
|
@ -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};
|
|
@ -1 +0,0 @@
|
|||
pub mod project;
|
|
@ -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,
|
||||
}
|
|
@ -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(),
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue