71 lines
1.3 KiB
Go
71 lines
1.3 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/form"
|
||
|
"github.com/photoprism/photoprism/internal/search"
|
||
|
"github.com/photoprism/photoprism/pkg/txt"
|
||
|
)
|
||
|
|
||
|
// SearchGeo finds photos and returns results as Geo, so they can be displayed on a map.
|
||
|
//
|
||
|
// GET /api/v1/geo
|
||
|
func SearchGeo(router *gin.RouterGroup) {
|
||
|
router.GET("/geo", func(c *gin.Context) {
|
||
|
s := Auth(SessionID(c), acl.ResourcePhotos, acl.ActionSearch)
|
||
|
|
||
|
if s.Invalid() {
|
||
|
AbortUnauthorized(c)
|
||
|
return
|
||
|
}
|
||
|
|
||
|
var f form.SearchGeo
|
||
|
|
||
|
err := c.MustBindWith(&f, binding.Form)
|
||
|
|
||
|
if err != nil {
|
||
|
AbortBadRequest(c)
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// Guests may only see public content.
|
||
|
if s.Guest() {
|
||
|
if f.Album == "" || !s.HasShare(f.Album) {
|
||
|
AbortUnauthorized(c)
|
||
|
return
|
||
|
}
|
||
|
|
||
|
f.Public = true
|
||
|
f.Private = false
|
||
|
f.Archived = false
|
||
|
f.Review = false
|
||
|
}
|
||
|
|
||
|
// Find matching pictures.
|
||
|
photos, err := search.Geo(f)
|
||
|
|
||
|
if err != nil {
|
||
|
log.Warnf("search: %s", err)
|
||
|
AbortBadRequest(c)
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// Create GeoJSON from search results.
|
||
|
resp, err := photos.MarshalJSON()
|
||
|
|
||
|
if err != nil {
|
||
|
c.AbortWithStatusJSON(400, gin.H{"error": txt.UcFirst(err.Error())})
|
||
|
return
|
||
|
}
|
||
|
|
||
|
AddTokenHeaders(c)
|
||
|
|
||
|
c.Data(http.StatusOK, "application/json", resp)
|
||
|
})
|
||
|
}
|