refactor: move error helpers to controller.go
This commit is contained in:
parent
98fd2a097e
commit
d18be0acc8
|
@ -38,3 +38,24 @@ func tryParseRequest(r interface{}, ctx iris.Context) (interface{}, bool) {
|
|||
|
||||
return data, true
|
||||
}
|
||||
|
||||
func sendErrorCustom(ctx iris.Context, err error, customError error, irisError int) bool {
|
||||
if err != nil {
|
||||
if customError != nil {
|
||||
err = customError
|
||||
}
|
||||
ctx.StopWithError(irisError, err)
|
||||
return true
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
||||
func internalError(ctx iris.Context, err error) bool {
|
||||
return sendErrorCustom(ctx, err, nil, iris.StatusInternalServerError)
|
||||
}
|
||||
func internalErrorCustom(ctx iris.Context, err error, customError error) bool {
|
||||
return sendErrorCustom(ctx, err, customError, iris.StatusInternalServerError)
|
||||
}
|
||||
func sendError(ctx iris.Context, err error, irisError int) bool {
|
||||
return sendErrorCustom(ctx, err, nil, irisError)
|
||||
}
|
||||
|
|
|
@ -102,28 +102,6 @@ func (f *FilesController) GetStatusBy(cidString string) {
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
func sendErrorCustom(ctx iris.Context, err error, customError error, irisError int) bool {
|
||||
if err != nil {
|
||||
if customError != nil {
|
||||
err = customError
|
||||
}
|
||||
ctx.StopWithError(irisError, err)
|
||||
return true
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
||||
func internalError(ctx iris.Context, err error) bool {
|
||||
return sendErrorCustom(ctx, err, nil, iris.StatusInternalServerError)
|
||||
}
|
||||
func internalErrorCustom(ctx iris.Context, err error, customError error) bool {
|
||||
return sendErrorCustom(ctx, err, customError, iris.StatusInternalServerError)
|
||||
}
|
||||
func sendError(ctx iris.Context, err error, irisError int) bool {
|
||||
return sendErrorCustom(ctx, err, nil, irisError)
|
||||
}
|
||||
|
||||
func validateCid(cidString string, validateStatus bool, ctx iris.Context) (string, bool) {
|
||||
_, err := cid.Valid(cidString)
|
||||
if sendError(ctx, err, iris.StatusBadRequest) {
|
||||
|
|
Loading…
Reference in New Issue