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
use super::api;
use crate::amqp::init_mq;
use crate::cache::pool::RedisPool;
use crate::cache::RedisPools;
use crate::grpc::client::GrpcClients;
use crate::shutdown_signal;
use crate::Config;
use axum::{
error_handling::HandleErrorLayer,
extract::Extension,
http::{HeaderValue, StatusCode},
routing, BoxError, Router,
};
use std::collections::VecDeque;
use std::net::SocketAddr;
use std::sync::{Arc, Mutex};
use svc_gis_client_grpc::client::AircraftPosition;
use tower::{
buffer::BufferLayer,
limit::{ConcurrencyLimitLayer, RateLimitLayer},
ServiceBuilder,
};
use tower_http::cors::{Any, CorsLayer};
use tower_http::trace::TraceLayer;
#[cfg(not(tarpaulin_include))]
pub async fn rest_server(
config: Config,
grpc_clients: GrpcClients,
ring: Arc<Mutex<VecDeque<AircraftPosition>>>,
shutdown_rx: Option<tokio::sync::oneshot::Receiver<()>>,
) -> Result<(), ()> {
rest_info!("(rest_server) entry.");
let rest_port = config.docker_port_rest;
let full_rest_addr: SocketAddr = match format!("[::]:{}", rest_port).parse() {
Ok(addr) => addr,
Err(e) => {
rest_error!("(rest_server) invalid address: {:?}, exiting.", e);
return Err(());
}
};
let cors_allowed_origin = match config.rest_cors_allowed_origin.parse::<HeaderValue>() {
Ok(url) => url,
Err(e) => {
rest_error!(
"(rest_server) invalid cors_allowed_origin address: {:?}, exiting.",
e
);
return Err(());
}
};
let rate_limit = config.rest_request_limit_per_second as u64;
let concurrency_limit = config.rest_concurrency_limit_per_service as usize;
let limit_middleware = ServiceBuilder::new()
.layer(TraceLayer::new_for_http())
.layer(HandleErrorLayer::new(|e: BoxError| async move {
rest_warn!("(server) too many requests: {}", e);
(
StatusCode::TOO_MANY_REQUESTS,
"(server) too many requests.".to_string(),
)
}))
.layer(BufferLayer::new(100))
.layer(ConcurrencyLimitLayer::new(concurrency_limit))
.layer(RateLimitLayer::new(
rate_limit,
std::time::Duration::from_secs(1),
));
let pools = RedisPools {
mavlink: RedisPool::new(config.clone(), "tlm:mav").await?,
adsb: RedisPool::new(config.clone(), "tlm:adsb").await?,
};
let mq_channel = init_mq(config.clone())
.await
.map_err(|_| rest_error!("(rest_server) could not create RabbitMQ Channel."));
let app = Router::new()
.route("/health", routing::get(api::health::health_check))
.route(
"/telemetry/mavlink/adsb",
routing::post(api::mavlink::mavlink_adsb),
)
.route(
"/telemetry/aircraft/adsb",
routing::post(api::aircraft::aircraft_adsb),
)
.layer(
CorsLayer::new()
.allow_origin(cors_allowed_origin)
.allow_headers(Any)
.allow_methods(Any),
)
.layer(limit_middleware)
.layer(Extension(pools))
.layer(Extension(mq_channel))
.layer(Extension(grpc_clients))
.layer(Extension(ring));
match axum::Server::bind(&full_rest_addr)
.serve(app.into_make_service())
.with_graceful_shutdown(shutdown_signal("rest", shutdown_rx))
.await
{
Ok(_) => {
rest_info!("(rest_server) hosted at: {}.", full_rest_addr);
Ok(())
}
Err(e) => {
rest_error!("(rest_server) could not start server: {}", e);
Err(())
}
}
}