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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
#![allow(
unused_imports,
unused_mut,
dead_code,
unused_variables
)]
pub mod utils;
pub mod response;
pub mod request;
pub mod thread_handler;
pub mod errors;
pub mod stream;
use crate::response::ResponseType;
use errors::ConfigError;
use request::info::{ RequestInfo, Method };
use terminal_link::Link;
use response::{ Respond, not_found };
use stream::Stream;
use std::{
net::{
TcpStream,
TcpListener
},
io::{
Read, Error,
},
path::Path,
collections::HashMap,
fs, hash::Hash, num::ParseIntError,
};
const DATA_BUF_INIT:usize = 1024usize;
const DATA_BUF_POST_INIT:usize = 65536usize;
#[derive(Clone, Copy)]
pub struct Server {
addr: Option<&'static str>,
port: Option<u16>,
num_threads:u16,
serve: Option<&'static str>,
not_found: Option<&'static str>,
routes: Route,
origin_control:Option<fn(&mut Stream, HashMap<&str, &str>) -> bool>
}
#[derive(Clone, Copy)]
pub enum Route {
Stack(
&'static str,
&'static [Route]
),
Tail(
Method,
&'static str,
fn(&mut Stream) -> ()
)
}
fn handle_req(stream:TcpStream, config:&Server) {
let buffer:&mut Vec<u8> = &mut vec![0u8; DATA_BUF_POST_INIT];
let mut stream = Stream::from(stream);
match stream.get_mut_inner_ref().read(buffer) {
Ok(data) => data,
Err(_) => return
};
let mut request:String = String::from_utf8_lossy(buffer).to_string();
let headers:HashMap<&str, &str> = utils::headers::parse_headers(&request);
match config.origin_control {
Some(origin_control) => {
if origin_control(&mut stream, headers.clone()) {
return
};
},
None => (),
};
let mut body:String = String::new();
let info:RequestInfo = match RequestInfo::parse_req(&request) {
Ok(e) => e,
Err(_) => return
};
if info.method == Method::POST {
body = request.split("\r\n\r\n").last().unwrap().to_string();
}
let mut full_path:String = String::new();
stream.set_body(body);
stream.set_headers(headers);
match call_endpoint(&config.routes, info, &mut full_path, &mut stream) {
Ok(_) => (),
Err(_) => {
if let Some(static_path) = config.serve {
match serve_static_dir(static_path, info.path, &mut stream) {
Ok(_) => (),
Err(_) => {
not_found(&mut stream, *config);
}
};
}else {
not_found(&mut stream, *config);
};
},
};
}
fn call_endpoint(
routes:&Route,
info:RequestInfo,
full_path:&mut String,
stream: &mut Stream
) -> Result<(), ()> {
match routes {
Route::Stack(pathname, routes) => {
let mut tail_found:bool = false;
'tail_search: for route in routes.iter() {
let mut possible_full_path = full_path.clone();
possible_full_path.push_str(pathname);
possible_full_path.push('/');
match call_endpoint(route, info, &mut possible_full_path, stream) {
Ok(_) => {
tail_found = true;
full_path.push_str(pathname);
full_path.push('/');
break 'tail_search;
},
Err(_) => continue
};
};
if tail_found { Ok(()) }
else { Err(()) }
},
Route::Tail(method, pathname, function_ptr) => {
let mut params:HashMap<String, String> = HashMap::new();
full_path.push_str(pathname);
let final_subpaths:Vec<&str> = get_subpaths(full_path);
let mut final_check_url:String = full_path.clone();
for (index, request_path) in get_subpaths(info.path).iter().enumerate() {
let subp:&str = match final_subpaths.get(index) {
Some(e) => e,
None => return Err(())
};
match is_url_param(subp) {
(true, param_name) => {
params.insert(param_name.into(), request_path.to_string());
final_check_url = final_check_url.replace(subp, request_path);
continue;
},
(false, _) => {
if request_path != &subp {
return Err(());
}else {
continue;
};
},
}
}
if final_check_url == info.path {
if method == &info.method {
stream.set_params(params);
function_ptr(stream);
Ok(())
}else {
Err(())
}
}else {
Err(())
}
},
}
}
fn get_subpaths(path:&str) -> Vec<&str> {
let mut subpaths:Vec<&str> = Vec::new();
for subpath in path.split('/') {
if !subpath.is_empty() { subpaths.push(subpath); };
};
subpaths
}
fn is_url_param(path:&str) -> (bool, &str) {
if path.starts_with(':') && path.ends_with(':') {
(true, &path[1..path.len()-1])
}else {
(false, "")
}
}
fn serve_static_dir(dir:&str, request_path:&str, stream:&mut Stream) -> Result<(), ()> {
let path = &[dir, request_path].concat();
let file_path:&Path = Path::new(path);
match file_path.is_file() {
true => (),
false => return Err(())
};
match fs::File::open(file_path) {
Ok(_) => {
let mut file_content:String = match fs::read_to_string(file_path) {
Ok(e) => e,
Err(_) => {
return Err(());
}
};
let res:Respond = Respond {
response_type: ResponseType::guess(file_path),
content: Some(file_content),
additional_headers: None
};
stream.respond(
200u16,
res
);
},
Err(_) => return Err(())
}
Ok(())
}
impl<'f> Server {
pub fn new() -> Server {
Server {
addr: None,
port: None,
num_threads: 1,
serve: None,
not_found: None,
routes: Route::Stack("", &[]),
origin_control: None
}
}
pub fn address(&mut self, addr:&'static str) -> &mut Self { self.addr = Some(addr); self }
pub fn port(&mut self, port:u16) -> &mut Self { self.port = Some(port); self }
pub fn threads(&mut self, num_threads:u16) -> &mut Self { self.num_threads = num_threads; self }
pub fn serve(&mut self, serve:&'static str) -> &mut Self { self.serve = Some(serve); self }
pub fn routes(&mut self, routes:Route) -> &mut Self { self.routes = routes; self }
pub fn not_found(&mut self, not_found:&'static str) -> &mut Self { self.not_found = Some(not_found); self }
pub fn origin_control(&mut self, origin_control:fn(&mut Stream, HashMap<&str, &str>) -> bool) -> &mut Self { self.origin_control = Some(origin_control); self }
pub fn start(self) -> Result<(), ConfigError> {
let bind_to = &format!(
"{}:{}",
match self.addr {
Some(e) => e,
None => return Err(errors::ConfigError::MissingHost)
},
match self.port {
Some(e) => e,
None => return Err(errors::ConfigError::MissingPort)
}
);
let stream = match TcpListener::bind(bind_to) {
Ok(listener) => listener,
Err(_) => return Err(ConfigError::HostPortBindingFail)
};
println!("{}",
&format!(
"{} {}",
ansi_term::Color::RGB(123, 149, 250).paint(
"Server opened on"
),
ansi_term::Color::RGB(255, 255, 0).underline().paint(
format!("{}", Link::new(
&format!("http://{}", &bind_to),
bind_to,
))
)
)
);
let thread_handler = thread_handler::MainThreadHandler::new(self.num_threads);
for request in stream.incoming() {
thread_handler.exec(move || {
handle_req(match request {
Ok(req) => req,
Err(_) => return,
}, &self);
});
};
Ok(())
}
}