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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
|
use std::sync::{Arc, Mutex};
use serde::Deserialize;
use askama::Template;
use axum::{
extract::State,
routing::get,
Router,
response::Html,
Form,
};
use sqlx::{Connection, SqliteConnection};
use tower_http::services::ServeDir;
mod config;
struct AppState {
callsign : String,
db : Mutex<SqliteConnection>
}
type SharedState = Arc<AppState>;
#[tokio::main]
async fn main() -> std::io::Result<()> {
// simple_logger::
let mut conn = SqliteConnection::connect("sqlite:cats-radio-node.db").await.unwrap();
sqlx::migrate!()
.run(&mut conn)
.await
.expect("could not run SQLx migrations");
let callsign = "HB9EGM-0".to_owned();
let shared_state = Arc::new(AppState {
callsign,
db: Mutex::new(conn)
});
let app = Router::new()
.route("/", get(dashboard))
.route("/incoming", get(incoming))
.route("/send", get(send))
.route("/settings", get(settings))
.route("/form", get(show_form).post(accept_form))
.nest_service("/static", ServeDir::new("static"))
/* requires tracing and tower, e.g.
* tower = { version = "0.4", features = ["util", "timeout"] }
* tower-http = { version = "0.5.0", features = ["add-extension", "trace"] }
* tracing = "0.1"
* tracing-subscriber = { version = "0.3", features = ["env-filter"] }
.layer(
ServiceBuilder::new()
.layer(HandleErrorLayer::new(|error: BoxError| async move {
if error.is::<tower::timeout::error::Elapsed>() {
Ok(StatusCode::REQUEST_TIMEOUT)
} else {
Err((
StatusCode::INTERNAL_SERVER_ERROR,
format!("Unhandled internal error: {error}"),
))
}
}))
.timeout(Duration::from_secs(10))
.layer(TraceLayer::new_for_http())
.into_inner(),
)*/
.with_state(shared_state);
let listener = tokio::net::TcpListener::bind("0.0.0.0:3000").await.unwrap();
axum::serve(listener, app).await.unwrap();
Ok(())
}
#[derive(PartialEq)]
enum ActivePage {
Dashboard,
Incoming,
Send,
Settings,
}
#[derive(Template)]
#[template(path = "dashboard.html")]
struct DashboardTemplate<'a> {
title: &'a str,
page: ActivePage,
callsign: String,
}
async fn dashboard(State(state): State<SharedState>) -> DashboardTemplate<'static> {
DashboardTemplate {
title: "Dashboard",
callsign: state.callsign.clone(),
page: ActivePage::Dashboard,
}
}
#[derive(Template)]
#[template(path = "incoming.html")]
struct IncomingTemplate<'a> {
title: &'a str,
page: ActivePage,
callsign: String,
}
async fn incoming(State(state): State<SharedState>) -> IncomingTemplate<'static> {
IncomingTemplate {
title: "Incoming",
callsign: state.callsign.clone(),
page: ActivePage::Incoming,
}
}
#[derive(Template)]
#[template(path = "send.html")]
struct SendTemplate<'a> {
title: &'a str,
page: ActivePage,
callsign: String,
}
async fn send(State(state): State<SharedState>) -> SendTemplate<'static> {
SendTemplate {
title: "Send",
callsign: state.callsign.clone(),
page: ActivePage::Send,
}
}
#[derive(Template)]
#[template(path = "settings.html")]
struct SettingsTemplate<'a> {
title: &'a str,
page: ActivePage,
callsign: String,
}
async fn settings(State(state): State<SharedState>) -> SettingsTemplate<'static> {
SettingsTemplate {
title: "Settings",
callsign: state.callsign.clone(),
page: ActivePage::Settings,
}
}
async fn show_form() -> Html<&'static str> {
Html(
r#"
<!doctype html>
<html>
<head></head>
<body>
<form action="/" method="post">
<label for="name">
Enter your name:
<input type="text" name="name">
</label>
<label>
Enter your email:
<input type="text" name="email">
</label>
<input type="submit" value="Subscribe!">
</form>
</body>
</html>
"#,
)
}
#[derive(Deserialize, Debug)]
#[allow(dead_code)]
struct Input {
name: String,
email: String,
}
async fn accept_form(Form(input): Form<Input>) {
dbg!(&input);
}
|