1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
use axum::{
extract::{Form, Path, State},
http::StatusCode,
response::{IntoResponse, Redirect, Response},
routing::post,
Router,
};
use super::app::EventsError;
use crate::{
app::App,
clock::RequestedAt,
error::InternalError,
repo::{channel, login::Login},
};
pub fn router() -> Router<App> {
Router::new()
.route("/create", post(on_create))
.route("/:channel/send", post(on_send))
}
#[derive(serde::Deserialize)]
struct CreateRequest {
name: String,
}
async fn on_create(
State(app): State<App>,
_: Login, // requires auth, but doesn't actually care who you are
Form(form): Form<CreateRequest>,
) -> Result<impl IntoResponse, InternalError> {
app.channels().create(&form.name).await?;
Ok(Redirect::to("/"))
}
#[derive(serde::Deserialize)]
struct SendRequest {
message: String,
}
async fn on_send(
Path(channel): Path<channel::Id>,
RequestedAt(sent_at): RequestedAt,
State(app): State<App>,
login: Login,
Form(form): Form<SendRequest>,
) -> Result<impl IntoResponse, ErrorResponse> {
app.channels()
.send(&login, &channel, &form.message, &sent_at)
.await
// Could impl `From` here, but it's more code and this is used once.
.map_err(ErrorResponse)?;
Ok(Redirect::to(&format!("/{}", channel)))
}
struct ErrorResponse(EventsError);
impl IntoResponse for ErrorResponse {
fn into_response(self) -> Response {
let Self(error) = self;
match error {
not_found @ EventsError::ChannelNotFound(_) => {
(StatusCode::NOT_FOUND, not_found.to_string()).into_response()
}
EventsError::DatabaseError(error) => InternalError::from(error).into_response(),
}
}
}
|