-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Send response with 404 status when quering non-exist account (#14)
- Loading branch information
Showing
2 changed files
with
49 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
package rest | ||
|
||
// TODO : Intergrate http status mapping for every REST API | ||
import ( | ||
"net/http" | ||
|
||
"github.com/line/lbm-sdk/v2/client" | ||
"github.com/line/lbm-sdk/v2/types/errors" | ||
) | ||
|
||
// HTTPStatusMappingTable is map to mapping an error type and a http status | ||
type HTTPStatusMappingTable map[string]map[uint32]int | ||
|
||
var ( | ||
table = HTTPStatusMappingTable{ | ||
errors.RootCodespace: { | ||
9: http.StatusNotFound, | ||
}, | ||
} | ||
) | ||
|
||
func parsingError(rawErr error) *errors.Error { | ||
if rawErr == nil { | ||
return nil | ||
} | ||
if err, ok := rawErr.(client.Error); ok { | ||
return errors.New(err.Codespace, err.Code, err.Message) | ||
} | ||
if err, ok := rawErr.(*errors.Error); ok { | ||
return err | ||
} | ||
return errors.New(errors.UndefinedCodespace, 1, "internal") | ||
} | ||
|
||
// GetHTTPStatus is method to get http status for given error | ||
func GetHTTPStatusWithError(err error) int { | ||
abciErr := parsingError(err) | ||
if abciErr == nil { | ||
return http.StatusOK | ||
} | ||
result := http.StatusInternalServerError | ||
if codeTable, ok := table[abciErr.Codespace()]; ok { | ||
if status, ok := codeTable[abciErr.ABCICode()]; ok { | ||
result = status | ||
} | ||
} | ||
return result | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters