photoprism/internal/form/search_albums.go

38 lines
977 B
Go
Raw Normal View History

package form
2019-06-17 19:45:06 +00:00
// SearchAlbums represents search form fields for "/api/v1/albums".
type SearchAlbums struct {
Query string `form:"q"`
UID string `form:"uid"`
Type string `form:"type"`
Location string `form:"location"`
Category string `form:"category"`
Slug string `form:"slug"`
Title string `form:"title"`
Country string `json:"country"`
Year int `json:"year"`
Month int `json:"month"`
Day int `json:"day"`
Favorite bool `form:"favorite"`
Private bool `form:"private"`
Count int `form:"count" binding:"required" serialize:"-"`
Offset int `form:"offset" serialize:"-"`
Order string `form:"order" serialize:"-"`
2019-06-17 19:45:06 +00:00
}
func (f *SearchAlbums) GetQuery() string {
return f.Query
}
2019-06-17 19:45:06 +00:00
func (f *SearchAlbums) SetQuery(q string) {
f.Query = q
}
2019-06-17 19:45:06 +00:00
func (f *SearchAlbums) ParseQueryString() error {
return ParseQueryString(f)
2019-06-17 19:45:06 +00:00
}
2020-01-27 15:53:09 +00:00
func NewAlbumSearch(query string) SearchAlbums {
return SearchAlbums{Query: query}
2020-01-27 15:53:09 +00:00
}