BROKEN: Switching to dedicated handler task
parent
1494c4f048
commit
24aaac1f74
|
@ -2346,6 +2346,7 @@ dependencies = [
|
||||||
"futures-core",
|
"futures-core",
|
||||||
"pin-project-lite",
|
"pin-project-lite",
|
||||||
"tokio",
|
"tokio",
|
||||||
|
"tokio-util",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
|
|
|
@ -18,7 +18,7 @@ tracing = "0.1"
|
||||||
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
||||||
tower-http = { version = "0.4.4", features = ["full"] }
|
tower-http = { version = "0.4.4", features = ["full"] }
|
||||||
ructe.workspace = true
|
ructe.workspace = true
|
||||||
tokio-stream = "0.1.14"
|
tokio-stream = { version = "0.1.14", features = ["sync"] }
|
||||||
futures-util = "0.3.28"
|
futures-util = "0.3.28"
|
||||||
diesel = { version = "2.1.0", features = ["chrono"] }
|
diesel = { version = "2.1.0", features = ["chrono"] }
|
||||||
diesel-async = { version = "0.4.1", features = ["mysql", "deadpool"] }
|
diesel-async = { version = "0.4.1", features = ["mysql", "deadpool"] }
|
||||||
|
|
38
src/api.rs
38
src/api.rs
|
@ -1,11 +1,21 @@
|
||||||
use axum::extract::Path;
|
use axum::{
|
||||||
use axum::Form;
|
extract::{Path, State},
|
||||||
use axum::{extract::State, response::IntoResponse, routing::post};
|
response::{
|
||||||
use cm_lib::models::{NewDrink, Shift};
|
sse::{Event, KeepAlive},
|
||||||
use cm_lib::schema::shifts;
|
IntoResponse, Sse,
|
||||||
|
},
|
||||||
|
routing::{get, post},
|
||||||
|
Form,
|
||||||
|
};
|
||||||
|
use cm_lib::{
|
||||||
|
models::{NewDrink, Shift},
|
||||||
|
schema::shifts,
|
||||||
|
};
|
||||||
use diesel::{ExpressionMethods, OptionalExtension, QueryDsl, SelectableHelper};
|
use diesel::{ExpressionMethods, OptionalExtension, QueryDsl, SelectableHelper};
|
||||||
use diesel_async::{scoped_futures::ScopedFutureExt, AsyncConnection, RunQueryDsl};
|
use diesel_async::{scoped_futures::ScopedFutureExt, AsyncConnection, RunQueryDsl};
|
||||||
|
use futures_util::Stream;
|
||||||
use serde::Deserialize;
|
use serde::Deserialize;
|
||||||
|
use tokio_stream::{wrappers::errors::BroadcastStreamRecvError, StreamExt as _};
|
||||||
|
|
||||||
use crate::axum_ructe::render;
|
use crate::axum_ructe::render;
|
||||||
use crate::AppState;
|
use crate::AppState;
|
||||||
|
@ -15,6 +25,7 @@ pub(crate) fn router() -> axum::Router<AppState> {
|
||||||
.route("/drinks", post(add_drink))
|
.route("/drinks", post(add_drink))
|
||||||
.route("/shifts/open", post(open_shift))
|
.route("/shifts/open", post(open_shift))
|
||||||
.route("/shifts/:id/close", post(close_shift))
|
.route("/shifts/:id/close", post(close_shift))
|
||||||
|
.route("/ada/updates", get(ada_subscribe))
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn open_shift(State(state): State<AppState>) -> impl IntoResponse {
|
async fn open_shift(State(state): State<AppState>) -> impl IntoResponse {
|
||||||
|
@ -110,3 +121,20 @@ async fn add_drink(
|
||||||
render!(crate::templates::home_html, Some(open_shift)),
|
render!(crate::templates::home_html, Some(open_shift)),
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async fn ada_subscribe(
|
||||||
|
State(state): State<AppState>,
|
||||||
|
) -> Sse<impl Stream<Item = Result<Event, BroadcastStreamRecvError>>> {
|
||||||
|
let stream = tokio_stream::wrappers::BroadcastStream::new(state.ada_sender.subscribe())
|
||||||
|
.map(|r| r.map(|s| Event::default().event("ada").data(s)));
|
||||||
|
|
||||||
|
Sse::new(stream).keep_alive(KeepAlive::default())
|
||||||
|
}
|
||||||
|
|
||||||
|
async fn get_ada_list() -> String {
|
||||||
|
let mut buf = Vec::new();
|
||||||
|
|
||||||
|
crate::templates::components::ada_list_html(&mut buf).unwrap();
|
||||||
|
|
||||||
|
String::from_utf8(buf).unwrap()
|
||||||
|
}
|
||||||
|
|
|
@ -45,15 +45,22 @@ fn establish_connection() -> Pool<AsyncMysqlConnection> {
|
||||||
.expect("Error making connection pool")
|
.expect("Error making connection pool")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[derive(Clone)]
|
||||||
|
enum AdaUpdate {
|
||||||
|
RefreshDancers,
|
||||||
|
}
|
||||||
|
|
||||||
#[derive(Clone)]
|
#[derive(Clone)]
|
||||||
pub(crate) struct AppState {
|
pub(crate) struct AppState {
|
||||||
connection: Pool<AsyncMysqlConnection>,
|
connection: Pool<AsyncMysqlConnection>,
|
||||||
|
ada_sender: tokio::sync::broadcast::Sender<AdaUpdate>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl AppState {
|
impl AppState {
|
||||||
fn init() -> Self {
|
fn init() -> Self {
|
||||||
Self {
|
Self {
|
||||||
connection: establish_connection(),
|
connection: establish_connection(),
|
||||||
|
ada_sender: tokio::sync::broadcast::channel(10).0,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
|
|
||||||
@:base_html({
|
@:base_html({
|
||||||
|
|
||||||
<div style="display: flex; flex-direction: column;">
|
<div style="display: flex; flex-direction: column;" hx-ext="sse" sse-connect="/api/ada/updates" sse-swap="ada">
|
||||||
@:ada_list_html()
|
@:ada_list_html()
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue