-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstruments.go
57 lines (51 loc) · 1.49 KB
/
instruments.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
package openaq
import (
"context"
"fmt"
"net/url"
)
type InstrumentArgs struct {
BaseArgs BaseArgs
}
// QueryParams translates InstrumentArgs struct into url.Values
func (instrumentArgs InstrumentArgs) QueryParams() (url.Values, error) {
q := make(url.Values)
q, err := instrumentArgs.BaseArgs.Values(q)
if err != nil {
return nil, err
}
return q, nil
}
// GetInstruments fetches all instruments filtered by any params passed.
func (c *Client) GetInstruments(ctx context.Context, args InstrumentArgs) (*InstrumentsResponse, error) {
resp := &InstrumentsResponse{}
queryParams, err := args.QueryParams()
if err != nil {
return nil, err
}
err = c.request(ctx, "GET", "/instruments", queryParams, resp)
if err != nil {
return nil, err
}
return resp, nil
}
// GetManufacturerInstruments fetches instruments by manufacturer ID.
func (c *Client) GetManufacturerInstruments(ctx context.Context, manufacturerID int64) (*InstrumentsResponse, error) {
path := fmt.Sprintf("/manufacturers/%d/instruments", manufacturerID)
resp := &InstrumentsResponse{}
err := c.request(ctx, "GET", path, nil, resp)
if err != nil {
return nil, err
}
return resp, nil
}
// GetInstrument fetches a single instrument by ID.
func (c *Client) GetInstrument(ctx context.Context, instrumentsID int64) (*InstrumentsResponse, error) {
path := fmt.Sprintf("/instruments/%d", instrumentsID)
resp := &InstrumentsResponse{}
err := c.request(ctx, "GET", path, nil, resp)
if err != nil {
return nil, err
}
return resp, nil
}