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
184
185
186
187
188
189
190
191
192
193
194
195
mod client_socket_connection;
mod connection_info;
mod messages;
mod room_actor;
mod server_state;
mod service_actor;
use crate::room_actor::GetConnectionInfo;
use actix_web::error::ErrorInternalServerError;
use actix_web::web::{self, get};
use actix_web::{web::Data, App, Error, HttpRequest, HttpResponse, HttpServer, Result};
use actix_web_actors::ws::WsResponseBuilder;
pub use client_socket_connection::ClientSocketConnection;
use connection_info::ConnectionInfo;
pub use messages::{AssignClientId, MessageFromClient, MessageFromServer};
pub use room_actor::RoomActor;
use server_state::ServerState;
pub use service_actor::{ServiceActor, ServiceActorContext};
use stateroom::StateroomServiceFactory;
use std::time::{Duration, Instant};
const DEFAULT_IP: &str = "0.0.0.0";
pub struct Server {
pub heartbeat_interval: Duration,
pub heartbeat_timeout: Duration,
pub port: u32,
pub ip: String,
pub static_path: Option<String>,
pub client_path: Option<String>,
}
impl Default for Server {
fn default() -> Self {
Server {
heartbeat_interval: Duration::from_secs(30),
heartbeat_timeout: Duration::from_secs(300),
port: 8080,
ip: DEFAULT_IP.to_string(),
static_path: None,
client_path: None,
}
}
}
impl Server {
#[must_use]
pub fn new() -> Self {
Server::default()
}
#[cfg(feature = "serve-static")]
#[must_use]
pub fn with_static_path(mut self, static_path: Option<String>) -> Self {
self.static_path = static_path;
self
}
#[cfg(feature = "serve-static")]
#[must_use]
pub fn with_client_path(mut self, client_path: Option<String>) -> Self {
self.client_path = client_path;
self
}
#[must_use]
pub fn with_heartbeat_interval(mut self, duration_seconds: u64) -> Self {
self.heartbeat_interval = Duration::from_secs(duration_seconds);
self
}
#[must_use]
pub fn with_heartbeat_timeout(mut self, duration_seconds: u64) -> Self {
self.heartbeat_timeout = Duration::from_secs(duration_seconds);
self
}
#[must_use]
pub fn with_port(mut self, port: u32) -> Self {
self.port = port;
self
}
#[must_use]
pub fn with_ip(mut self, ip: String) -> Self {
self.ip = ip;
self
}
pub fn serve(
self,
service_factory: impl StateroomServiceFactory<ServiceActorContext>,
) -> std::io::Result<()> {
let host = format!("{}:{}", self.ip, self.port);
actix_web::rt::System::new().block_on(async move {
let server_state = Data::new(ServerState::new(service_factory, self).unwrap());
let server = HttpServer::new(move || {
#[allow(unused_mut)]
let mut app = App::new()
.app_data(server_state.clone())
.route("/status", get().to(status))
.route("/ws", get().to(websocket));
#[cfg(feature = "serve-static")]
{
if let Some(client_path) = &server_state.settings.client_path {
app = app.service(actix_files::Files::new("/client", client_path));
}
if let Some(static_path) = &server_state.settings.static_path {
app = app.service(
actix_files::Files::new("/", static_path).index_file("index.html"),
);
}
}
app
})
.bind(&host)?;
tracing::info!(%host, "Server is listening");
server.run().await
})
}
}
async fn websocket(req: HttpRequest, stream: web::Payload) -> actix_web::Result<HttpResponse> {
let server_state: &Data<ServerState> = req.app_data().expect("Could not load ServerState.");
let room_addr = server_state.room_addr.clone();
let client_id = room_addr
.send(AssignClientId)
.await
.map_err(|_| ErrorInternalServerError("Error getting room."))?;
match WsResponseBuilder::new(
ClientSocketConnection {
room: room_addr.clone().recipient(),
client_id,
last_seen: Instant::now(),
heartbeat_interval: server_state.settings.heartbeat_interval,
heartbeat_timeout: server_state.settings.heartbeat_timeout,
interval_handle: None,
},
&req,
stream,
)
.start_with_addr()
{
Ok((addr, resp)) => {
tracing::info!(?client_id, "New connection",);
room_addr.do_send(MessageFromClient::Connect(client_id, addr.recipient()));
Ok(resp)
}
Err(e) => Err(e),
}
}
async fn status(req: HttpRequest) -> Result<web::Json<ConnectionInfo>, Error> {
let server_state: &Data<ServerState> = req.app_data().expect("Could not load ServerState.");
let room_addr = server_state.room_addr.clone();
let connection_info = room_addr
.send(GetConnectionInfo)
.await
.map_err(|_| ErrorInternalServerError("Error getting connection info."))?;
Ok(web::Json(connection_info))
}