photoprism/internal/form/search_folders.go

35 lines
909 B
Go
Raw Normal View History

package form
// SearchFolders represents search form fields for "/api/v1/folders".
type SearchFolders struct {
Query string `form:"q"`
Recursive bool `form:"recursive"`
Files bool `form:"files"`
Uncached bool `form:"uncached"`
Public bool `form:"public"`
Count int `form:"count" serialize:"-"`
Offset int `form:"offset" serialize:"-"`
}
func (f *SearchFolders) GetQuery() string {
return f.Query
}
func (f *SearchFolders) SetQuery(q string) {
f.Query = q
}
func (f *SearchFolders) ParseQueryString() error {
return ParseQueryString(f)
}
// Serialize returns a string containing non-empty fields and values of a struct.
func (f *SearchFolders) Serialize() string {
return Serialize(f, false)
}
// SerializeAll returns a string containing all non-empty fields and values of a struct.
func (f *SearchFolders) SerializeAll() string {
return Serialize(f, true)
}