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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
use std::{
str::FromStr,
sync::{RwLock, TryLockError},
};
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct ServerBuilder {
source: std::path::PathBuf,
hostname: Option<String>,
port: Option<u16>,
not_found_path: Option<std::path::PathBuf>,
}
impl ServerBuilder {
pub fn new(source: impl Into<std::path::PathBuf>, not_found_path: Option<&str>) -> Self {
let source = source.into();
Self {
not_found_path: not_found_path.map(|p| source.join(p)),
source,
hostname: None,
port: None,
}
}
// Override the hostname
// pub fn hostname(&mut self, hostname: impl Into<String>) -> &mut Self {
// self.hostname = Some(hostname.into());
// self
// }
/// Override the port
///
/// By default, the first available port is selected.
pub fn port(&mut self, port: u16) -> &mut Self {
self.port = Some(port);
self
}
/// Create a server
///
/// This is needed for accessing the dynamically assigned pot
pub fn build(&self) -> Server {
let source = self.source.clone();
let hostname = self.hostname.as_deref().unwrap_or("localhost");
let port = self
.port
.or_else(|| get_available_port(hostname))
// Just have `serve` error out
.unwrap_or(3000);
Server {
source,
addr: format!("{}:{}", hostname, port),
server: RwLock::new(None),
not_found_path: self.not_found_path.as_ref().map(|p| p.to_path_buf()),
}
}
// Start the webserver
// pub fn serve(&self) -> Result<(), Error> {
// self.build().serve()
// }
}
pub struct Server {
source: std::path::PathBuf,
addr: String,
server: RwLock<Option<tiny_http::Server>>,
not_found_path: Option<std::path::PathBuf>,
}
impl Server {
// Serve on first available port on localhost
// pub fn new(source: impl Into<std::path::PathBuf>, not_found_path: Option<&str>) -> Self {
// ServerBuilder::new(source, not_found_path).build()
// }
/// The location being served
pub fn source(&self) -> &std::path::Path {
self.source.as_path()
}
/// The address the server is available at
///
/// This is useful for telling users how to access the served up files since the port is
/// dynamically assigned by default.
pub fn addr(&self) -> &str {
self.addr.as_str()
}
// Whether the server was running at the instant the call happened
// pub fn is_running(&self) -> bool {
// matches!(self.server.read().as_deref(), Ok(Some(_)))
// }
/// Start the webserver
pub fn serve(&self) -> Result<(), Error> {
match self.server.try_write().as_deref_mut() {
Ok(server @ None) => {
// attempts to create a server
*server = Some(tiny_http::Server::http(self.addr()).map_err(Error::new)?);
}
Ok(Some(_)) | Err(TryLockError::WouldBlock) => {
return Err(Error::new("the server is running"))
}
Err(error @ TryLockError::Poisoned(_)) => return Err(Error::new(error)),
}
{
let server = self.server.read().map_err(Error::new)?;
// unwrap is safe here
for request in server.as_ref().unwrap().incoming_requests() {
// handles the request
if let Err(e) = static_file_handler(self.source(), request, &self.not_found_path) {
tracing::error!("{}", e);
}
}
}
*self.server.write().map_err(Error::new)? = None;
Ok(())
}
// Closes the server gracefully
// pub fn close(&self) {
// if let Ok(Some(server)) = self.server.read().as_deref() {
// server.unblock();
// }
// }
}
/// Serve Error
#[derive(Debug)]
pub struct Error {
message: String,
}
impl Error {
fn new(message: impl ToString) -> Self {
Self {
message: message.to_string(),
}
}
}
impl std::fmt::Display for Error {
fn fmt(&self, fmt: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
self.message.fmt(fmt)
}
}
impl std::error::Error for Error {}
fn static_file_handler(
dest: &std::path::Path,
req: tiny_http::Request,
not_found_path: &Option<std::path::PathBuf>,
) -> Result<(), Error> {
// grab the requested path
let mut req_path = req.url().to_string();
// strip off any querystrings so path.is_file() matches and doesn't stick index.html on the end
// of the path (querystrings often used for cachebusting)
if let Some(position) = req_path.rfind('?') {
req_path.truncate(position);
}
// find the path of the file in the local system
// (this gets rid of the '/' in `p`, so the `join()` will not replace the path)
let path = dest.to_path_buf().join(&req_path[1..]);
let mut serve_path = if path.is_file() {
// try to point the serve path to `path` if it corresponds to a file
path
} else {
// try to point the serve path into a "index.html" file in the requested
// path
path.join("index.html")
};
if let Some(nfp) = not_found_path {
if !serve_path.exists() {
serve_path = nfp.to_path_buf();
}
}
// if the request points to a file and it exists, read and serve it
if serve_path.exists() {
let file = std::fs::File::open(&serve_path).map_err(Error::new)?;
let mut response = tiny_http::Response::from_file(file);
if let Some(mime) = mime_guess::MimeGuess::from_path(&serve_path).first_raw() {
let content_type = format!("Content-Type:{}", mime);
let content_type =
tiny_http::Header::from_str(&content_type).expect("formatted correctly");
response.add_header(content_type);
}
req.respond(response).map_err(Error::new)?;
} else {
// write a simple body for the 404 page
req.respond(
tiny_http::Response::from_string("<h1> <center> 404: Page not found </center> </h1>")
.with_status_code(404)
.with_header(
tiny_http::Header::from_str("Content-Type: text/html")
.expect("formatted correctly"),
),
)
.map_err(Error::new)?;
}
Ok(())
}
fn get_available_port(host: &str) -> Option<u16> {
// Start after "well-known" ports (0–1023) as they require superuser
// privileges on UNIX-like operating systems.
(1024..9000).find(|port| port_is_available(host, *port))
}
fn port_is_available(host: &str, port: u16) -> bool {
std::net::TcpListener::bind((host, port)).is_ok()
}