- split settings module into per-struct files
- add DatabaseSettings with default in-memory SQLite path
- implement RelayApi struct with GET /relays and POST
/relays/{id}/toggle
- wire create_relay_controller and create_label_repository into
Application::build() with mock/real selection via cfg!(test) || CI
- register RelayApi in OpenApiService alongside existing APIs
39 lines
746 B
Rust
39 lines
746 B
Rust
//! API route handlers for the backend server.
|
|
//!
|
|
//! This module contains all the HTTP endpoint handlers organized by functionality:
|
|
//! - Health checks
|
|
//! - Application metadata
|
|
|
|
use poem_openapi::Tags;
|
|
|
|
mod health;
|
|
mod meta;
|
|
|
|
use crate::settings::Settings;
|
|
|
|
#[derive(Tags)]
|
|
pub enum ApiCategory {
|
|
Health,
|
|
Meta,
|
|
Relays,
|
|
}
|
|
|
|
pub(crate) struct Api {
|
|
health: health::HealthApi,
|
|
meta: meta::MetaApi,
|
|
}
|
|
|
|
impl From<&Settings> for Api {
|
|
fn from(value: &Settings) -> Self {
|
|
let health = health::HealthApi;
|
|
let meta = meta::MetaApi::from(&value.application);
|
|
Self { health, meta }
|
|
}
|
|
}
|
|
|
|
impl Api {
|
|
pub fn apis(self) -> (health::HealthApi, meta::MetaApi) {
|
|
(self.health, self.meta)
|
|
}
|
|
}
|