@@ -44,12 +44,7 @@ fn serve_proxy(proxy_url: String) -> HttpResponse {
44
44
}
45
45
}
46
46
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 {
53
48
let extension = Path :: new ( path. as_str ( ) )
54
49
. extension ( )
55
50
. unwrap ( )
@@ -60,18 +55,14 @@ fn get_mime_tipe(config: &Config, path: String) -> String {
60
55
"json" => "application/json" ,
61
56
"css" => "text/css" ,
62
57
"html" => "text/html" ,
58
+ "ico" => "image/x-icon" ,
63
59
_ => "text/plain" ,
64
60
} ;
65
61
66
62
mimetipe. to_string ( )
67
63
}
68
64
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 > > {
75
66
let r = fs:: read ( path) ;
76
67
if r. is_ok ( ) {
77
68
Some ( r. unwrap ( ) )
@@ -166,22 +157,32 @@ fn main() {
166
157
if proxy_only || is_proxy. is_some ( ) {
167
158
return serve_proxy ( is_proxy. unwrap ( ) ) ;
168
159
}
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) ) ;
170
171
return HttpResponse :: new ( HttpStatus :: NotFound , "Not found" , None ) ;
171
172
}
172
- let mimetype = get_mime_tipe ( & config , req . path . clone ( ) ) ;
173
+ let mimetype = get_mime_tipe ( & full_path ) ;
173
174
let content: Option < Vec < u8 > > = if config. cache {
174
175
let mut cachee = cache. lock ( ) . expect ( "Error locking cache" ) ;
175
176
let mut r = cachee. get ( req. path . clone ( ) ) ;
176
177
if r. is_none ( ) {
177
- r = serve_file ( & config , req . path . clone ( ) ) ;
178
+ r = serve_file ( & full_path ) ;
178
179
if r. is_some ( ) {
179
180
cachee. set ( req. path . clone ( ) , r. clone ( ) . unwrap ( ) ) ;
180
181
}
181
182
}
182
183
r
183
184
} else {
184
- serve_file ( & config , req . path )
185
+ serve_file ( & full_path )
185
186
} ;
186
187
match content {
187
188
Some ( c) => HttpResponse :: new ( HttpStatus :: OK , c, headers ! ( "Content-Type" => mimetype) ) ,
0 commit comments