forked from NaySoftware/go-fcm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fcm.go
395 lines (288 loc) · 8.7 KB
/
fcm.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
package fcm
import (
"bytes"
"encoding/json"
"errors"
"fmt"
"io/ioutil"
"net/http"
// "strings"
"github.com/jpillora/backoff"
// "strconv"
"time"
)
const (
fcm_server_url = "https://fcm.googleapis.com/fcm/send"
MAX_TTL = 2419200
Priority_HIGH = "high"
Priority_NORMAL = "normal"
retry_after_header = "Retry-After"
error_key = "error"
)
var (
minBackoff = 1 * time.Second
maxBackoff = 10 * time.Second
retreyableErrors = map[string]bool{
"Unavailable": true,
"InternalServerError": true,
}
// for testing purposes
fcmServerUrl = fcm_server_url
)
type FcmClient struct {
ApiKey string
Message FcmMsg
}
type FcmMsg struct {
Data map[string]string `json:"data,omitempty"`
To string `json:"to,omitempty"`
RegistrationIds []string `json:"registration_ids,omitempty"`
CollapseKey string `json:"collapse_key,omitempty"`
Priority string `json:"priority,omitempty"`
Notification NotificationPayload `json:"notification,omitempty"`
ContentAvailable bool `json:"content_available,omitempty"`
DelayWhileIdle bool `json:"delay_while_idle,omitempty"`
TimeToLive int `json:"time_to_live,omitempty"`
RestrictedPackageName string `json:"restricted_package_name,omitempty"`
DryRun bool `json:"dry_run,omitempty"`
Condition string `json:"condition,omitempty"`
}
type FcmResponseStatus struct {
Ok bool
StatusCode int
MulticastId int `json:"multicast_id"`
Success int `json:"success"`
Fail int `json:"failure"`
Canonical_ids int `json:"canonical_ids"`
Results []map[string]string `json:"results,omitempty"`
MsgId int `json:"message_id,omitempty"`
Err string `json:"error,omitempty"`
RetryAfter string
}
type NotificationPayload struct {
Title string `json:"title,omitempty"`
Body string `json:"body,omitempty"`
Icon string `json:"icon,omitempty"`
Sound string `json:"sound,omitempty"`
Badge string `json:"badge,omitempty"`
Tag string `json:"tag,omitempty"`
Color string `json:"color,omitempty"`
ClickAction string `json:"click_action,omitempty"`
BodyLocKey string `json:"body_loc_key,omitempty"`
BodyLocArgs string `json:"body_loc_args,omitempty"`
TitleLocKey string `json:"title_loc_key,omitempty"`
TitleLocArgs string `json:"title_loc_args,omitempty"`
}
func NewFcmClient(apiKey string) *FcmClient {
fcmc := new(FcmClient)
fcmc.ApiKey = apiKey
return fcmc
}
func (this *FcmClient) NewFcmTopicMsg(to string, body map[string]string) *FcmClient {
this.NewFcmMsgTo(to, body)
return this
}
func (this *FcmClient) NewFcmMsgTo(to string, body map[string]string) *FcmClient {
this.Message.To = to
this.Message.Data = body
return this
}
func (this *FcmClient) SetMsgData(body map[string]string) *FcmClient {
this.Message.Data = body
return this
}
func (this *FcmClient) NewFcmRegIdsMsg(list []string, body map[string]string) *FcmClient {
this.newDevicesList(list)
this.Message.Data = body
return this
}
func (this *FcmClient) newDevicesList(list []string) *FcmClient {
this.Message.RegistrationIds = make([]string, len(list))
copy(this.Message.RegistrationIds, list)
return this
}
func (this *FcmClient) AppendDevices(list []string) *FcmClient {
this.Message.RegistrationIds = append(this.Message.RegistrationIds, list...)
return this
}
func (this *FcmClient) apiKeyHeader() string {
return fmt.Sprintf("key=%v", this.ApiKey)
}
func (this *FcmClient) sendOnce() (*FcmResponseStatus, error) {
fcmRespStatus := new(FcmResponseStatus)
jsonByte, err := this.Message.toJsonByte()
if err != nil {
fcmRespStatus.Ok = false
return fcmRespStatus, err
}
// fmt.Println(string(jsonByte))
request, err := http.NewRequest("POST", fcmServerUrl, bytes.NewBuffer(jsonByte))
request.Header.Set("Authorization", this.apiKeyHeader())
request.Header.Set("Content-Type", "application/json")
client := &http.Client{}
response, err := client.Do(request)
if err != nil {
fcmRespStatus.Ok = false
return fcmRespStatus, err
}
defer response.Body.Close()
body, err := ioutil.ReadAll(response.Body)
fcmRespStatus.StatusCode = response.StatusCode
fcmRespStatus.RetryAfter = response.Header.Get(retry_after_header)
if response.StatusCode == 200 && err == nil {
fcmRespStatus.Ok = true
// fmt.Println(response.Status)
eror := fcmRespStatus.parseStatusBody(body)
if eror != nil {
return fcmRespStatus, eror
}
return fcmRespStatus, nil
} else {
fcmRespStatus.Ok = false
eror := fcmRespStatus.parseStatusBody(body)
if eror != nil {
return fcmRespStatus, eror
}
return fcmRespStatus, err
}
return fcmRespStatus, nil
}
func (this *FcmClient) retrySend(retries int) (*FcmResponseStatus, error) {
if retries < 0 {
return nil, errors.New("Retries is a Positive integer")
}
backOffHand := newBackoffHandler()
fcmResp := new(FcmResponseStatus)
for i := 0; i < retries; i++ {
fcmResp, err := this.sendOnce()
// fmt.Println("===========v=debug=v===============")
// fcmResp.PrintResults()
// fmt.Println("===========^=debug=^===============")
//
if err != nil {
fmt.Println("error not nil")
break
} else if fcmResp.isTimeout() {
// retry
fmt.Println("TimeOut")
// get retry after header
// if not found
// get a backoff time
// -- sleep
if sleepTime, err := time.ParseDuration(fcmResp.RetryAfter); err != nil && sleepTime > 0 {
time.Sleep(sleepTime)
} else {
time.Sleep(backOffHand.Duration())
}
// regenerate "TO" for the faild requestes
// resend
// next loop
} else {
fcmResp.Ok = true
return fcmResp, nil
}
}
fcmResp.Ok = false
return fcmResp, errors.New("Can't Send Messages")
}
func (this *FcmClient) Send(retries int) (*FcmResponseStatus, error) {
return this.retrySend(retries)
}
func (this *FcmMsg) toJsonByte() ([]byte, error) {
return json.Marshal(this)
}
func (this *FcmResponseStatus) parseStatusBody(body []byte) error {
if err := json.Unmarshal([]byte(body), &this); err != nil {
return err
}
return nil
}
func (this *FcmClient) SetPriorety(p string) {
if p == Priority_HIGH {
this.Message.Priority = Priority_HIGH
} else {
this.Message.Priority = Priority_NORMAL
}
}
func (this *FcmClient) SetCollapseKey(val string) *FcmClient {
this.Message.CollapseKey = val
return this
}
func (this *FcmClient) SetNotificationPayload(payload *NotificationPayload) *FcmClient {
this.Message.Notification = *payload
return this
}
func (this *FcmClient) SetContentAvailable(isContentAvailable bool) *FcmClient {
this.Message.ContentAvailable = isContentAvailable
return this
}
func (this *FcmClient) SetDelayWhileIdle(isDelayWhileIdle bool) *FcmClient {
this.Message.DelayWhileIdle = isDelayWhileIdle
return this
}
func (this *FcmClient) SetTimeToLive(ttl int) *FcmClient {
if ttl > MAX_TTL {
this.Message.TimeToLive = MAX_TTL
} else {
this.Message.TimeToLive = ttl
}
return this
}
func (this *FcmClient) SetRestrictedPackageName(pkg string) *FcmClient {
this.Message.RestrictedPackageName = pkg
return this
}
func (this *FcmClient) SetDryRun(drun bool) *FcmClient {
this.Message.DryRun = drun
return this
}
func (this *FcmResponseStatus) PrintResults() {
fmt.Println("Status Code :", this.StatusCode)
fmt.Println("Success :", this.Success)
fmt.Println("Fail :", this.Fail)
fmt.Println("Canonical_ids :", this.Canonical_ids)
fmt.Println("Topic MsgId :", this.MsgId)
fmt.Println("Topic Err :", this.Err)
for i, val := range this.Results {
fmt.Printf("Result(%d)> \n", i)
for k, v := range val {
fmt.Println("\t", k, " : ", v)
}
}
}
func (this *FcmResponseStatus) isTimeout() bool {
if this.StatusCode > 500 {
return true
} else if this.StatusCode == 200 {
for _, val := range this.Results {
for k, v := range val {
if k == error_key && retreyableErrors[v] == true {
return true
}
}
}
}
return false
}
func getRetryAfterInt(resp *http.Response) (t time.Duration, e error) {
t, e = time.ParseDuration(resp.Header.Get(retry_after_header))
return
}
func newBackoffHandler() *backoff.Backoff {
b := &backoff.Backoff{
Min: minBackoff,
Max: maxBackoff,
Jitter: true,
}
return b
}
func setMinBackoff(m time.Duration) {
minBackoff = m
}
func setMaxBackoff(m time.Duration) {
maxBackoff = m
}
func (this *FcmClient) SetCondition(condition string) *FcmClient {
this.Message.Condition = condition
return this
}