2019-12-05 19:21:35 +01:00
|
|
|
package form
|
2019-06-17 21:45:06 +02:00
|
|
|
|
2020-01-15 04:04:33 +01:00
|
|
|
// AlbumSearch represents search form fields for "/api/v1/albums".
|
2019-12-05 19:21:35 +01:00
|
|
|
type AlbumSearch struct {
|
2020-05-14 19:03:12 +02:00
|
|
|
Query string `form:"q"`
|
|
|
|
ID string `form:"id"`
|
2020-05-29 12:21:17 +02:00
|
|
|
Type string `form:"type"`
|
2020-07-12 16:36:39 +02:00
|
|
|
Location string `form:"location"`
|
2020-05-29 12:21:17 +02:00
|
|
|
Category string `form:"category"`
|
2020-05-14 19:03:12 +02:00
|
|
|
Slug string `form:"slug"`
|
2020-05-26 09:02:19 +02:00
|
|
|
Title string `form:"title"`
|
|
|
|
Country string `json:"country"`
|
|
|
|
Year int `json:"year"`
|
|
|
|
Month int `json:"month"`
|
2020-07-06 07:41:33 +02:00
|
|
|
Day int `json:"day"`
|
2020-05-14 19:03:12 +02:00
|
|
|
Favorite bool `form:"favorite"`
|
2020-05-26 09:02:19 +02:00
|
|
|
Private bool `form:"private"`
|
2020-05-23 20:58:58 +02:00
|
|
|
Count int `form:"count" binding:"required" serialize:"-"`
|
|
|
|
Offset int `form:"offset" serialize:"-"`
|
|
|
|
Order string `form:"order" serialize:"-"`
|
2019-06-17 21:45:06 +02:00
|
|
|
}
|
|
|
|
|
2020-01-15 04:04:33 +01:00
|
|
|
func (f *AlbumSearch) GetQuery() string {
|
|
|
|
return f.Query
|
|
|
|
}
|
2019-06-17 21:45:06 +02:00
|
|
|
|
2020-01-15 04:04:33 +01:00
|
|
|
func (f *AlbumSearch) SetQuery(q string) {
|
|
|
|
f.Query = q
|
|
|
|
}
|
2019-06-17 21:45:06 +02:00
|
|
|
|
2020-01-15 04:04:33 +01:00
|
|
|
func (f *AlbumSearch) ParseQueryString() error {
|
|
|
|
return ParseQueryString(f)
|
2019-06-17 21:45:06 +02:00
|
|
|
}
|
2020-01-27 16:53:09 +01:00
|
|
|
|
|
|
|
func NewAlbumSearch(query string) AlbumSearch {
|
|
|
|
return AlbumSearch{Query: query}
|
|
|
|
}
|