feat(pkg): added err message and http message mapper

This commit is contained in:
mohammad mahdi rezaei 2023-12-18 17:38:07 +03:30
parent 8e073db3e7
commit 092a4b308f
2 changed files with 47 additions and 0 deletions

6
pkg/errmsg/message.go Normal file
View File

@ -0,0 +1,6 @@
package errmsg
const (
ErrorMsgNotFound = "record not found"
ErrorMsgSomethingWentWrong = "something went wrong"
)

41
pkg/httpmsg/mapper.go Normal file
View File

@ -0,0 +1,41 @@
package httpmsg
import (
"git.gocasts.ir/ebhomengo/niki/pkg/errmsg"
"git.gocasts.ir/ebhomengo/niki/pkg/richerror"
"net/http"
)
func Error(err error) (message string, code int) {
switch err.(type) {
case richerror.RichError:
re := err.(richerror.RichError)
msg := re.Message()
code := mapKindToHTTPStatusCode(re.Kind())
// we should not expose unexpected error messages
if code >= 500 {
msg = errmsg.ErrorMsgSomethingWentWrong
}
return msg, code
default:
return err.Error(), http.StatusBadRequest
}
}
func mapKindToHTTPStatusCode(kind richerror.Kind) int {
switch kind {
case richerror.KindInvalid:
return http.StatusUnprocessableEntity
case richerror.KindNotFound:
return http.StatusNotFound
case richerror.KindForbidden:
return http.StatusForbidden
case richerror.KindUnexpected:
return http.StatusInternalServerError
default:
return http.StatusBadRequest
}
}