Add relays websocket

This commit is contained in:
Tobias Reisinger 2024-04-25 19:45:22 +02:00
parent 27739e2b71
commit ab7090f2c5
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
6 changed files with 216 additions and 14 deletions
emgauwa-core/src/handlers/v1/ws

View file

@ -7,9 +7,11 @@ use emgauwa_lib::errors::EmgauwaError;
use sqlx::{Pool, Sqlite};
use crate::app_state::AppState;
use crate::handlers::v1::ws::controllers::ControllerWs;
use crate::handlers::v1::ws::controllers::ControllersWs;
use crate::handlers::v1::ws::relays::RelaysWs;
pub mod controllers;
pub mod relays;
#[get("/ws/controllers")]
pub async fn ws_controllers(
@ -19,7 +21,7 @@ pub async fn ws_controllers(
stream: web::Payload,
) -> Result<HttpResponse, EmgauwaError> {
let resp = ws::start(
ControllerWs {
ControllersWs {
pool: pool.get_ref().clone(),
controller_uid: None,
app_state: app_state.get_ref().clone(),
@ -31,3 +33,21 @@ pub async fn ws_controllers(
.map_err(|_| EmgauwaError::Internal(String::from("error starting websocket")));
resp
}
#[get("/ws/relays")]
pub async fn ws_relays(
app_state: web::Data<Addr<AppState>>,
req: HttpRequest,
stream: web::Payload,
) -> Result<HttpResponse, EmgauwaError> {
let resp = ws::start(
RelaysWs {
app_state: app_state.get_ref().clone(),
hb: Instant::now(),
},
&req,
stream,
)
.map_err(|_| EmgauwaError::Internal(String::from("error starting websocket")));
resp
}