1
0
Fork 0

add API specific InternalServerError()

This commit is contained in:
6543 2020-05-24 16:17:51 +02:00
parent 788b8b1440
commit 360083a486
No known key found for this signature in database
GPG Key ID: A1CA74D27FD13271
1 changed files with 15 additions and 3 deletions

View File

@ -7,6 +7,7 @@ package context
import (
"fmt"
"net/http"
"net/url"
"strings"
@ -64,7 +65,7 @@ type APINotFound struct{}
// swagger:response redirect
type APIRedirect struct{}
// Error responses error message to client with given message.
// Error responds with an error message to client with given obj as the message.
// If status is 500, also it prints error to log.
func (ctx *APIContext) Error(status int, title string, obj interface{}) {
var message string
@ -74,8 +75,8 @@ func (ctx *APIContext) Error(status int, title string, obj interface{}) {
message = obj.(string)
}
if status == 500 {
log.Error("%s: %s", title, message)
if status == http.StatusInternalServerError {
log.ErrorWithSkip(1, "%s: %s", title, message)
}
ctx.JSON(status, APIError{
@ -84,6 +85,17 @@ func (ctx *APIContext) Error(status int, title string, obj interface{}) {
})
}
// InternalServerError responds with an error message to the client with the error as a message
// and the file and line of the caller.
func (ctx *APIContext) InternalServerError(err error) {
log.ErrorWithSkip(1, "InternalServerError: %v", err)
ctx.JSON(http.StatusInternalServerError, APIError{
Message: err.Error(),
URL: setting.API.SwaggerURL,
})
}
func genAPILinks(curURL *url.URL, total, pageSize, curPage int) []string {
page := NewPagination(total, pageSize, curPage, 0)
paginater := page.Paginater