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
|
use std::io::Write;
use errors::*;
pub fn set_400<W: Write>(w: &mut W) -> Result<()> {
Ok(writeln!(w, "Status: 400")?)
}
pub fn set_403<W: Write>(w: &mut W) -> Result<()> {
Ok(writeln!(w, "Status: 403")?)
}
pub fn set_404<W: Write>(w: &mut W) -> Result<()> {
Ok(writeln!(w, "Status: 404")?)
}
pub fn set_405<W: Write>(w: &mut W, allowed_methods: &str) -> Result<()> {
Ok(
writeln!(
w,
"Status: 405
Allow: {}",
allowed_methods)?
)
}
pub fn set_500<W: Write>(w: &mut W) -> Result<()> {
Ok(writeln!(w, "Status: 500")?)
}
pub fn error_400<W: Write>(w: &mut W) {
write!(w, "Status: 400
Content-Type: text/plain
400 Bad Request")
.unwrap_or(());
}
pub fn error_403<W: Write>(w: &mut W, message: Option<&str>) {
set_403(w).unwrap_or(());
write!(
w,
"Content-Type: text/plain
403 Forbidden{}",
message.map_or_else(
|| String::new(),
|m| format!(": {}", m)
)
).unwrap_or(());
}
pub fn error_404<W: Write>(w: &mut W) {
write!(w, "Status: 404
Content-Type: text/plain
404 Not Found")
.unwrap_or(());
}
pub fn error_405<W: Write>(w: &mut W, allowed_methods: &str) {
set_405(w, allowed_methods).unwrap_or(());
write!(w, "Content-Type: text/plain
405 Method Not Allowed")
.unwrap_or(());
}
pub fn error_500<W: Write>(w: &mut W, error: Option<Error>) {
if let Some(error) = error {
error!("{}", error);
}
set_500(w).unwrap_or(());
write!(w, "Content-Type: text/plain
500 Internal Server Error")
.unwrap_or(());
}
|