2018-09-24 21:14:15 +02:00
|
|
|
package api
|
2018-09-24 11:27:46 +02:00
|
|
|
|
|
|
|
import (
|
2018-10-31 07:14:33 +01:00
|
|
|
"net/http"
|
|
|
|
"strconv"
|
|
|
|
|
2019-05-03 18:57:28 +02:00
|
|
|
"github.com/photoprism/photoprism/internal/context"
|
2019-05-02 14:10:05 +02:00
|
|
|
log "github.com/sirupsen/logrus"
|
|
|
|
|
2018-09-24 11:27:46 +02:00
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
"github.com/gin-gonic/gin/binding"
|
|
|
|
"github.com/photoprism/photoprism/internal/forms"
|
|
|
|
"github.com/photoprism/photoprism/internal/photoprism"
|
|
|
|
)
|
|
|
|
|
2018-11-06 10:43:59 +01:00
|
|
|
// GET /api/v1/photos
|
2018-11-06 10:28:44 +01:00
|
|
|
//
|
|
|
|
// Query:
|
2018-11-06 10:43:59 +01:00
|
|
|
// q: string Query string
|
|
|
|
// tags: string Tags
|
|
|
|
// cat: string Category
|
|
|
|
// country: string Country code
|
|
|
|
// camera: int Camera ID
|
|
|
|
// order: string Sort order
|
|
|
|
// count: int Max result count (required)
|
|
|
|
// offset: int Result offset
|
|
|
|
// before: date Find photos taken before (format: "2006-01-02")
|
|
|
|
// after: date Find photos taken after (format: "2006-01-02")
|
|
|
|
// favorites: bool Find favorites only
|
2019-05-03 18:57:28 +02:00
|
|
|
func GetPhotos(router *gin.RouterGroup, ctx *context.Context) {
|
2018-09-24 11:27:46 +02:00
|
|
|
router.GET("/photos", func(c *gin.Context) {
|
|
|
|
var form forms.PhotoSearchForm
|
2019-05-03 18:57:28 +02:00
|
|
|
search := photoprism.NewSearch(ctx.OriginalsPath(), ctx.Db())
|
2019-01-15 14:00:42 +01:00
|
|
|
err := c.MustBindWith(&form, binding.Form)
|
|
|
|
if err != nil {
|
|
|
|
c.AbortWithStatusJSON(http.StatusBadRequest, gin.H{"error": err.Error()})
|
|
|
|
return
|
|
|
|
}
|
2018-09-24 11:27:46 +02:00
|
|
|
|
|
|
|
result, err := search.Photos(form)
|
|
|
|
if err != nil {
|
|
|
|
c.AbortWithStatusJSON(400, gin.H{"error": err.Error()})
|
2019-01-15 14:00:42 +01:00
|
|
|
return
|
2018-09-24 11:27:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
c.Header("x-result-count", strconv.Itoa(form.Count))
|
|
|
|
c.Header("x-result-offset", strconv.Itoa(form.Offset))
|
|
|
|
c.JSON(http.StatusOK, result)
|
|
|
|
})
|
2018-09-27 08:59:53 +02:00
|
|
|
}
|
2018-10-31 03:33:18 +01:00
|
|
|
|
2019-01-15 14:00:42 +01:00
|
|
|
// POST /api/v1/photos/:id/like
|
2018-11-06 10:28:44 +01:00
|
|
|
//
|
|
|
|
// Parameters:
|
2019-01-15 14:00:42 +01:00
|
|
|
// id: int Photo ID as returned by the API
|
2019-05-03 18:57:28 +02:00
|
|
|
func LikePhoto(router *gin.RouterGroup, ctx *context.Context) {
|
2019-01-15 14:00:42 +01:00
|
|
|
router.POST("/photos/:id/like", func(c *gin.Context) {
|
2019-05-03 18:57:28 +02:00
|
|
|
search := photoprism.NewSearch(ctx.OriginalsPath(), ctx.Db())
|
2019-01-15 14:00:42 +01:00
|
|
|
photoID, err := strconv.ParseUint(c.Param("id"), 10, 64)
|
|
|
|
if err != nil {
|
2019-05-03 18:57:28 +02:00
|
|
|
log.Errorf("could not find image for id: %s", err.Error())
|
2018-10-31 03:33:18 +01:00
|
|
|
c.Data(http.StatusNotFound, "image", []byte(""))
|
2019-01-15 14:00:42 +01:00
|
|
|
return
|
2018-10-31 03:33:18 +01:00
|
|
|
}
|
2019-01-15 14:00:42 +01:00
|
|
|
|
2019-04-26 04:25:00 +02:00
|
|
|
photo, err := search.FindPhotoByID(photoID)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
c.AbortWithStatusJSON(404, gin.H{"error": err.Error()})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-01-15 14:00:42 +01:00
|
|
|
photo.PhotoFavorite = true
|
2019-05-03 18:57:28 +02:00
|
|
|
ctx.Db().Save(&photo)
|
2019-01-15 14:00:42 +01:00
|
|
|
c.JSON(http.StatusOK, http.Response{})
|
2018-10-31 03:33:18 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2018-11-06 10:43:59 +01:00
|
|
|
// DELETE /api/v1/photos/:photoId/like
|
2018-11-06 10:28:44 +01:00
|
|
|
//
|
|
|
|
// Parameters:
|
2019-01-15 14:00:42 +01:00
|
|
|
// id: int Photo ID as returned by the API
|
2019-05-03 18:57:28 +02:00
|
|
|
func DislikePhoto(router *gin.RouterGroup, ctx *context.Context) {
|
2019-01-15 14:00:42 +01:00
|
|
|
router.DELETE("/photos/:id/like", func(c *gin.Context) {
|
2019-05-03 18:57:28 +02:00
|
|
|
search := photoprism.NewSearch(ctx.OriginalsPath(), ctx.Db())
|
2019-01-15 14:00:42 +01:00
|
|
|
id, err := strconv.ParseUint(c.Param("id"), 10, 64)
|
|
|
|
if err != nil {
|
2019-05-03 18:57:28 +02:00
|
|
|
log.Errorf("could not find image for id: %s", err.Error())
|
2018-10-31 03:33:18 +01:00
|
|
|
c.Data(http.StatusNotFound, "image", []byte(""))
|
2019-01-15 14:00:42 +01:00
|
|
|
return
|
2018-10-31 03:33:18 +01:00
|
|
|
}
|
2019-01-15 14:00:42 +01:00
|
|
|
|
2019-04-26 04:25:00 +02:00
|
|
|
photo, err := search.FindPhotoByID(id)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
c.AbortWithStatusJSON(404, gin.H{"error": err.Error()})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-01-15 14:00:42 +01:00
|
|
|
photo.PhotoFavorite = false
|
2019-05-03 18:57:28 +02:00
|
|
|
ctx.Db().Save(&photo)
|
2019-01-15 14:00:42 +01:00
|
|
|
c.JSON(http.StatusOK, http.Response{})
|
2018-10-31 03:33:18 +01:00
|
|
|
})
|
|
|
|
}
|