File tree 2 files changed +23
-3
lines changed
2 files changed +23
-3
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ pub enum Nope {
10
10
ResourceNotFound ,
11
11
CrateNotFound ,
12
12
NoResults ,
13
+ InternalServerError ,
13
14
}
14
15
15
16
impl fmt:: Display for Nope {
@@ -18,6 +19,7 @@ impl fmt::Display for Nope {
18
19
Nope :: ResourceNotFound => "Requested resource not found" ,
19
20
Nope :: CrateNotFound => "Requested crate not found" ,
20
21
Nope :: NoResults => "Search yielded no results" ,
22
+ Nope :: InternalServerError => "Internal server error" ,
21
23
} )
22
24
}
23
25
}
@@ -59,6 +61,13 @@ impl Handler for Nope {
59
61
. to_resp ( "releases" )
60
62
}
61
63
}
64
+ Nope :: InternalServerError => {
65
+ // something went wrong, details should have been logged
66
+ Page :: new ( "internal server error" . to_owned ( ) )
67
+ . set_status ( status:: InternalServerError )
68
+ . title ( "Internal server error" )
69
+ . to_resp ( "error" )
70
+ }
62
71
}
63
72
}
64
73
}
Original file line number Diff line number Diff line change @@ -159,10 +159,21 @@ impl Handler for CratesfyiHandler {
159
159
. or_else ( |e| {
160
160
let err = if let Some ( err) = e. error . downcast :: < error:: Nope > ( ) {
161
161
* err
162
- } else if e. error . downcast :: < NoRoute > ( ) . is_some ( ) {
162
+ } else if e. error . downcast :: < NoRoute > ( ) . is_some ( )
163
+ || e. response . status == Some ( status:: NotFound )
164
+ {
163
165
error:: Nope :: ResourceNotFound
166
+ } else if e. response . status == Some ( status:: InternalServerError ) {
167
+ log:: error!( "internal server error: {}" , e. error) ;
168
+ error:: Nope :: InternalServerError
164
169
} else {
165
- panic ! ( "all cratesfyi errors should be of type Nope" ) ;
170
+ log:: error!(
171
+ "No error page for status {:?}; {}" ,
172
+ e. response. status,
173
+ e. error
174
+ ) ;
175
+ // TODO: add in support for other errors that are actually used
176
+ error:: Nope :: InternalServerError
166
177
} ;
167
178
168
179
if let error:: Nope :: ResourceNotFound = err {
@@ -186,7 +197,7 @@ impl Handler for CratesfyiHandler {
186
197
}
187
198
}
188
199
189
- debug ! ( "Path not found: {}" , DebugPath ( & req. url) ) ;
200
+ debug ! ( "Path not found: {}; {} " , DebugPath ( & req. url) , e . error ) ;
190
201
}
191
202
192
203
Self :: chain ( self . pool . clone ( ) , err) . handle ( req)
You can’t perform that action at this time.
0 commit comments