-
Notifications
You must be signed in to change notification settings - Fork 61
/
bounce.go
192 lines (165 loc) · 4.99 KB
/
bounce.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
package postmark
import (
"encoding/json"
"fmt"
"net/url"
"time"
)
///////////////////////////////////////
///////////////////////////////////////
// BounceType represents a type of bounce, and how many bounces have occurred
// http://developer.postmarkapp.com/developer-api-bounce.html#bounce-types
type BounceType struct {
// Type: bounce type identifier
Type string
// Name: full name of the bounce type
Name string
// Count: how many bounces have occurred
Count int64
}
// DeliveryStats represents bounce stats
type DeliveryStats struct {
// InactiveMails: Number of inactive emails
InactiveMails int64
// Bounces: List of bounce types with total counts.
Bounces []BounceType
}
// GetDeliveryStats returns delivery stats for the server
func (client *Client) GetDeliveryStats() (DeliveryStats, error) {
res := DeliveryStats{}
path := "deliverystats"
err := client.doRequest(parameters{
Method: "GET",
Path: path,
TokenType: server_token,
}, &res)
return res, err
}
///////////////////////////////////////
///////////////////////////////////////
// Bounce represents a specific delivery failure
type Bounce struct {
// ID: ID of bounce
ID int64
// Type: Bounce type
Type string
// TypeCode: Bounce type code
TypeCode int64
// Name: Bounce type name
Name string
// Tag: Tag name
Tag string
// MessageID: ID of message
MessageID string
// Description: Description of bounce
Description string
// Details: Details on the bounce
Details string
// Email: Email address that bounced
Email string
// BouncedAt: Timestamp of bounce
BouncedAt time.Time
// DumpAvailable: Specifies whether or not you can get a raw dump from this bounce. Postmark does not store bounce dumps older than 30 days.
DumpAvailable bool
// Inactive: Specifies if the bounce caused Postmark to deactivate this email.
Inactive bool
// CanActivate: Specifies whether or not you are able to reactivate this email.
CanActivate bool
// Subject: Email subject
Subject string
}
type bouncesResponse struct {
TotalCount int64
Bounces []Bounce
}
// GetBounces returns bounces for the server
// It returns a Bounce slice, the total bounce count, and any error that occurred
// Available options: http://developer.postmarkapp.com/developer-api-bounce.html#bounces
func (client *Client) GetBounces(count int64, offset int64, options map[string]interface{}) ([]Bounce, int64, error) {
res := bouncesResponse{}
values := &url.Values{}
values.Add("count", fmt.Sprintf("%d", count))
values.Add("offset", fmt.Sprintf("%d", offset))
for k, v := range options {
values.Add(k, fmt.Sprintf("%v", v))
}
path := fmt.Sprintf("bounces?%s", values.Encode())
err := client.doRequest(parameters{
Method: "GET",
Path: path,
TokenType: server_token,
}, &res)
return res.Bounces, res.TotalCount, err
}
///////////////////////////////////////
///////////////////////////////////////
// GetBounce fetches a single bounce with bounceID
func (client *Client) GetBounce(bounceID int64) (Bounce, error) {
res := Bounce{}
path := fmt.Sprintf("bounces/%v", bounceID)
err := client.doRequest(parameters{
Method: "GET",
Path: path,
TokenType: server_token,
}, &res)
return res, err
}
///////////////////////////////////////
///////////////////////////////////////
type dumpResponse struct {
Body string
}
// GetBounceDump fetches a SMTP data dump for a single bounce
func (client *Client) GetBounceDump(bounceID int64) (string, error) {
res := dumpResponse{}
path := fmt.Sprintf("bounces/%v/dump", bounceID)
err := client.doRequest(parameters{
Method: "GET",
Path: path,
TokenType: server_token,
}, &res)
return res.Body, err
}
///////////////////////////////////////
///////////////////////////////////////
type activateBounceResponse struct {
Message string
Bounce Bounce
}
// ActivateBounce reactivates a bounce for resending. Returns the bounce, a
// message, and any error that occurs
// TODO: clarify this with Postmark
func (client *Client) ActivateBounce(bounceID int64) (Bounce, string, error) {
res := activateBounceResponse{}
path := fmt.Sprintf("bounces/%v/activate", bounceID)
err := client.doRequest(parameters{
Method: "PUT",
Path: path,
TokenType: server_token,
}, &res)
return res.Bounce, res.Message, err
}
///////////////////////////////////////
///////////////////////////////////////
type bouncedTagsResponse struct {
Tags []string `json:"tags"`
}
// GetBouncedTags retrieves a list of tags that have generated bounced emails
func (client *Client) GetBouncedTags() ([]string, error) {
var raw json.RawMessage
path := "bounces/tags"
err := client.doRequest(parameters{
Method: "GET",
Path: path,
TokenType: server_token,
}, &raw)
if err != nil {
return []string{}, err
}
// PM returns this payload in an impossible to unmarshal way
// ["tag1","tag2","tag3"]. So let's rejigger it to make it possible.
jsonString := fmt.Sprintf(`{"tags": %s}`, string(raw))
res := bouncedTagsResponse{}
err = json.Unmarshal([]byte(jsonString), &res)
return res.Tags, err
}