This repository was archived by the owner on Mar 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathclient.go
121 lines (100 loc) · 2.57 KB
/
client.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
package podops
import (
"context"
"github.com/podops/podops/internal/errordef"
)
// Client is a client for interacting with the PodOps service.
//
// Clients should be reused instead of created as needed.
// The methods of Client are safe for concurrent use by multiple goroutines.
type (
ClientOption struct {
Token string
Production string
APIEndpoint string
CDNEndpoint string
DefaultEndpoint string
}
Client struct {
opts *ClientOption
defaultProduction string
// internal for now
realm string
}
)
// NewClient creates a new podcast client.
//
// Clients should be reused instead of created as needed.
// The methods of a client instance are threadsafe.
func NewClient(ctx context.Context, token string, opts ...*ClientOption) (*Client, error) {
co := DefaultClientOptions()
if len(opts) != 0 {
co = co.Merge(opts[0]) // QA we assume only 1 opts is provided!
}
if token != "" {
co.Token = token
}
return New(ctx, co)
}
func New(ctx context.Context, o *ClientOption) (*Client, error) {
if o == nil || !o.IsValid() {
return nil, errordef.ErrInvalidClientConfiguration
}
return &Client{
opts: o,
realm: "podops",
}, nil
}
// IsValid checks if all configuration parameters are provided
func (cl *Client) IsValid() bool {
return cl.opts.IsValid()
}
func (cl *Client) SetProduction(production string) {
cl.defaultProduction = production
}
func (cl *Client) APIEndpoint() string {
return cl.opts.APIEndpoint
}
func (cl *Client) CDNEndpoint() string {
return cl.opts.CDNEndpoint
}
func (cl *Client) DefaultEndpoint() string {
return cl.opts.DefaultEndpoint
}
func (cl *Client) Realm() string {
return cl.realm
}
func (cl *Client) Token() string {
return cl.opts.Token
}
func (cl *Client) DefaultProduction() string {
return cl.defaultProduction
}
// Merge clones co and combines it with the provided options
func (co ClientOption) Merge(opts *ClientOption) *ClientOption {
o := ClientOption{
Token: co.Token,
APIEndpoint: co.APIEndpoint,
CDNEndpoint: co.CDNEndpoint,
DefaultEndpoint: co.DefaultEndpoint,
}
if opts != nil {
if opts.Token != "" {
o.Token = opts.Token
}
if opts.APIEndpoint != "" {
o.APIEndpoint = opts.APIEndpoint
}
if opts.CDNEndpoint != "" {
o.CDNEndpoint = opts.CDNEndpoint
}
if opts.DefaultEndpoint != "" {
o.DefaultEndpoint = opts.DefaultEndpoint
}
}
return &o
}
// IsValid checks if all configuration parameters are provided
func (co ClientOption) IsValid() bool {
return co.APIEndpoint != "" && co.CDNEndpoint != "" && co.DefaultEndpoint != ""
}