-
Notifications
You must be signed in to change notification settings - Fork 40
/
transmissions.go
387 lines (332 loc) · 10.8 KB
/
transmissions.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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
package gosparkpost
import (
"context"
"encoding/json"
"fmt"
"net/url"
"strings"
"time"
)
// TransmissionsPathFormat https://www.sparkpost.com/api#/reference/transmissions
var TransmissionsPathFormat = "/api/v%d/transmissions"
// Transmission is the JSON structure accepted by and returned from the SparkPost Transmissions API.
type Transmission struct {
ID string `json:"id,omitempty"`
State string `json:"state,omitempty"`
Options *TxOptions `json:"options,omitempty"`
Recipients interface{} `json:"recipients"`
CampaignID string `json:"campaign_id,omitempty"`
Description string `json:"description,omitempty"`
Metadata interface{} `json:"metadata,omitempty"`
SubstitutionData interface{} `json:"substitution_data,omitempty"`
ReturnPath string `json:"return_path,omitempty"`
Content interface{} `json:"content"`
TotalRecipients *int `json:"total_recipients,omitempty"`
NumGenerated *int `json:"num_generated,omitempty"`
NumFailedGeneration *int `json:"num_failed_generation,omitempty"`
NumInvalidRecipients *int `json:"num_invalid_recipients,omitempty"`
}
// RFC3339 formats time.Time values as expected by the SparkPost API
type RFC3339 time.Time
// MarshalJSON applies RFC3339 formatting
func (r *RFC3339) MarshalJSON() ([]byte, error) {
if r == nil {
return json.Marshal(nil)
}
return json.Marshal(time.Time(*r).Format(time.RFC3339))
}
// TxOptions specifies settings to apply to this Transmission.
// If not specified, and present in TmplOptions, those values will be used.
type TxOptions struct {
TmplOptions
StartTime *RFC3339 `json:"start_time,omitempty"`
Sandbox *bool `json:"sandbox,omitempty"`
SkipSuppression *bool `json:"skip_suppression,omitempty"`
IPPool string `json:"ip_pool,omitempty"`
InlineCSS *bool `json:"inline_css,omitempty"`
PerformSubstitutions *bool `json:"perform_substitutions,omitempty"`
}
// ParseRecipients asserts that Transmission.Recipients is valid.
func ParseRecipients(recips interface{}) (ra *[]Recipient, err error) {
switch rVal := recips.(type) {
case map[string]interface{}:
for k, v := range rVal {
switch vVal := v.(type) {
case string:
if strings.EqualFold(k, "list_id") {
return
}
default:
err = fmt.Errorf("Transmission.Recipient objects must contain string values, not [%T]", vVal)
return
}
}
err = fmt.Errorf("Transmission.Recipient objects must contain a key `list_id`")
return
case map[string]string:
for k := range rVal {
if strings.EqualFold(k, "list_id") {
return
}
}
err = fmt.Errorf("Transmission.Recipient objects must contain a key `list_id`")
return
case []string:
raObj := make([]Recipient, len(rVal))
for i, r := range rVal {
// Make a full Recipient object from each string
raObj[i] = Recipient{Address: map[string]string{"email": r}}
}
ra := &raObj
return ra, nil
case []interface{}:
for _, v := range rVal {
switch r := v.(type) {
case Recipient:
err = r.Validate()
if err != nil {
return
}
default:
err = fmt.Errorf("Failed to parse inline Transmission.Recipient list")
return
}
}
case []Recipient:
for _, v := range rVal {
err = v.Validate()
if err != nil {
return
}
}
default:
err = fmt.Errorf("Unsupported Transmission.Recipient type [%T]", rVal)
return
}
return
}
// ParseContent asserts that Transmission.Content is valid.
func ParseContent(content interface{}) (err error) {
switch rVal := content.(type) {
case map[string]interface{}:
for k, v := range rVal {
switch vVal := v.(type) {
case string:
if strings.EqualFold(k, "template_id") {
return nil
}
default:
return fmt.Errorf("Transmission.Content objects must contain string values, not [%T]", vVal)
}
}
return fmt.Errorf("Transmission.Content objects must contain a key `template_id`")
case map[string]string:
for k := range rVal {
if strings.EqualFold(k, "template_id") {
return nil
}
}
return fmt.Errorf("Transmission.Content objects must contain a key `template_id`")
case Content:
te := &Template{Name: "tmp", Content: rVal}
return te.Validate()
default:
return fmt.Errorf("Unsupported Transmission.Content type [%T]", rVal)
}
}
// Validate runs sanity checks of a Transmission struct.
// This should catch most errors before attempting a doomed API call.
func (t *Transmission) Validate() error {
if t == nil {
return fmt.Errorf("Can't Validate a nil Transmission")
}
// enforce required parameters
if t.Recipients == nil {
return fmt.Errorf("Transmission requires Recipients")
} else if t.Content == nil {
return fmt.Errorf("Transmission requires Content")
}
// enforce max lengths
if len(t.CampaignID) > 64 {
return fmt.Errorf("Campaign id may not be longer than 64 bytes")
} else if len(t.Description) > 1024 {
return fmt.Errorf("Transmission description may not be longer than 1024 bytes")
}
// validate members from other packages
recips, err := ParseRecipients(t.Recipients)
if err != nil {
return err
}
// Use the updated Recipients object optionally returned from ParseRecipients
if recips != nil {
t.Recipients = *recips
}
err = ParseContent(t.Content)
if err != nil {
return err
}
return nil
}
// Send accepts a populated Transmission object, performs basic sanity
// checks on it, and performs an API call against the configured endpoint.
// Calling this function can cause email to be sent, if used correctly.
func (c *Client) Send(t *Transmission) (id string, res *Response, err error) {
return c.SendContext(context.Background(), t)
}
// SendContext does the same thing as Send, and in addition it accepts a context from the caller.
func (c *Client) SendContext(ctx context.Context, t *Transmission) (id string, res *Response, err error) {
if t == nil {
err = fmt.Errorf("Create called with nil Transmission")
return
}
err = t.Validate()
if err != nil {
return
}
jsonBytes, err := json.Marshal(t)
if err != nil {
return
}
path := fmt.Sprintf(TransmissionsPathFormat, c.Config.ApiVersion)
u := fmt.Sprintf("%s%s", c.Config.BaseUrl, path)
res, err = c.HttpPost(ctx, u, jsonBytes)
if err != nil {
return
}
if _, err = res.AssertJson(); err != nil {
return
}
err = res.ParseResponse()
if err != nil {
return
}
if Is2XX(res.HTTP.StatusCode) {
var ok bool
var results map[string]interface{}
if results, ok = res.Results.(map[string]interface{}); !ok {
err = fmt.Errorf("Unexpected response to Transmission creation (results)")
} else if id, ok = results["id"].(string); !ok {
err = fmt.Errorf("Unexpected response to Transmission creation (id)")
}
} else {
err = res.HTTPError()
}
return
}
// Transmission accepts a Transmission, looks up the record using its ID, and fills out the provided object.
func (c *Client) Transmission(t *Transmission) (*Response, error) {
return c.TransmissionContext(context.Background(), t)
}
// TransmissionContext is the same as Transmission, and it allows the caller to pass in a context.
func (c *Client) TransmissionContext(ctx context.Context, t *Transmission) (*Response, error) {
if nonDigit.MatchString(t.ID) {
return nil, fmt.Errorf("id may only contain digits")
}
path := fmt.Sprintf(TransmissionsPathFormat, c.Config.ApiVersion)
u := fmt.Sprintf("%s%s/%s", c.Config.BaseUrl, path, t.ID)
res, err := c.HttpGet(ctx, u)
if err != nil {
return nil, err
}
var body []byte
if body, err = res.AssertJson(); err != nil {
return res, err
}
if Is2XX(res.HTTP.StatusCode) {
// Unwrap the returned Transmission
tmp := map[string]map[string]json.RawMessage{}
if err = json.Unmarshal(body, &tmp); err != nil {
} else if results, ok := tmp["results"]; ok {
if raw, ok := results["transmission"]; ok {
err = json.Unmarshal(raw, t)
} else {
err = fmt.Errorf("Unexpected response to Transmission (transmission)")
}
} else {
err = fmt.Errorf("Unexpected response to Transmission (results)")
}
} else {
err = res.ParseResponse()
if err == nil {
err = res.HTTPError()
}
}
return res, err
}
// TransmissionDelete attempts to remove the Transmission with the specified id.
// Only Transmissions which are scheduled for future generation may be deleted.
func (c *Client) TransmissionDelete(t *Transmission) (*Response, error) {
return c.TransmissionDeleteContext(context.Background(), t)
}
// TransmissionDeleteContext is the same as TransmissionDelete, and it allows the caller to provide a context.
func (c *Client) TransmissionDeleteContext(ctx context.Context, t *Transmission) (*Response, error) {
if t == nil {
return nil, nil
}
if t.ID == "" {
return nil, fmt.Errorf("Delete called with blank id")
}
if nonDigit.MatchString(t.ID) {
return nil, fmt.Errorf("Transmissions.Delete: id may only contain digits")
}
path := fmt.Sprintf(TransmissionsPathFormat, c.Config.ApiVersion)
u := fmt.Sprintf("%s%s/%s", c.Config.BaseUrl, path, t.ID)
res, err := c.HttpDelete(ctx, u)
if err != nil {
return nil, err
}
if _, err = res.AssertJson(); err != nil {
return res, err
}
if err = res.ParseResponse(); err != nil {
return res, err
}
return res, res.HTTPError()
}
// Transmissions returns Transmission summary information for matching Transmissions.
// Filtering by CampaignID (t.CampaignID) and TemplateID (t.ID) is supported.
func (c *Client) Transmissions(t *Transmission) ([]Transmission, *Response, error) {
return c.TransmissionsContext(context.Background(), t)
}
// TransmissionsContext is the same as Transmissions, and it allows the caller to provide a context.
func (c *Client) TransmissionsContext(ctx context.Context, t *Transmission) ([]Transmission, *Response, error) {
// If a query parameter is present and empty, that searches for blank IDs, as opposed
// to when it is omitted entirely, which returns everything.
qp := make([]string, 0, 2)
if t.CampaignID != "" {
qp = append(qp, fmt.Sprintf("campaign_id=%s", url.QueryEscape(t.CampaignID)))
}
if t.ID != "" {
qp = append(qp, fmt.Sprintf("template_id=%s", url.QueryEscape(t.ID)))
}
qstr := ""
if len(qp) > 0 {
qstr = strings.Join(qp, "&")
}
path := fmt.Sprintf(TransmissionsPathFormat, c.Config.ApiVersion)
// FIXME: redo this using net/url
u := fmt.Sprintf("%s%s?%s", c.Config.BaseUrl, path, qstr)
res, err := c.HttpGet(ctx, u)
if err != nil {
return nil, nil, err
}
var body []byte
if body, err = res.AssertJson(); err != nil {
return nil, res, err
}
if Is2XX(res.HTTP.StatusCode) {
tlist := map[string][]Transmission{}
if err = json.Unmarshal(body, &tlist); err != nil {
} else if list, ok := tlist["results"]; ok {
return list, res, nil
} else {
err = fmt.Errorf("Unexpected response to Transmission list (results)")
}
} else {
err = res.ParseResponse()
if err == nil {
err = res.HTTPError()
}
}
return nil, res, err
}