Skip to content

Commit f0ce7a3

Browse files
committed
hot fix index
fixed a bug where the server will not serve anything but the index
1 parent 30fc408 commit f0ce7a3

File tree

3 files changed

+19
-18
lines changed

3 files changed

+19
-18
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hteapot"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
exclude = ["hteapot.toml", "public/", "readme.md"]
55
license = "MIT"
66
keywords = ["HTTP", "HTTP-SERVER"]

src/main.rs

+17-16
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,7 @@ fn serve_proxy(proxy_url: String) -> HttpResponse {
4444
}
4545
}
4646

47-
fn get_mime_tipe(config: &Config, path: String) -> String {
48-
let mut path = format!("{}{}", config.root, path);
49-
if Path::new(path.as_str()).is_dir() {
50-
let separator = if path.ends_with('/') { "" } else { "/" };
51-
path = format!("{}{}{}", path, separator, config.index);
52-
}
47+
fn get_mime_tipe(path: &String) -> String {
5348
let extension = Path::new(path.as_str())
5449
.extension()
5550
.unwrap()
@@ -60,18 +55,14 @@ fn get_mime_tipe(config: &Config, path: String) -> String {
6055
"json" => "application/json",
6156
"css" => "text/css",
6257
"html" => "text/html",
58+
"ico" => "image/x-icon",
6359
_ => "text/plain",
6460
};
6561

6662
mimetipe.to_string()
6763
}
6864

69-
fn serve_file(config: &Config, path: String) -> Option<Vec<u8>> {
70-
let mut path = format!("{}{}", config.root, path);
71-
if Path::new(path.as_str()).is_dir() {
72-
let separator = if path.ends_with('/') { "" } else { "/" };
73-
path = format!("{}{}{}", path, separator, config.index);
74-
}
65+
fn serve_file(path: &String) -> Option<Vec<u8>> {
7566
let r = fs::read(path);
7667
if r.is_ok() {
7768
Some(r.unwrap())
@@ -166,22 +157,32 @@ fn main() {
166157
if proxy_only || is_proxy.is_some() {
167158
return serve_proxy(is_proxy.unwrap());
168159
}
169-
if !Path::new(req.path.clone().as_str()).exists() {
160+
161+
let mut full_path = format!("{}{}", config.root, req.path.clone());
162+
if Path::new(full_path.as_str()).is_dir() {
163+
let separator = if full_path.ends_with('/') { "" } else { "/" };
164+
full_path = format!("{}{}{}", full_path, separator, config.index);
165+
}
166+
if !Path::new(full_path.as_str()).exists() {
167+
logger
168+
.lock()
169+
.expect("this doesnt work :C")
170+
.msg(format!("path {} does not exist", req.path));
170171
return HttpResponse::new(HttpStatus::NotFound, "Not found", None);
171172
}
172-
let mimetype = get_mime_tipe(&config, req.path.clone());
173+
let mimetype = get_mime_tipe(&full_path);
173174
let content: Option<Vec<u8>> = if config.cache {
174175
let mut cachee = cache.lock().expect("Error locking cache");
175176
let mut r = cachee.get(req.path.clone());
176177
if r.is_none() {
177-
r = serve_file(&config, req.path.clone());
178+
r = serve_file(&full_path);
178179
if r.is_some() {
179180
cachee.set(req.path.clone(), r.clone().unwrap());
180181
}
181182
}
182183
r
183184
} else {
184-
serve_file(&config, req.path)
185+
serve_file(&full_path)
185186
};
186187
match content {
187188
Some(c) => HttpResponse::new(HttpStatus::OK, c, headers!("Content-Type" => mimetype)),

0 commit comments

Comments
 (0)