photoprism/internal/form/search_albums.go
Michael Mayer 650817a9e0 API: Add prefix to the source filename of search request handlers
Finding the right code is easier when the name matches related
functionality in other packages.
2021-11-26 14:28:50 +01:00

38 lines
976 B
Go

package form
// SearchAlbums represents search form fields for "/api/v1/albums".
type SearchAlbums struct {
Query string `form:"q"`
ID string `form:"id"`
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:"-"`
}
func (f *SearchAlbums) GetQuery() string {
return f.Query
}
func (f *SearchAlbums) SetQuery(q string) {
f.Query = q
}
func (f *SearchAlbums) ParseQueryString() error {
return ParseQueryString(f)
}
func NewAlbumSearch(query string) SearchAlbums {
return SearchAlbums{Query: query}
}