8b36220c68
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
30 lines
704 B
Go
30 lines
704 B
Go
package form
|
|
|
|
// PhotoSearch represents search form fields for "/api/v1/labels".
|
|
type LabelSearch struct {
|
|
Query string `form:"q"`
|
|
ID string `form:"id"`
|
|
Slug string `form:"slug"`
|
|
Name string `form:"name"`
|
|
All bool `form:"all"`
|
|
Favorites bool `form:"favorites"`
|
|
Count int `form:"count" binding:"required"`
|
|
Offset int `form:"offset"`
|
|
Order string `form:"order"`
|
|
}
|
|
|
|
func (f *LabelSearch) GetQuery() string {
|
|
return f.Query
|
|
}
|
|
|
|
func (f *LabelSearch) SetQuery(q string) {
|
|
f.Query = q
|
|
}
|
|
|
|
func (f *LabelSearch) ParseQueryString() error {
|
|
return ParseQueryString(f)
|
|
}
|
|
|
|
func NewLabelSearch(query string) LabelSearch {
|
|
return LabelSearch{Query: query}
|
|
}
|