photoprism/internal/api/errors.go

36 lines
795 B
Go
Raw Normal View History

package api
import (
"net/http"
"github.com/gin-gonic/gin"
"github.com/photoprism/photoprism/internal/acl"
"github.com/photoprism/photoprism/internal/query"
"github.com/photoprism/photoprism/pkg/txt"
)
func GetErrors(router *gin.RouterGroup) {
2020-07-02 08:03:00 +00:00
router.GET("/errors", func(c *gin.Context) {
s := Auth(SessionID(c), acl.ResourceLogs, acl.ActionSearch)
if s.Invalid() {
AbortUnauthorized(c)
return
}
limit := txt.Int(c.Query("count"))
offset := txt.Int(c.Query("offset"))
if resp, err := query.Errors(limit, offset, c.Query("q")); err != nil {
c.AbortWithStatusJSON(400, gin.H{"error": txt.UcFirst(err.Error())})
return
} else {
AddCountHeader(c, len(resp))
AddLimitHeader(c, limit)
AddOffsetHeader(c, offset)
c.JSON(http.StatusOK, resp)
}
})
}