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-06 23:18:10 +02:00
|
|
|
"github.com/photoprism/photoprism/internal/config"
|
2020-05-08 15:41:01 +02:00
|
|
|
"github.com/photoprism/photoprism/internal/query"
|
2020-01-12 14:00:56 +01:00
|
|
|
"github.com/photoprism/photoprism/pkg/txt"
|
2019-05-02 14:10:05 +02:00
|
|
|
|
2018-09-24 11:27:46 +02:00
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
"github.com/gin-gonic/gin/binding"
|
2019-12-05 19:21:35 +01:00
|
|
|
"github.com/photoprism/photoprism/internal/form"
|
2018-09-24 11:27:46 +02:00
|
|
|
)
|
|
|
|
|
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
|
2019-06-05 18:25:20 +02:00
|
|
|
// label: string Label
|
2018-11-06 10:43:59 +01:00
|
|
|
// cat: string Category
|
|
|
|
// country: string Country code
|
2019-12-09 08:04:41 +01:00
|
|
|
// camera: int UpdateCamera ID
|
2018-11-06 10:43:59 +01:00
|
|
|
// 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")
|
2020-05-14 19:03:12 +02:00
|
|
|
// favorite: bool Find favorites only
|
2019-05-06 23:18:10 +02:00
|
|
|
func GetPhotos(router *gin.RouterGroup, conf *config.Config) {
|
2018-09-24 11:27:46 +02:00
|
|
|
router.GET("/photos", func(c *gin.Context) {
|
2020-01-22 13:43:07 +01:00
|
|
|
if Unauthorized(c, conf) {
|
|
|
|
c.AbortWithStatusJSON(http.StatusUnauthorized, ErrUnauthorized)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-12-05 19:21:35 +01:00
|
|
|
var f form.PhotoSearch
|
2019-05-16 08:41:16 +02:00
|
|
|
|
2019-12-05 19:21:35 +01:00
|
|
|
err := c.MustBindWith(&f, binding.Form)
|
2019-05-16 08:41:16 +02:00
|
|
|
|
2019-01-15 14:00:42 +01:00
|
|
|
if err != nil {
|
2020-01-07 17:36:49 +01:00
|
|
|
c.AbortWithStatusJSON(http.StatusBadRequest, gin.H{"error": txt.UcFirst(err.Error())})
|
2019-01-15 14:00:42 +01:00
|
|
|
return
|
|
|
|
}
|
2018-09-24 11:27:46 +02:00
|
|
|
|
2020-05-25 19:10:44 +02:00
|
|
|
result, count, err := query.PhotoSearch(f)
|
2019-12-08 22:45:45 +01:00
|
|
|
|
2018-09-24 11:27:46 +02:00
|
|
|
if err != nil {
|
2020-01-07 17:36:49 +01:00
|
|
|
c.AbortWithStatusJSON(400, gin.H{"error": txt.UcFirst(err.Error())})
|
2019-01-15 14:00:42 +01:00
|
|
|
return
|
2018-09-24 11:27:46 +02:00
|
|
|
}
|
|
|
|
|
2020-04-20 20:07:58 +02:00
|
|
|
c.Header("X-Count", strconv.Itoa(count))
|
|
|
|
c.Header("X-Limit", strconv.Itoa(f.Count))
|
|
|
|
c.Header("X-Offset", strconv.Itoa(f.Offset))
|
2019-05-16 08:41:16 +02:00
|
|
|
|
2018-09-24 11:27:46 +02:00
|
|
|
c.JSON(http.StatusOK, result)
|
|
|
|
})
|
2018-09-27 08:59:53 +02:00
|
|
|
}
|