This repository has been archived on 2023-04-13. You can view files and clone it, but cannot push or open issues or pull requests.
go-discogs/discogs.go

73 lines
1.6 KiB
Go
Raw Normal View History

2016-03-04 16:08:02 +00:00
package discogs
import (
2017-04-26 12:57:03 +00:00
"fmt"
2016-03-04 16:08:02 +00:00
"net/http"
2017-02-13 16:40:27 +00:00
"github.com/irlndts/go-apirequest"
2016-03-04 16:08:02 +00:00
)
const (
2017-02-14 19:01:50 +00:00
discogsAPI = "https://api.discogs.com/"
2016-03-04 16:08:02 +00:00
)
2018-02-20 15:13:04 +00:00
type Options struct {
Currency string
UserAgent string
}
2016-03-04 16:08:02 +00:00
// Client is a Discogs client for making Discogs API requests.
type Client struct {
2017-04-25 16:39:32 +00:00
api *apirequest.API
currency string
2018-02-20 15:13:04 +00:00
// services
Release *ReleaseService
Master *MasterService
Artist *ArtistService
Label *LabelService
Search *SearchService
2016-03-04 16:08:02 +00:00
}
// NewClient returns a new Client.
2018-02-20 15:13:04 +00:00
func NewClient(o *Options) (*Client, error) {
2017-04-26 12:57:03 +00:00
base := apirequest.New().Client(&http.Client{}).Base(discogsAPI)
2018-02-20 15:13:04 +00:00
if o.UserAgent != "" {
base.Set("User-Agent", o.UserAgent)
}
2017-04-25 16:39:32 +00:00
2018-02-20 15:13:04 +00:00
cur, err := currency(o.Currency)
if err != nil {
return nil, err
2016-03-04 16:08:02 +00:00
}
2018-02-20 15:13:04 +00:00
return &Client{
api: base,
Release: newReleaseService(base.New(), cur),
Artist: newArtistService(base.New()),
Label: newLabelService(base.New()),
Master: newMasterService(base.New()),
Search: newSearchService(base.New()),
}, nil
2016-03-04 16:08:02 +00:00
}
2017-04-25 16:39:32 +00:00
// Token sets tokens, it's required for some queries like search
func (c *Client) Token(token string) *Client {
c.api.Set("Authorization", "Discogs token="+token)
return c
}
2018-02-20 15:13:04 +00:00
// currency validates currency for marketplace data.
2017-04-25 16:39:32 +00:00
// Defaults to the authenticated users currency. Must be one of the following:
// USD GBP EUR CAD AUD JPY CHF MXN BRL NZD SEK ZAR
2018-02-20 15:13:04 +00:00
func currency(c string) (string, error) {
switch c {
2017-04-26 12:57:03 +00:00
case "USD", "GBP", "EUR", "CAD", "AUD", "JPY", "CHF", "MXN", "BRL", "NZD", "SEK", "ZAR":
2018-02-20 15:13:04 +00:00
return c, nil
2017-04-26 12:57:03 +00:00
default:
2018-02-20 15:13:04 +00:00
return "", fmt.Errorf("%v\n", "Invalid currency abbreviation.")
2017-04-26 12:57:03 +00:00
}
2018-02-20 15:13:04 +00:00
return "USD", nil
2017-04-25 16:39:32 +00:00
}