76 lines
2.7 KiB
Go
76 lines
2.7 KiB
Go
package discogs
|
|
|
|
import "net/url"
|
|
|
|
// SearchService ...
|
|
type SearchService struct {
|
|
url string
|
|
}
|
|
|
|
func newSearchService(url string) *SearchService {
|
|
return &SearchService{
|
|
url: url,
|
|
}
|
|
}
|
|
|
|
// SerachRequest describes search request
|
|
type SearchRequest struct {
|
|
Q string // search query (optional)
|
|
Type string // one of release, master, artist, label (optional)
|
|
Title string // search by combined “Artist Name - Release Title” title field (optional)
|
|
Release_title string // search release titles (optional)
|
|
Credit string // search release credits (optional)
|
|
Artist string // search artist names (optional)
|
|
Anv string // search artist ANV (optional)
|
|
Label string // search label names (optional)
|
|
Genre string // search genres (optional)
|
|
Style string // search styles (optional)
|
|
Country string // search release country (optional)
|
|
Year string // search release year (optional)
|
|
Format string // search formats (optional)
|
|
Catno string // search catalog number (optional)
|
|
Barcode string // search barcodes (optional)
|
|
Track string // search track titles (optional)
|
|
Submitter string // search submitter username (optional)
|
|
Contributer string // search contributor usernames (optional)
|
|
|
|
Page int // optional
|
|
PerPage int // optional
|
|
}
|
|
|
|
// Search describes search response
|
|
type Search struct {
|
|
Pagination Page `json:"pagination"`
|
|
Results []Result `json:"results,omitempty"`
|
|
}
|
|
|
|
// Result describes a part of search result
|
|
type Result struct {
|
|
Style []string `json:"style,omitempty"`
|
|
Thumb string `json:"thumb,omitempty"`
|
|
Title string `json:"title,omitempty"`
|
|
Country string `json:"country,omitempty"`
|
|
Format []string `json:"format,omitempty"`
|
|
URI string `json:"uri,omitempty"`
|
|
Community Community `json:"community,omitempty"`
|
|
Label []string `json:"label,omitempty"`
|
|
Catno string `json:"catno,omitempty"`
|
|
Year string `json:"year,omitempty"`
|
|
Genre []string `json:"genre,omitempty"`
|
|
ResourceURL string `json:"resource_url,omitempty"`
|
|
Type string `json:"type,omitempty"`
|
|
ID int `json:"id,omitempty"`
|
|
}
|
|
|
|
// Search makes search request to discogs.
|
|
// Issue a search query to our database. This endpoint accepts pagination parameters.
|
|
// Authentication (as any user) is required.
|
|
// https://www.discogs.com/developers/#page:database,header:database-search
|
|
func (s *SearchService) Search(params url.Values) (*Search, error) {
|
|
var search *Search
|
|
if err := request(s.url, params, &search); err != nil {
|
|
return nil, err
|
|
}
|
|
return search, nil
|
|
}
|