photoprism/internal/form/search_geojson.go

109 lines
3.2 KiB
Go
Raw Normal View History

package form
import "time"
2021-11-26 12:59:10 +00:00
// SearchGeo represents search form fields for "/api/v1/geo".
type SearchGeo struct {
Query string `form:"q"`
Filter string `form:"filter"`
Near string `form:"near"`
Type string `form:"type"`
Path string `form:"path"`
Folder string `form:"folder"` // Alias for Path
Name string `form:"name"`
Title string `form:"title"`
Before time.Time `form:"before" time_format:"2006-01-02"`
After time.Time `form:"after" time_format:"2006-01-02"`
Favorite bool `form:"favorite"`
Unsorted bool `form:"unsorted"`
Video bool `form:"video"`
Photo bool `form:"photo"`
Raw bool `form:"raw"`
Live bool `form:"live"`
Scan bool `form:"scan"`
Panorama bool `form:"panorama"`
Portrait bool `form:"portrait"`
Landscape bool `form:"landscape"`
Square bool `form:"square"`
Archived bool `form:"archived"`
Public bool `form:"public"`
Private bool `form:"private"`
Review bool `form:"review"`
Quality int `form:"quality"`
Faces string `form:"faces"` // Find or exclude faces if detected.
Lat float32 `form:"lat"`
Lng float32 `form:"lng"`
S2 string `form:"s2"`
Olc string `form:"olc"`
Dist uint `form:"dist"`
Face string `form:"face"` // UIDs
Subject string `form:"subject"` // UIDs
Person string `form:"person"` // Alias for Subject
Subjects string `form:"subjects"` // Text
People string `form:"people"` // Alias for Subjects
Keywords string `form:"keywords"`
Album string `form:"album"`
Albums string `form:"albums"`
Country string `form:"country"`
Year string `form:"year"` // Moments
Month string `form:"month"` // Moments
Day string `form:"day"` // Moments
Color string `form:"color"`
Camera int `form:"camera"`
Lens int `form:"lens"`
Count int `form:"count" serialize:"-"`
Offset int `form:"offset" serialize:"-"`
}
// GetQuery returns the query parameter as string.
2021-11-26 12:59:10 +00:00
func (f *SearchGeo) GetQuery() string {
return f.Query
}
// SetQuery sets the query parameter.
2021-11-26 12:59:10 +00:00
func (f *SearchGeo) SetQuery(q string) {
f.Query = q
}
// ParseQueryString parses the query parameter if possible.
2021-11-26 12:59:10 +00:00
func (f *SearchGeo) ParseQueryString() error {
err := ParseQueryString(f)
if f.Path == "" && f.Folder != "" {
f.Path = f.Folder
2021-09-20 10:36:59 +00:00
f.Folder = ""
}
2021-09-20 10:36:59 +00:00
if f.Subject == "" && f.Person != "" {
f.Subject = f.Person
f.Person = ""
}
if f.Subjects == "" && f.People != "" {
f.Subjects = f.People
2021-09-20 10:36:59 +00:00
f.People = ""
}
if f.Filter != "" {
if err := Unserialize(f, f.Filter); err != nil {
return err
}
}
return err
}
// Serialize returns a string containing non-empty fields and values of a struct.
2021-11-26 12:59:10 +00:00
func (f *SearchGeo) Serialize() string {
return Serialize(f, false)
}
// SerializeAll returns a string containing all non-empty fields and values of a struct.
2021-11-26 12:59:10 +00:00
func (f *SearchGeo) SerializeAll() string {
return Serialize(f, true)
}
2020-01-28 21:16:59 +00:00
2021-11-26 12:59:10 +00:00
func NewGeoSearch(query string) SearchGeo {
return SearchGeo{Query: query}
2020-01-28 21:16:59 +00:00
}