260cca91fe
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
237 lines
5.5 KiB
Go
237 lines
5.5 KiB
Go
package api
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
"path"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/photoprism/photoprism/internal/config"
|
|
"github.com/photoprism/photoprism/internal/entity"
|
|
"github.com/photoprism/photoprism/internal/event"
|
|
"github.com/photoprism/photoprism/internal/form"
|
|
"github.com/photoprism/photoprism/internal/query"
|
|
"github.com/photoprism/photoprism/internal/service"
|
|
"github.com/photoprism/photoprism/pkg/fs"
|
|
)
|
|
|
|
// GET /api/v1/photos/:uuid
|
|
//
|
|
// Parameters:
|
|
// uuid: string PhotoUUID as returned by the API
|
|
func GetPhoto(router *gin.RouterGroup, conf *config.Config) {
|
|
router.GET("/photos/:uuid", func(c *gin.Context) {
|
|
if Unauthorized(c, conf) {
|
|
c.AbortWithStatusJSON(http.StatusUnauthorized, ErrUnauthorized)
|
|
return
|
|
}
|
|
|
|
q := service.Query()
|
|
p, err := q.PreloadPhotoByUUID(c.Param("uuid"))
|
|
|
|
if err != nil {
|
|
c.AbortWithStatusJSON(http.StatusNotFound, ErrPhotoNotFound)
|
|
return
|
|
}
|
|
|
|
c.IndentedJSON(http.StatusOK, p)
|
|
})
|
|
}
|
|
|
|
// PUT /api/v1/photos/:uuid
|
|
func UpdatePhoto(router *gin.RouterGroup, conf *config.Config) {
|
|
router.PUT("/photos/:uuid", func(c *gin.Context) {
|
|
if Unauthorized(c, conf) {
|
|
c.AbortWithStatusJSON(http.StatusUnauthorized, ErrUnauthorized)
|
|
return
|
|
}
|
|
|
|
db := conf.Db()
|
|
uuid := c.Param("uuid")
|
|
q := query.New(db)
|
|
|
|
m, err := q.PhotoByUUID(uuid)
|
|
|
|
if err != nil {
|
|
c.AbortWithStatusJSON(http.StatusNotFound, ErrPhotoNotFound)
|
|
return
|
|
}
|
|
|
|
// TODO: Proof-of-concept for form handling - might need refactoring
|
|
// 1) Init form with model values
|
|
f, err := form.NewPhoto(m)
|
|
|
|
if err != nil {
|
|
log.Error(err)
|
|
c.AbortWithStatusJSON(http.StatusInternalServerError, ErrSaveFailed)
|
|
return
|
|
}
|
|
|
|
// 2) Update form with values from request
|
|
if err := c.BindJSON(&f); err != nil {
|
|
log.Error(err)
|
|
c.AbortWithStatusJSON(http.StatusBadRequest, ErrFormInvalid)
|
|
return
|
|
}
|
|
|
|
// 3) Save model with values from form
|
|
if err := entity.SavePhotoForm(m, f, conf.GeoCodingApi()); err != nil {
|
|
log.Error(err)
|
|
c.AbortWithStatusJSON(http.StatusInternalServerError, ErrSaveFailed)
|
|
return
|
|
}
|
|
|
|
PublishPhotoEvent(EntityUpdated, uuid, c, q)
|
|
|
|
event.Success("photo saved")
|
|
|
|
p, err := q.PreloadPhotoByUUID(uuid)
|
|
|
|
if err != nil {
|
|
c.AbortWithStatusJSON(http.StatusNotFound, ErrPhotoNotFound)
|
|
return
|
|
}
|
|
|
|
c.JSON(http.StatusOK, p)
|
|
})
|
|
}
|
|
|
|
// GET /api/v1/photos/:uuid/download
|
|
//
|
|
// Parameters:
|
|
// uuid: string PhotoUUID as returned by the API
|
|
func GetPhotoDownload(router *gin.RouterGroup, conf *config.Config) {
|
|
router.GET("/photos/:uuid/download", func(c *gin.Context) {
|
|
q := service.Query()
|
|
f, err := q.FileByPhotoUUID(c.Param("uuid"))
|
|
|
|
if err != nil {
|
|
c.AbortWithStatusJSON(http.StatusNotFound, ErrPhotoNotFound)
|
|
return
|
|
}
|
|
|
|
fileName := path.Join(conf.OriginalsPath(), f.FileName)
|
|
|
|
if !fs.FileExists(fileName) {
|
|
log.Errorf("could not find original: %s", c.Param("uuid"))
|
|
c.Data(http.StatusNotFound, "image/svg+xml", photoIconSvg)
|
|
|
|
// Set missing flag so that the file doesn't show up in search results anymore
|
|
f.FileMissing = true
|
|
conf.Db().Save(&f)
|
|
return
|
|
}
|
|
|
|
downloadFileName := f.ShareFileName()
|
|
|
|
c.Header("Content-Disposition", fmt.Sprintf("attachment; filename=%s", downloadFileName))
|
|
|
|
c.File(fileName)
|
|
})
|
|
}
|
|
|
|
// POST /api/v1/photos/:uuid/like
|
|
//
|
|
// Parameters:
|
|
// uuid: string PhotoUUID as returned by the API
|
|
func LikePhoto(router *gin.RouterGroup, conf *config.Config) {
|
|
router.POST("/photos/:uuid/like", func(c *gin.Context) {
|
|
if Unauthorized(c, conf) {
|
|
c.AbortWithStatusJSON(http.StatusUnauthorized, ErrUnauthorized)
|
|
return
|
|
}
|
|
|
|
id := c.Param("uuid")
|
|
q := service.Query()
|
|
m, err := q.PhotoByUUID(id)
|
|
|
|
if err != nil {
|
|
c.AbortWithStatusJSON(http.StatusNotFound, ErrPhotoNotFound)
|
|
return
|
|
}
|
|
|
|
m.PhotoFavorite = true
|
|
m.PhotoQuality = m.QualityScore()
|
|
conf.Db().Save(&m)
|
|
|
|
event.Publish("count.favorites", event.Data{
|
|
"count": 1,
|
|
})
|
|
|
|
PublishPhotoEvent(EntityUpdated, id, c, q)
|
|
|
|
c.JSON(http.StatusOK, gin.H{"photo": m})
|
|
})
|
|
}
|
|
|
|
// DELETE /api/v1/photos/:uuid/like
|
|
//
|
|
// Parameters:
|
|
// uuid: string PhotoUUID as returned by the API
|
|
func DislikePhoto(router *gin.RouterGroup, conf *config.Config) {
|
|
router.DELETE("/photos/:uuid/like", func(c *gin.Context) {
|
|
if Unauthorized(c, conf) {
|
|
c.AbortWithStatusJSON(http.StatusUnauthorized, ErrUnauthorized)
|
|
return
|
|
}
|
|
|
|
id := c.Param("uuid")
|
|
q := service.Query()
|
|
m, err := q.PhotoByUUID(id)
|
|
|
|
if err != nil {
|
|
c.AbortWithStatusJSON(http.StatusNotFound, ErrPhotoNotFound)
|
|
return
|
|
}
|
|
|
|
m.PhotoFavorite = false
|
|
m.PhotoQuality = m.QualityScore()
|
|
conf.Db().Save(&m)
|
|
|
|
event.Publish("count.favorites", event.Data{
|
|
"count": -1,
|
|
})
|
|
|
|
PublishPhotoEvent(EntityUpdated, id, c, q)
|
|
|
|
c.JSON(http.StatusOK, gin.H{"photo": m})
|
|
})
|
|
}
|
|
|
|
// POST /api/v1/photos/:uuid/primary/:file_uuid
|
|
//
|
|
// Parameters:
|
|
// uuid: string PhotoUUID as returned by the API
|
|
func SetPhotoPrimary(router *gin.RouterGroup, conf *config.Config) {
|
|
router.POST("/photos/:uuid/primary/:file_uuid", func(c *gin.Context) {
|
|
if Unauthorized(c, conf) {
|
|
c.AbortWithStatusJSON(http.StatusUnauthorized, ErrUnauthorized)
|
|
return
|
|
}
|
|
|
|
db := conf.Db()
|
|
|
|
uuid := c.Param("uuid")
|
|
fileUUID := c.Param("file_uuid")
|
|
q := query.New(db)
|
|
err := q.SetPhotoPrimary(uuid, fileUUID)
|
|
|
|
if err != nil {
|
|
c.AbortWithStatusJSON(http.StatusNotFound, ErrPhotoNotFound)
|
|
return
|
|
}
|
|
|
|
PublishPhotoEvent(EntityUpdated, uuid, c, q)
|
|
|
|
event.Success("photo saved")
|
|
|
|
p, err := q.PreloadPhotoByUUID(uuid)
|
|
|
|
if err != nil {
|
|
c.AbortWithStatusJSON(http.StatusNotFound, ErrPhotoNotFound)
|
|
return
|
|
}
|
|
|
|
c.JSON(http.StatusOK, p)
|
|
})
|
|
}
|