-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsns.go
426 lines (353 loc) · 9.68 KB
/
sns.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
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
//
// goamz - Go packages to interact with the Amazon Web Services.
//
// https://wiki.ubuntu.com/goamz
//
// Copyright (c) 2011 Memeo Inc.
//
// Written by Prudhvi Krishna Surapaneni <[email protected]>
//
package sns
import (
"launchpad.net/goamz/aws"
"os"
"http"
"time"
"url"
"xml"
"strconv"
)
// The SNS type encapsulates operation with an SNS region.
type SNS struct {
aws.Auth
aws.Region
private byte // Reserve the right of using private data.
}
type Topic struct {
*SNS
TopicArn string
}
func New(auth aws.Auth, region aws.Region) *SNS {
return &SNS{auth, region, 0}
}
type Message struct {
*SNS
*Topic
Message []byte
Subject string
}
type Subscription struct {
Endpoint string
Owner string
Protocol string
SubscriptionArn string
TopicArn string
}
func (topic *Topic) Message(message []byte, subject string) *Message {
return &Message{topic.SNS, topic, message, subject}
}
type ResponseMetadata struct {
RequestId string
BoxUsage float64
}
type ListTopicsResponse struct {
Topics []Topic `xml:"ListTopicsResult>Topics>member"`
NextToken string
ResponseMetadata
}
type CreateTopicResponse struct {
Topic Topic `xml:"CreateTopicResult>"`
ResponseMetadata
}
type DeleteTopicResponse struct {
ResponseMetadata
}
type ListSubscriptionsResponse struct {
Subscriptions []Subscription `xml:"ListSubscriptionsResult>Subscriptions>member"`
NextToken string
ResponseMetadata
}
type AttributeEntry struct {
Key, Value string
}
type GetTopicAttributesResponse struct {
Attributes []AttributeEntry `xml:"GetTopicAttributesResult>Attributes>entry"`
ResponseMetadata
}
func makeParams(action string) map[string]string {
params := make(map[string]string)
params["Action"] = action
return params
}
// ListTopics
//
// See http://goo.gl/lfrMK for more details.
func (sns *SNS) ListTopics(NextToken *string) (resp *ListTopicsResponse, err os.Error) {
resp = &ListTopicsResponse{}
params := makeParams("ListTopics")
if NextToken != nil {
params["NextToken"] = *NextToken
}
err = sns.query(nil, nil, params, resp)
return
}
// CreateTopic
//
// See http://goo.gl/m9aAt for more details.
func (sns *SNS) CreateTopic(Name string) (resp *CreateTopicResponse, err os.Error) {
resp = &CreateTopicResponse{}
params := makeParams("CreateTopic")
params["Name"] = Name
err = sns.query(nil, nil, params, resp)
return
}
// DeleteTopic
//
// See http://goo.gl/OXNcY for more details.
func (sns *SNS) DeleteTopic(topic Topic) (resp *DeleteTopicResponse, err os.Error) {
resp = &DeleteTopicResponse{}
params := makeParams("DeleteTopic")
params["TopicArn"] = topic.TopicArn
err = sns.query(nil, nil, params, resp)
return
}
// Delete
//
// Helper function for deleting a topic
func (topic *Topic) Delete() (resp *DeleteTopicResponse, err os.Error) {
return topic.SNS.DeleteTopic(*topic)
}
// ListSubscriptions
//
// See http://goo.gl/k3aGn for more details.
func (sns *SNS) ListSubscriptions(NextToken *string) (resp *ListSubscriptionsResponse, err os.Error) {
resp = &ListSubscriptionsResponse{}
params := makeParams("ListSubscriptions")
if NextToken != nil {
params["NextToken"] = *NextToken
}
err = sns.query(nil, nil, params, resp)
return
}
// GetTopicAttributes
//
// See http://goo.gl/WXRoX for more details.
func (sns *SNS) GetTopicAttributes(TopicArn string) (resp *GetTopicAttributesResponse, err os.Error) {
resp = &GetTopicAttributesResponse{}
params := makeParams("GetTopicAttributes")
params["TopicArn"] = TopicArn
err = sns.query(nil, nil, params, resp)
return
}
type PublishResponse struct {
MessageId string `xml:"PublishResult>MessageId"`
ResponseMetadata
}
// Publish
//
// See http://goo.gl/AY2D8 for more details.
func (sns *SNS) Publish(message []byte, topic string) (resp *PublishResponse, err os.Error) {
resp, err = sns.PublishStructure(message, topic, "", "")
return
}
func (sns *SNS) PublishSubject(message []byte, topic, subject string) (resp *PublishResponse, err os.Error) {
resp, err = sns.PublishStructure(message, topic, subject, "")
return
}
func (sns *SNS) PublishStructure(message []byte, topic, subject, structure string) (resp *PublishResponse, err os.Error) {
resp = &PublishResponse{}
params := makeParams("Publish")
params["Message"] = string(message)
params["TopicArn"] = topic
if subject != "" {
params["Subject"] = subject
}
if structure != "" {
params["MessageStructure"] = structure
}
err = sns.query(nil, nil, params, resp)
return
}
type SetTopicAttributesResponse struct {
ResponseMetadata
}
// SetTopicAttributes
//
// See http://goo.gl/oVYW7 for more details.
func (sns *SNS) SetTopicAttributes(AttributeName, AttributeValue, TopicArn string) (resp *SetTopicAttributesResponse, err os.Error) {
resp = &SetTopicAttributesResponse{}
params := makeParams("SetTopicAttributes")
if AttributeName == "" || TopicArn == "" {
return nil, os.NewError("Invalid Attribute Name or TopicArn")
}
params["AttributeName"] = AttributeName
params["AttributeValue"] = AttributeValue
params["TopicArn"] = TopicArn
err = sns.query(nil, nil, params, resp)
return
}
type SubscribeResponse struct {
SubscriptionArn string `xml:"SubscribeResult>SubscriptionArn"`
ResponseMetadata
}
// Subscribe
//
// See http://goo.gl/c3iGS for more details.
func (sns *SNS) Subscribe(Endpoint, Protocol, TopicArn string) (resp *SubscribeResponse, err os.Error) {
resp = &SubscribeResponse{}
params := makeParams("Subscribe")
params["Endpoint"] = Endpoint
params["Protocol"] = Protocol
params["TopicArn"] = TopicArn
err = sns.query(nil, nil, params, resp)
return
}
type UnsubscribeResponse struct {
ResponseMetadata
}
// Unsubscribe
//
// See http://goo.gl/4l5Ge for more details.
func (sns *SNS) Unsubscribe(SubscriptionArn string) (resp *UnsubscribeResponse, err os.Error) {
resp = &UnsubscribeResponse{}
params := makeParams("Unsubscribe")
params["SubscriptionArn"] = SubscriptionArn
err = sns.query(nil, nil, params, resp)
return
}
type ConfirmSubscriptionResponse struct {
SubscriptionArn string `xml:"ConfirmSubscriptionResult>SubscriptionArn"`
ResponseMetadata
}
type ConfirmSubscriptionOpt struct {
AuthenticateOnUnsubscribe string
Token string
TopicArn string
}
// ConfirmSubscription
//
// See http://goo.gl/3hXzH for more details.
func (sns *SNS) ConfirmSubscription(options *ConfirmSubscriptionOpt) (resp *ConfirmSubscriptionResponse, err os.Error) {
resp = &ConfirmSubscriptionResponse{}
params := makeParams("ConfirmSubscription")
if options.AuthenticateOnUnsubscribe != "" {
params["AuthenticateOnUnsubscribe"] = options.AuthenticateOnUnsubscribe
}
params["Token"] = options.Token
params["TopicArn"] = options.TopicArn
err = sns.query(nil, nil, params, resp)
return
}
type Permission struct {
ActionName string
AccountId string
}
type AddPermissionResponse struct {
ResponseMetadata
}
// AddPermission
//
// See http://goo.gl/mbY4a for more details.
func (sns *SNS) AddPermission(permissions []Permission, Label, TopicArn string) (resp *AddPermissionResponse, err os.Error) {
resp = &AddPermissionResponse{}
params := makeParams("AddPermission")
for i, p := range permissions {
params["AWSAccountId.member."+strconv.Itoa(i+1)] = p.AccountId
params["ActionName.member."+strconv.Itoa(i+1)] = p.ActionName
}
params["Label"] = Label
params["TopicArn"] = TopicArn
err = sns.query(nil, nil, params, resp)
return
}
type RemovePermissionResponse struct {
ResponseMetadata
}
// RemovePermission
//
// See http://goo.gl/wGl5j for more details.
func (sns *SNS) RemovePermission(Label, TopicArn string) (resp *RemovePermissionResponse, err os.Error) {
resp = &RemovePermissionResponse{}
params := makeParams("RemovePermission")
params["Label"] = Label
params["TopicArn"] = TopicArn
err = sns.query(nil, nil, params, resp)
return
}
type ListSubscriptionByTopicResponse struct {
Subscriptions []Subscription `xml:"ListSubscriptionsByTopicResult>Subscriptions>member"`
ResponseMetadata
}
type ListSubscriptionByTopicOpt struct {
NextToken string
TopicArn string
}
// ListSubscriptionByTopic
//
// See http://goo.gl/LaVcC for more details.
func (sns *SNS) ListSubscriptionByTopic(options *ListSubscriptionByTopicOpt) (resp *ListSubscriptionByTopicResponse, err os.Error) {
resp = &ListSubscriptionByTopicResponse{}
params := makeParams("ListSbubscriptionByTopic")
if options.NextToken != "" {
params["NextToken"] = options.NextToken
}
params["TopicArn"] = options.TopicArn
err = sns.query(nil, nil, params, resp)
return
}
type Error struct {
StatusCode int
Code string
Message string
RequestId string
}
func (err *Error) String() string {
return err.Message
}
type xmlErrors struct {
RequestId string
Errors []Error `xml:"Errors>Error"`
}
func (sns *SNS) query(topic *Topic, message *Message, params map[string]string, resp interface{}) os.Error {
params["Timestamp"] = time.UTC().Format(time.RFC3339)
url_, err := url.Parse(sns.Region.SNSEndpoint)
if err != nil {
return err
}
sign(sns.Auth, "GET", "/", params, url_.Host)
url_.RawQuery = multimap(params).Encode()
r, err := http.Get(url_.String())
if err != nil {
return err
}
defer r.Body.Close()
//dump, _ := http.DumpResponse(r, true)
//println("DUMP:\n", string(dump))
//return nil
if r.StatusCode != 200 {
return buildError(r)
}
err = xml.Unmarshal(r.Body, resp)
return err
}
func buildError(r *http.Response) os.Error {
errors := xmlErrors{}
xml.Unmarshal(r.Body, &errors)
var err Error
if len(errors.Errors) > 0 {
err = errors.Errors[0]
}
err.RequestId = errors.RequestId
err.StatusCode = r.StatusCode
if err.Message == "" {
err.Message = r.Status
}
return &err
}
func multimap(p map[string]string) url.Values {
q := make(url.Values, len(p))
for k, v := range p {
q[k] = []string{v}
}
return q
}