Page Menu
Home
DevCentral
Search
Configure Global Search
Log In
Files
F3792735
D1950.id4932.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D1950.id4932.diff
View Options
diff --git a/src/api/replies.rs b/src/api/replies.rs
--- a/src/api/replies.rs
+++ b/src/api/replies.rs
@@ -70,21 +70,21 @@
/// This will produce a JSON representation when the result is found,
/// a 404 error when no result is found, a 500 error if there is a database issue.
fn into_json_response(self) -> ApiJsonResponse<T> {
- match self {
+ self
// CASE I - The query returns one value, we return a JSON representation fo the item
- Ok(item) => Ok(Json(item)),
-
- Err(error) => match error {
+ .map(|item| Json(item))
+ .map_err(|error| match error {
// Case II - The query returns no result, we return a 404 Not found response
- ResultError::NotFound => Err(Failure::from(Status::NotFound)),
+ ResultError::DatabaseError(kind, details) => {
+ build_database_error_response(kind, details)
+ }
// Case III - We need to handle a database error, which could be a 400/409/500
- ResultError::DatabaseError(kind, details) => Err(build_database_error_response(kind, details)),
+ ResultError::NotFound => Failure::from(Status::NotFound),
// Case IV - The error is probably server responsibility, log it and throw a 500
- _ => Err(error.into_failure_response()),
- }
- }
+ _ => error.into_failure_response(),
+ })
}
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Nov 28, 18:06 (18 h, 30 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2269594
Default Alt Text
D1950.id4932.diff (1 KB)
Attached To
Mode
D1950: Map result values instead to use a match block
Attached
Detach File
Event Timeline
Log In to Comment