f5a8c5a45d
Signed-off-by: Michael Mayer <michael@photoprism.app>
88 lines
2.1 KiB
Go
88 lines
2.1 KiB
Go
package api
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
"github.com/photoprism/photoprism/internal/acl"
|
|
"github.com/photoprism/photoprism/internal/entity"
|
|
"github.com/photoprism/photoprism/internal/event"
|
|
"github.com/photoprism/photoprism/internal/form"
|
|
"github.com/photoprism/photoprism/internal/i18n"
|
|
"github.com/photoprism/photoprism/internal/search"
|
|
"github.com/photoprism/photoprism/pkg/clean"
|
|
"github.com/photoprism/photoprism/pkg/txt"
|
|
)
|
|
|
|
// GetFace returns a face as JSON.
|
|
//
|
|
// GET /api/v1/faces/:id
|
|
func GetFace(router *gin.RouterGroup) {
|
|
router.GET("/faces/:id", func(c *gin.Context) {
|
|
s := Auth(c, acl.ResourcePeople, acl.ActionView)
|
|
|
|
// Abort if permission was not granted.
|
|
if s.Abort(c) {
|
|
return
|
|
}
|
|
|
|
f := form.SearchFaces{UID: c.Param("id"), Markers: true}
|
|
|
|
if results, err := search.Faces(f); err != nil || len(results) < 1 {
|
|
Abort(c, http.StatusNotFound, i18n.ErrFaceNotFound)
|
|
return
|
|
} else {
|
|
c.JSON(http.StatusOK, results[0])
|
|
}
|
|
})
|
|
}
|
|
|
|
// UpdateFace updates face properties.
|
|
//
|
|
// PUT /api/v1/faces/:id
|
|
func UpdateFace(router *gin.RouterGroup) {
|
|
router.PUT("/faces/:id", func(c *gin.Context) {
|
|
s := Auth(c, acl.ResourcePeople, acl.ActionUpdate)
|
|
|
|
// Abort if permission was not granted.
|
|
if s.Abort(c) {
|
|
return
|
|
}
|
|
|
|
var f form.Face
|
|
|
|
if err := c.BindJSON(&f); err != nil {
|
|
AbortBadRequest(c)
|
|
return
|
|
}
|
|
|
|
faceId := clean.Token(c.Param("id"))
|
|
m := entity.FindFace(faceId)
|
|
|
|
if m == nil {
|
|
Abort(c, http.StatusNotFound, i18n.ErrFaceNotFound)
|
|
return
|
|
}
|
|
|
|
// Change visibility?
|
|
if !f.FaceHidden && f.FaceHidden == m.FaceHidden {
|
|
// Do nothing.
|
|
} else if err := m.Update("FaceHidden", f.FaceHidden); err != nil {
|
|
c.AbortWithStatusJSON(http.StatusInternalServerError, gin.H{"error": txt.UpperFirst(err.Error())})
|
|
return
|
|
}
|
|
|
|
// Change subject?
|
|
if f.SubjUID == "" {
|
|
// Do nothing.
|
|
} else if err := m.SetSubjectUID(f.SubjUID); err != nil {
|
|
c.AbortWithStatusJSON(http.StatusInternalServerError, gin.H{"error": txt.UpperFirst(err.Error())})
|
|
return
|
|
}
|
|
|
|
event.SuccessMsg(i18n.MsgChangesSaved)
|
|
|
|
c.JSON(http.StatusOK, m)
|
|
})
|
|
}
|