e3bb8b19dd
Also improves migrations and updates the db schema docs. Signed-off-by: Michael Mayer <michael@photoprism.app>
93 lines
2.4 KiB
Go
93 lines
2.4 KiB
Go
package api
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/gin-gonic/gin/binding"
|
|
|
|
"github.com/photoprism/photoprism/internal/acl"
|
|
"github.com/photoprism/photoprism/internal/event"
|
|
"github.com/photoprism/photoprism/internal/form"
|
|
"github.com/photoprism/photoprism/internal/get"
|
|
"github.com/photoprism/photoprism/internal/search"
|
|
"github.com/photoprism/photoprism/pkg/clean"
|
|
"github.com/photoprism/photoprism/pkg/txt"
|
|
)
|
|
|
|
// SearchGeo finds photos and returns results as JSON, so they can be displayed on a map or in a viewer.
|
|
// See form.SearchPhotosGeo for supported search params and data types.
|
|
//
|
|
// GET /api/v1/geo
|
|
func SearchGeo(router *gin.RouterGroup) {
|
|
handler := func(c *gin.Context) {
|
|
s := AuthAny(c, acl.ResourcePlaces, acl.Permissions{acl.ActionSearch, acl.ActionView, acl.AccessShared})
|
|
|
|
// Abort if permission was not granted.
|
|
if s.Abort(c) {
|
|
return
|
|
}
|
|
|
|
var err error
|
|
var f form.SearchPhotosGeo
|
|
|
|
// Abort if request params are invalid.
|
|
if err = c.MustBindWith(&f, binding.Form); err != nil {
|
|
event.AuditWarn([]string{ClientIP(c), "session %s", string(acl.ResourcePlaces), "form invalid", "%s"}, s.RefID, err)
|
|
AbortBadRequest(c)
|
|
return
|
|
}
|
|
|
|
conf := get.Config()
|
|
settings := conf.Settings()
|
|
|
|
// Ignore private flag if feature is disabled.
|
|
if !settings.Features.Private {
|
|
f.Public = false
|
|
}
|
|
|
|
// Ignore private flag if feature is disabled.
|
|
if f.Scope == "" &&
|
|
settings.Features.Review &&
|
|
acl.Resources.Deny(acl.ResourcePhotos, s.User().AclRole(), acl.ActionManage) {
|
|
f.Quality = 3
|
|
}
|
|
|
|
// Find matching pictures.
|
|
photos, err := search.UserPhotosGeo(f, s)
|
|
|
|
// Ok?
|
|
if err != nil {
|
|
event.AuditWarn([]string{ClientIP(c), "session %s", string(acl.ResourcePlaces), "search", "%s"}, s.RefID, err)
|
|
AbortBadRequest(c)
|
|
return
|
|
}
|
|
|
|
// Add response headers.
|
|
AddCountHeader(c, len(photos))
|
|
AddLimitHeader(c, f.Count)
|
|
AddOffsetHeader(c, f.Offset)
|
|
AddTokenHeaders(c, s)
|
|
|
|
var resp []byte
|
|
|
|
// Render JSON response.
|
|
switch clean.Token(c.Param("format")) {
|
|
case "view":
|
|
resp, err = photos.ViewerJSON(conf.ContentUri(), conf.ApiUri(), s.PreviewToken, s.DownloadToken)
|
|
default:
|
|
resp, err = photos.GeoJSON()
|
|
}
|
|
|
|
if err != nil {
|
|
c.AbortWithStatusJSON(400, gin.H{"error": txt.UpperFirst(err.Error())})
|
|
return
|
|
}
|
|
|
|
c.Data(http.StatusOK, "application/json", resp)
|
|
}
|
|
|
|
// Register route handlers.
|
|
router.GET("/geo", handler)
|
|
router.GET("/geo/:format", handler)
|
|
}
|