mirror of
https://github.com/photoprism/photoprism.git
synced 2025-12-11 16:24:11 +01:00
Related issues: #5233 (reset command), #5234 (schedule for models) Signed-off-by: Michael Mayer <michael@photoprism.app>
72 lines
1.8 KiB
Go
72 lines
1.8 KiB
Go
package api
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/gin-gonic/gin/binding"
|
|
|
|
"github.com/photoprism/photoprism/internal/auth/acl"
|
|
"github.com/photoprism/photoprism/internal/entity"
|
|
"github.com/photoprism/photoprism/internal/entity/search"
|
|
"github.com/photoprism/photoprism/internal/form"
|
|
"github.com/photoprism/photoprism/pkg/txt"
|
|
)
|
|
|
|
// SearchLabels finds and returns labels as JSON.
|
|
//
|
|
// @Summary finds and returns labels as JSON
|
|
// @Id SearchLabels
|
|
// @Tags Labels
|
|
// @Produce json
|
|
// @Success 200 {object} search.Label
|
|
// @Failure 401,429,403,400 {object} i18n.Response
|
|
// @Param count query int true "maximum number of results" minimum(1) maximum(100000)
|
|
// @Param offset query int false "search result offset" minimum(0) maximum(100000)
|
|
// @Param all query bool false "show all"
|
|
// @Param q query string false "search query"
|
|
// @Router /api/v1/labels [get]
|
|
func SearchLabels(router *gin.RouterGroup) {
|
|
router.GET("/labels", func(c *gin.Context) {
|
|
s := Auth(c, acl.ResourceLabels, acl.ActionSearch)
|
|
|
|
if s.Abort(c) {
|
|
return
|
|
}
|
|
|
|
var frm form.SearchLabels
|
|
|
|
err := c.MustBindWith(&frm, binding.Form)
|
|
|
|
if err != nil {
|
|
AbortBadRequest(c, err)
|
|
return
|
|
}
|
|
|
|
if acl.Rules.Deny(acl.ResourceLabels, s.GetUserRole(), acl.AccessPrivate) {
|
|
frm.NSFW = false
|
|
frm.Public = true
|
|
}
|
|
|
|
// Update precalculated photo counts if needed.
|
|
if err = entity.UpdateLabelCountsIfNeeded(); err != nil {
|
|
log.Warnf("labels: could not update photo counts (%s)", err)
|
|
}
|
|
|
|
// Search matching labels.
|
|
result, err := search.Labels(frm)
|
|
|
|
if err != nil {
|
|
c.AbortWithStatusJSON(400, gin.H{"error": txt.UpperFirst(err.Error())})
|
|
return
|
|
}
|
|
|
|
// TODO c.Header("X-Count", strconv.Itoa(count))
|
|
AddLimitHeader(c, frm.Count)
|
|
AddOffsetHeader(c, frm.Offset)
|
|
AddTokenHeaders(c, s)
|
|
|
|
c.JSON(http.StatusOK, result)
|
|
})
|
|
}
|