forked from tinode/chat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpayload.go
375 lines (343 loc) · 9.62 KB
/
payload.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
package fcm
import (
"errors"
"strconv"
"time"
fcm "firebase.google.com/go/messaging"
"github.com/tinode/chat/server/drafty"
"github.com/tinode/chat/server/logs"
"github.com/tinode/chat/server/push"
"github.com/tinode/chat/server/store"
t "github.com/tinode/chat/server/store/types"
)
// AndroidConfig is the configuration of AndroidNotification payload.
type AndroidConfig struct {
Enabled bool `json:"enabled,omitempty"`
// Common defaults for all push types.
androidPayload
// Configs for specific push types.
Msg androidPayload `json:"msg,omitempty"`
Sub androidPayload `json:"sub,omitempty"`
}
func (ac *AndroidConfig) getTitleLocKey(what string) string {
var title string
if what == push.ActMsg {
title = ac.Msg.TitleLocKey
} else if what == push.ActSub {
title = ac.Sub.TitleLocKey
}
if title == "" {
title = ac.androidPayload.TitleLocKey
}
return title
}
func (ac *AndroidConfig) getTitle(what string) string {
var title string
if what == push.ActMsg {
title = ac.Msg.Title
} else if what == push.ActSub {
title = ac.Sub.Title
}
if title == "" {
title = ac.androidPayload.Title
}
return title
}
func (ac *AndroidConfig) getBodyLocKey(what string) string {
var body string
if what == push.ActMsg {
body = ac.Msg.BodyLocKey
} else if what == push.ActSub {
body = ac.Sub.BodyLocKey
}
if body == "" {
body = ac.androidPayload.BodyLocKey
}
return body
}
func (ac *AndroidConfig) getBody(what string) string {
var body string
if what == push.ActMsg {
body = ac.Msg.Body
} else if what == push.ActSub {
body = ac.Sub.Body
}
if body == "" {
body = ac.androidPayload.Body
}
return body
}
func (ac *AndroidConfig) getIcon(what string) string {
var icon string
if what == push.ActMsg {
icon = ac.Msg.Icon
} else if what == push.ActSub {
icon = ac.Sub.Icon
}
if icon == "" {
icon = ac.androidPayload.Icon
}
return icon
}
func (ac *AndroidConfig) getColor(what string) string {
var color string
if what == push.ActMsg {
color = ac.Msg.Color
} else if what == push.ActSub {
color = ac.Sub.Color
}
if color == "" {
color = ac.androidPayload.Color
}
return color
}
func (ac *AndroidConfig) getClickAction(what string) string {
var clickAction string
if what == push.ActMsg {
clickAction = ac.Msg.ClickAction
} else if what == push.ActSub {
clickAction = ac.Sub.ClickAction
}
if clickAction == "" {
clickAction = ac.androidPayload.ClickAction
}
return clickAction
}
// Payload to be sent for a specific notification type.
type androidPayload struct {
TitleLocKey string `json:"title_loc_key,omitempty"`
Title string `json:"title,omitempty"`
BodyLocKey string `json:"body_loc_key,omitempty"`
Body string `json:"body,omitempty"`
Icon string `json:"icon,omitempty"`
Color string `json:"color,omitempty"`
ClickAction string `json:"click_action,omitempty"`
}
// MessageData adds user ID and device token to push message. This is needed for error handling.
type MessageData struct {
Uid t.Uid
// FCM device token.
DeviceId string
Message *fcm.Message
}
func payloadToData(pl *push.Payload) (map[string]string, error) {
if pl == nil {
return nil, errors.New("empty push payload")
}
data := make(map[string]string)
var err error
data["what"] = pl.What
if pl.Silent {
data["silent"] = "true"
}
data["topic"] = pl.Topic
data["ts"] = pl.Timestamp.Format(time.RFC3339Nano)
// Must use "xfrom" because "from" is a reserved word. Google did not bother to document it anywhere.
data["xfrom"] = pl.From
if pl.What == push.ActMsg {
data["seq"] = strconv.Itoa(pl.SeqId)
data["mime"] = pl.ContentType
// Convert Drafty content to plain text (clients 0.16 and below).
data["content"], err = drafty.ToPlainText(pl.Content)
if err != nil {
return nil, err
}
// Trim long strings to 128 runes.
// Check byte length first and don't waste time converting short strings.
if len(data["content"]) > push.MaxPayloadLength {
runes := []rune(data["content"])
if len(runes) > push.MaxPayloadLength {
data["content"] = string(runes[:push.MaxPayloadLength]) + "…"
}
}
// Rich content for clients version 0.17 and above.
data["rc"], err = drafty.Preview(pl.Content, push.MaxPayloadLength)
if err != nil {
return nil, err
}
} else if pl.What == push.ActSub {
data["modeWant"] = pl.ModeWant.String()
data["modeGiven"] = pl.ModeGiven.String()
} else {
return nil, errors.New("unknown push type")
}
return data, nil
}
func clonePayload(src map[string]string) map[string]string {
dst := make(map[string]string, len(src))
for key, val := range src {
dst[key] = val
}
return dst
}
// PrepareNotifications creates notification payloads ready to be posted
// to push notification server for the provided receipt.
func PrepareNotifications(rcpt *push.Receipt, config *AndroidConfig) []MessageData {
data, err := payloadToData(&rcpt.Payload)
if err != nil {
logs.Warn.Println("fcm push: could not parse payload;", err)
return nil
}
// Device IDs to send pushes to.
var devices map[t.Uid][]t.DeviceDef
// Count of device IDs to push to.
var count int
// Devices which were online in the topic when the message was sent.
skipDevices := make(map[string]struct{})
if len(rcpt.To) > 0 {
// List of UIDs for querying the database
uids := make([]t.Uid, len(rcpt.To))
i := 0
for uid, to := range rcpt.To {
uids[i] = uid
i++
// Some devices were online and received the message. Skip them.
for _, deviceID := range to.Devices {
skipDevices[deviceID] = struct{}{}
}
}
devices, count, err = store.Devices.GetAll(uids...)
if err != nil {
logs.Warn.Println("fcm push: db error", err)
return nil
}
}
if count == 0 && rcpt.Channel == "" {
return nil
}
var titlelc, title, bodylc, body, icon, color, clickAction string
if config != nil && config.Enabled {
titlelc = config.getTitleLocKey(rcpt.Payload.What)
title = config.getTitle(rcpt.Payload.What)
bodylc = config.getBodyLocKey(rcpt.Payload.What)
body = config.getBody(rcpt.Payload.What)
if body == "$content" {
body = data["content"]
}
icon = config.getIcon(rcpt.Payload.What)
color = config.getColor(rcpt.Payload.What)
clickAction = config.getClickAction(rcpt.Payload.What)
}
androidNotification := func(msg *fcm.Message) {
// When this notification type is included and the app is not in the foreground
// Android won't wake up the app and won't call FirebaseMessagingService:onMessageReceived.
// See dicussion: https://github.com/firebase/quickstart-js/issues/71
if config != nil && config.Enabled {
msg.Android.Notification = &fcm.AndroidNotification{
// Android uses Tag value to group notifications together:
// show just one notification per topic.
Tag: rcpt.Payload.Topic,
Priority: fcm.PriorityHigh,
Visibility: fcm.VisibilityPrivate,
TitleLocKey: titlelc,
Title: title,
BodyLocKey: bodylc,
Body: body,
Icon: icon,
Color: color,
ClickAction: clickAction,
}
}
}
// TODO(aforge): introduce iOS push configuration (similar to Android).
titleIOS := "New message"
bodyIOS := data["content"]
apnsNotification := func(msg *fcm.Message) {
msg.APNS = &fcm.APNSConfig{
Payload: &fcm.APNSPayload{
Aps: &fcm.Aps{
ContentAvailable: true,
MutableContent: true,
Sound: "default",
// Need to duplicate these in APNS.Payload.Aps.Alert so
// iOS may call NotificationServiceExtension (if present).
Alert: &fcm.ApsAlert{
Title: titleIOS,
Body: bodyIOS,
},
},
},
}
}
var messages []MessageData
for uid, devList := range devices {
userData := data
if rcpt.To[uid].Delivered > 0 {
// Silence the push for user who have received the data interactively.
userData = clonePayload(data)
userData["silent"] = "true"
}
for i := range devList {
d := &devList[i]
if _, ok := skipDevices[d.DeviceId]; !ok && d.DeviceId != "" {
msg := fcm.Message{
Token: d.DeviceId,
Data: userData,
Notification: &fcm.Notification{
Title: title,
Body: body,
},
}
if d.Platform == "android" {
msg.Android = &fcm.AndroidConfig{
Priority: "high",
}
androidNotification(&msg)
} else if d.Platform == "ios" {
apnsNotification(&msg)
// iOS uses Badge to show the total unread message count.
badge := rcpt.To[uid].Unread
msg.APNS.Payload.Aps.Badge = &badge
}
messages = append(messages, MessageData{Uid: uid, DeviceId: d.DeviceId, Message: &msg})
}
}
}
if rcpt.Channel != "" {
topic := rcpt.Channel
userData := clonePayload(data)
userData["topic"] = topic
// Channel receiver should not know the ID of the message sender.
delete(userData, "xfrom")
msg := fcm.Message{
Topic: topic,
Data: userData,
Notification: &fcm.Notification{
Title: title,
Body: body,
},
}
msg.Android = &fcm.AndroidConfig{
Priority: "normal",
}
androidNotification(&msg)
apnsNotification(&msg)
messages = append(messages, MessageData{Message: &msg})
}
return messages
}
// DevicesForUser loads device IDs of the given user.
func DevicesForUser(uid t.Uid) []string {
ddef, count, err := store.Devices.GetAll(uid)
if err != nil {
logs.Warn.Println("fcm devices for user: db error", err)
return nil
}
if count == 0 {
return nil
}
devices := make([]string, count)
for i, dd := range ddef[uid] {
devices[i] = dd.DeviceId
}
return devices
}
// ChannelsForUser loads user's channel subscriptions with P permission.
func ChannelsForUser(uid t.Uid) []string {
channels, err := store.Users.GetChannels(uid)
if err != nil {
logs.Warn.Println("fcm channels for user: db error", err)
return nil
}
return channels
}