-
Notifications
You must be signed in to change notification settings - Fork 14
/
client.go
224 lines (190 loc) · 5.54 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
package sendpulse_sdk_go
import (
"bytes"
"context"
"encoding/json"
"fmt"
"golang.org/x/time/rate"
"io"
"io/ioutil"
"net/http"
"sync"
)
const apiBaseUrl = "https://api.sendpulse.com"
// SendpulseError represents http error from SendPulse
type SendpulseError struct {
HttpCode int
Url string
Body string
Message string
}
// Error returns string representation of the SendpulseError
func (e *SendpulseError) Error() string {
return fmt.Sprintf("Http code: %d, url: %s, body: %s, message: %s", e.HttpCode, e.Url, e.Body, e.Message)
}
// Client to interact with SendpulseAPI
type Client struct {
client *http.Client
config *Config
token string
tokenLock *sync.RWMutex
rateLimiter *rate.Limiter
Emails *EmailsService
Balance *BalanceService
SMTP *SmtpService
Push *PushService
SMS *SmsService
Viber *ViberService
VkOk *VkOkService
Bots *BotsService
Automation360 *Automation360Service
}
// NewClient creates new Client to interract with SendpulseAPI
func NewClient(client *http.Client, config *Config) *Client {
if config.Rps == 0 {
config.Rps = 10
}
cl := &Client{
client: client,
config: config,
token: "",
tokenLock: new(sync.RWMutex),
}
cl.Emails = newEmailsService(cl)
cl.Balance = newBalanceService(cl)
cl.SMTP = newSmtpService(cl)
cl.Push = newPushService(cl)
cl.SMS = newSmsService(cl)
cl.Viber = newViberService(cl)
cl.VkOk = newVkOkService(cl)
cl.Bots = newBotsService(cl)
cl.Automation360 = newAutomation360Service(cl)
cl.rateLimiter = rate.NewLimiter(rate.Limit(config.Rps), config.Rps)
return cl
}
// getToken returns new token to interact with Sendpulse or returns it from stored value if it already exists
func (c *Client) getToken(ctx context.Context) (string, error) {
c.tokenLock.RLock()
token := c.token
c.tokenLock.RUnlock()
if token != "" {
return token, nil
}
data := make(map[string]interface{})
data["grant_type"] = "client_credentials"
data["client_id"] = c.config.UserID
data["client_secret"] = c.config.Secret
path := "/oauth/access_token"
var respData struct {
AccessToken string `json:"access_token"`
}
_, err := c.newRequest(ctx, http.MethodPost, path, data, &respData, false)
if err != nil {
return "", err
}
c.tokenLock.Lock()
c.token = respData.AccessToken
token = respData.AccessToken
c.tokenLock.Unlock()
return token, nil
}
// clearToken removes stored token
func (c *Client) clearToken() {
c.tokenLock.Lock()
c.token = ""
c.tokenLock.Unlock()
}
// newRequest makes new http request to SendPulse
func (c *Client) newRequest(ctx context.Context, method string, path string, body interface{}, result interface{}, useToken bool) (*http.Response, error) {
if err := c.rateLimiter.Wait(ctx); err != nil {
return nil, err
}
fullPath := apiBaseUrl + path
var buf io.ReadWriter
if body != nil {
buf = &bytes.Buffer{}
enc := json.NewEncoder(buf)
enc.SetEscapeHTML(false)
if err := enc.Encode(body); err != nil {
return nil, err
}
}
req, e := http.NewRequest(method, fullPath, buf)
if e != nil {
return nil, e
}
if body != nil {
req.Header.Set("Content-Type", "application/json")
}
if useToken {
token, err := c.getToken(ctx)
if err != nil {
return nil, err
}
req.Header.Add("Authorization", fmt.Sprintf("Bearer %s", token))
}
resp, err := c.client.Do(req)
if err != nil {
return nil, &SendpulseError{http.StatusServiceUnavailable, path, "", err.Error()}
}
defer resp.Body.Close()
if resp.StatusCode == http.StatusUnauthorized && useToken {
c.clearToken()
respData, err := c.newRequest(ctx, method, path, body, result, useToken)
if err != nil {
return nil, err
}
return respData, nil
}
respBody, err := ioutil.ReadAll(resp.Body)
if err != nil {
return nil, &SendpulseError{resp.StatusCode, path, string(respBody), err.Error()}
}
if resp.StatusCode != http.StatusOK {
return nil, &SendpulseError{resp.StatusCode, path, string(respBody), ""}
}
if err := json.Unmarshal(respBody, &result); err != nil {
return nil, &SendpulseError{resp.StatusCode, path, string(respBody), err.Error()}
}
return resp, nil
}
// newFormDataRequest makes new http request to SendPulse with form-data
func (c *Client) newFormDataRequest(ctx context.Context, path string, buffer *bytes.Buffer, contentType string, result interface{}, useToken bool) (*http.Response, error) {
fullPath := apiBaseUrl + path
req, e := http.NewRequest(http.MethodPost, fullPath, buffer)
if e != nil {
return nil, e
}
req.Header.Set("Content-Type", contentType)
if useToken {
token, err := c.getToken(ctx)
if err != nil {
return nil, err
}
req.Header.Add("Authorization", fmt.Sprintf("Bearer %s", token))
}
resp, err := c.client.Do(req)
if err != nil {
return nil, &SendpulseError{http.StatusServiceUnavailable, path, "", err.Error()}
}
defer resp.Body.Close()
if resp.StatusCode == http.StatusUnauthorized && useToken {
c.clearToken()
respData, err := c.newFormDataRequest(ctx, path, buffer, contentType, result, useToken)
if err != nil {
return nil, err
}
return respData, nil
}
respBody, err := ioutil.ReadAll(resp.Body)
if err != nil {
return nil, &SendpulseError{resp.StatusCode, path, string(respBody), err.Error()}
}
if resp.StatusCode != http.StatusOK && resp.StatusCode != http.StatusCreated {
return nil, &SendpulseError{resp.StatusCode, path, string(respBody), ""}
}
if err := json.Unmarshal(respBody, &result); err != nil {
return nil, &SendpulseError{resp.StatusCode, path, string(respBody), err.Error()}
}
return resp, nil
}