- Enforce axum best practices across all 13 workspace crates (max 200 LOC/file, no comments, no unwrap, clean architecture) - Fix domain→infrastructure dependency inversions in imphnen-iam and imphnen-dimentorin - Extract imphnen-storage (MinIO) and imphnen-email (Lettre) as standalone crates - Centralize all config in ENV struct: CDN_URL, CORS_ALLOWED_ORIGINS - Centralize SMTP through imphnen-email; remove dead HackathonConfig - Centralize database: QR crate now shares main DB pool (single DATABASE_URL) - Rename QR users table to qr_users to avoid collision with main users table - Merge imphnen-qr into imphnen-cms/src/qr (13 crates, down from 14) - Restructure imphnen-hackathon flat modules into clean architecture - Remove all stale env vars from .env.example (SurrealDB, QR_JWT, Hackathon infra) - Fix Dockerfile to include all current workspace crates - Bump all crate versions 0.2.0 → 0.3.0 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
48 lines
1.4 KiB
Rust
48 lines
1.4 KiB
Rust
use super::handlers::{
|
|
delete_testimonial, get_testimonial_by_id, get_testimonial_list,
|
|
patch_update_testimonial, post_create_testimonial,
|
|
};
|
|
use crate::testimonials::application::TestimonialServiceImpl;
|
|
use crate::testimonials::domain::TestimonialService;
|
|
use crate::testimonials::infrastructure::persistence::PostgresTestimonialRepository;
|
|
use axum::{
|
|
Extension, Router,
|
|
routing::{delete, get, patch, post},
|
|
};
|
|
use sea_orm::DatabaseConnection;
|
|
use std::sync::Arc;
|
|
|
|
fn build_service(db: DatabaseConnection) -> Arc<dyn TestimonialService> {
|
|
let repo = Arc::new(PostgresTestimonialRepository::new(db));
|
|
Arc::new(TestimonialServiceImpl::new(repo))
|
|
}
|
|
|
|
pub fn testimonials_public_routes(db: DatabaseConnection) -> Router {
|
|
let service = build_service(db);
|
|
Router::new()
|
|
.route("/cms/landing/testimonials", get(get_testimonial_list))
|
|
.route(
|
|
"/cms/landing/testimonials/detail/{id}",
|
|
get(get_testimonial_by_id),
|
|
)
|
|
.layer(Extension(service))
|
|
}
|
|
|
|
pub fn testimonials_protected_routes(db: DatabaseConnection) -> Router {
|
|
let service = build_service(db);
|
|
Router::new()
|
|
.route(
|
|
"/cms/landing/testimonials/create",
|
|
post(post_create_testimonial),
|
|
)
|
|
.route(
|
|
"/cms/landing/testimonials/update/{id}",
|
|
patch(patch_update_testimonial),
|
|
)
|
|
.route(
|
|
"/cms/landing/testimonials/delete/{id}",
|
|
delete(delete_testimonial),
|
|
)
|
|
.layer(Extension(service))
|
|
}
|