-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient.go
434 lines (368 loc) · 13.7 KB
/
client.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
427
428
429
430
431
432
433
434
package azurepush
import (
"bytes"
"context"
"encoding/json"
"errors"
"fmt"
"io"
"maps"
"net/http"
"strings"
"time"
"github.com/google/uuid"
)
// Client provides a high-level interface for interacting with Azure Notification Hubs.
// It encapsulates configuration and token management, and offers methods for device
// registration, existence checking, and push notification sending without requiring
// the caller to manually handle SAS tokens or repeated hub information.
//
// Example usage:
//
// client := azurepush.NewClient(cfg)
// id, err := client.RegisterDevice(context.Background(), installation)
// err = client.SendNotification(context.Background(), azurepush.Notification{...}, "user:123")
type Client struct {
Config Configuration
TokenManager *TokenManager
// HTTPClient is the client used for HTTP requests.
// It can be overridden for testing.
HTTPClient *http.Client
}
// NewClient creates and validates a new push notification client.
// NewClient creates a new Azure Notification Hub client with the given configuration.
// It automatically initializes a TokenManager for SAS token generation and reuse.
//
// This method also validates and tests connectivity to the Azure Notification Hub.
//
// Example:
//
// client := azurepush.NewClient(azureCfg)
// err := client.SendNotification(context.Background(), notification, "user:42")
func NewClient(cfg Configuration) *Client {
if err := cfg.Validate(); err != nil {
panic(err)
}
client := &Client{
Config: cfg,
TokenManager: NewTokenManager(cfg),
HTTPClient: &http.Client{Timeout: 10 * time.Second},
}
if cfg.ConnectivityCheck {
ctx, cancelFunc := context.WithTimeout(context.Background(), 15*time.Second)
defer cancelFunc()
if err := client.ValidateToken(ctx); err != nil {
panic(err)
}
}
return client
}
// Installation types for Azure Notification Hubs.
const (
// InstallationApple is the platform type for Apple devices (iOS).
InstallationApple = "apns"
// InstallationGCM is the platform type for Google Cloud Messaging (deprecated).
InstallationAndroid = "gcm"
// InstallationGCM is the platform type for Google Cloud Messaging (deprecated).
InstallationFCM = "fcm"
// InstallationFCMV1 is the platform type for Firebase Cloud Messaging (V1).
InstallationFCMV1 = "FCMV1"
// InstallationBaidu is the platform type for Baidu Push.
InstallationBaidu = "baidu"
// InstallationWNS is the platform type for Windows Notification Service.
InstallationWNS = "wns"
// InstallationMPNS is the platform type for Microsoft Push Notification Service.
InstallationMPNS = "mpns"
)
type (
// Installation represents a device installation for Azure Notification Hubs.
Installation struct {
// InstallationID is a unique identifier for the installation (usually a device ID or UUID).
// This is used to update or delete installations.
InstallationID string `json:"installationId"`
// Platform is the platform type for the device.
// Valid values: "apns" for iOS and "gcm", "FCMV1" for Android.
// Platform | Value
// Apple | "apns"
// FCM | "gcm" or "fcm" and "FCMV1" (see https://learn.microsoft.com/en-us/azure/notification-hubs/firebase-migration-rest)
// Baidu | "baidu"
// WNS | "wns"
// MPNS | "mpns"
Platform string `json:"platform"`
// PushChannel is the device-specific token to receive notifications.
// For APNs: the device token from Apple.
// For FCM: the registration token from Firebase.
// Ref: https://learn.microsoft.com/en-us/rest/api/notificationhubs/installation#pushchannel
PushChannel string `json:"pushChannel"`
// Tags is an optional list of tags to categorize this device.
// These are used for targeting groups of installations (e.g., "user:123").
Tags []string `json:"tags,omitempty"`
// Templates defines push notification templates for the device.
// This is optional and only needed for advanced templated notifications.
Templates map[string]Template `json:"templates,omitempty"`
}
// Template is used for advanced push templates (optional).
Template struct {
Body string `json:"body"`
Tags []string `json:"tags,omitempty"`
}
)
// Validate checks if the installation has all required fields set.
func (i Installation) Validate() error {
switch i.Platform {
case InstallationApple, InstallationAndroid, InstallationFCM, InstallationFCMV1, InstallationBaidu, InstallationWNS, InstallationMPNS:
// OK
default:
return fmt.Errorf("invalid platform: %q (must be 'apns' or 'fcm' or 'FCMV1' or 'gcm')", i.Platform)
}
if i.InstallationID == "" {
return fmt.Errorf("installation ID is required")
}
if i.PushChannel == "" {
return fmt.Errorf("push channel is required")
}
return nil
}
// ValidateToken performs a simple GET request to a dummy installation ID
// to verify if the SAS token is valid and authorized.
// Returns nil if authorized (even if installation doesn't exist), or an error if unauthorized.
func (c *Client) ValidateToken(ctx context.Context) error {
token, err := c.TokenManager.GetToken()
if err != nil {
return err
}
return ValidateSASToken(ctx, c.HTTPClient, c.Config.Namespace, c.Config.HubName, token)
}
// RegisterDevice registers a device installation with Azure Notification Hubs.
// Read more at: https://learn.microsoft.com/en-us/answers/questions/1324518/sending-notification-registering-device-in-notific.
//
// You use the tags you assign during registration to send notifications, as this is how you target specific devices.
// For example, if you register a device with the tag "user:123", you can send a notification to that device
// by targeting the "user:123" tag.
func (c *Client) RegisterDevice(ctx context.Context, installation Installation) (string, error) {
if installation.InstallationID == "" {
// Azure doesn't return an InstallationID
// It's a "create-or-replace" operation: PUT /installations/{installationId}
// We must supply the ID ourselves to track it.
installation.InstallationID = uuid.NewString()
}
if err := installation.Validate(); err != nil {
return "", fmt.Errorf("invalid installation data: %w", err)
}
token, err := c.TokenManager.GetToken()
if err != nil {
return "", fmt.Errorf("failed to get SAS token: %w", err)
}
if installation.Platform == InstallationFCM {
installation.Platform = InstallationAndroid // Azure uses "gcm" for FCM. See: https://learn.microsoft.com/en-us/azure/notification-hubs/firebase-migration-rest.
}
jsonData, err := json.Marshal(installation)
if err != nil {
return "", fmt.Errorf("failed to marshal installation: %w", err)
}
url := fmt.Sprintf("https://%s.servicebus.windows.net/%s/installations/%s?api-version=2020-06",
c.Config.Namespace, c.Config.HubName, installation.InstallationID)
req, err := http.NewRequestWithContext(ctx, http.MethodPut, url, bytes.NewBuffer(jsonData))
if err != nil {
return "", fmt.Errorf("failed to create request: %w", err)
}
req.Header.Set("Content-Type", "application/json")
req.Header.Set("Authorization", token)
resp, err := c.HTTPClient.Do(req)
if err != nil {
return "", fmt.Errorf("failed to send registration: %w", err)
}
defer resp.Body.Close()
if resp.StatusCode >= 300 {
b, _ := io.ReadAll(resp.Body)
return "", fmt.Errorf("registration failed: installation: %s: %s: %s", string(jsonData), resp.Status, string(b))
}
return installation.InstallationID, nil
}
// Notification holds the title, body and custom data for a notification sent to both iOS and Android.
type Notification struct {
Title string
Body string
Data map[string]any // any custom data.
}
// SendNotification sends a cross-platform push notification to all devices for a given user (e.g. tag with "user:42").
func (c *Client) SendNotification(ctx context.Context, notification Notification, tags ...string) error {
token, err := c.TokenManager.GetToken()
if err != nil {
return fmt.Errorf("failed to get SAS token: %w", err)
}
msg := notificationMessage{
Title: notification.Title,
Body: notification.Body,
}
noDevices := 0
for _, platform := range availablePlatforms {
if err := sendPlatformNotification(ctx, c.HTTPClient, c.Config.HubName, c.Config.Namespace, token, platform, msg, notification.Data, tags...); err != nil {
if errors.Is(err, errDeviceNotFound) {
noDevices++
continue // skip if no devices found. Unless both platforms fail.
}
return err
}
}
if noDevices == len(availablePlatforms) {
return fmt.Errorf("%w: for tag(s): %s", errDeviceNotFound, strings.Join(tags, ", "))
}
return nil
}
type notificationMessage struct {
Title string `json:"title"`
Body string `json:"body"`
}
// appleNotificationWithData allows embedding custom data alongside the APS payload.
type appleNotificationWithData map[string]interface{}
// androidNotification is the FCM payload.
type androidNotificationWithData struct {
Notification notificationMessage `json:"notification"`
Data map[string]interface{} `json:"data,omitempty"`
}
const (
applePlatform = "apple"
gcmPlatform = "gcm"
fcmV1Platform = "fcmV1"
)
var availablePlatforms = []string{applePlatform, gcmPlatform, fcmV1Platform}
var errDeviceNotFound = fmt.Errorf("no device found")
// sendPlatformNotification sends a platform-specific push notification.
// Usage:
//
// _ = sendPlatformNotification(ctx, client, hubName, namespace, token, "fcm", msg, map[string]any{
// "type": "chat_message",
// "threadId": "abc123",
// }, "user:42")
func sendPlatformNotification(
ctx context.Context,
client *http.Client,
hubName, namespace, sasToken, platform string,
msg notificationMessage,
data map[string]any,
tags ...string,
) error {
var (
payload []byte
err error
)
switch platform {
case applePlatform:
// APNs supports custom fields alongside "aps"
apnsPayload := appleNotificationWithData{
"aps": map[string]any{
"alert": msg,
},
}
maps.Copy(apnsPayload, data)
payload, err = json.Marshal(apnsPayload)
case gcmPlatform, fcmV1Platform:
// FCM/GCM supports custom data under "data"
fcmPayload := androidNotificationWithData{
Notification: msg,
Data: data,
}
payload, err = json.Marshal(fcmPayload)
default:
return fmt.Errorf("unsupported platform: %s", platform)
}
if err != nil {
return fmt.Errorf("failed to marshal payload for %s: %w", platform, err)
}
url := fmt.Sprintf("https://%s.servicebus.windows.net/%s/messages/?api-version=2020-06", namespace, hubName)
req, err := http.NewRequestWithContext(ctx, http.MethodPost, url, bytes.NewBuffer(payload))
if err != nil {
return fmt.Errorf("failed to create %s request: %w", platform, err)
}
req.Header.Set("Content-Type", "application/json")
req.Header.Set("Authorization", sasToken)
req.Header.Set("ServiceBusNotification-Format", platform)
req.Header.Set("ServiceBusNotification-Tags", strings.Join(tags, ","))
resp, err := client.Do(req)
if err != nil {
return fmt.Errorf("failed to send %s request: %w", platform, err)
}
defer resp.Body.Close()
if resp.StatusCode == http.StatusNotFound || resp.StatusCode == http.StatusGone {
return fmt.Errorf("%w: %s notification skipped", errDeviceNotFound, platform)
}
if resp.StatusCode >= 300 {
// Bad request? invalid payload or missing required fields.
b, _ := io.ReadAll(resp.Body)
return fmt.Errorf("failed to send %s notification with status: %d and body: %s", platform, resp.StatusCode, string(b))
}
return nil
}
// DeviceExists checks if a device installation with the given ID exists in Azure Notification Hub.
// Returns true if the device is found (HTTP 200), false if not found (HTTP 404).
func (c *Client) DeviceExists(ctx context.Context, installationID string) (bool, error) {
token, err := c.TokenManager.GetToken()
if err != nil {
return false, err
}
url := fmt.Sprintf("https://%s.servicebus.windows.net/%s/installations/%s?api-version=2020-06",
c.Config.Namespace, c.Config.HubName, installationID)
req, err := http.NewRequestWithContext(ctx, http.MethodGet, url, nil)
if err != nil {
return false, fmt.Errorf("failed to create request: %w", err)
}
req.Header.Set("Authorization", token)
resp, err := c.HTTPClient.Do(req)
if err != nil {
return false, fmt.Errorf("failed to send request: %w", err)
}
defer resp.Body.Close()
switch resp.StatusCode {
case http.StatusOK:
return true, nil
case http.StatusNotFound:
return false, nil
default:
var detail map[string]any
_ = json.NewDecoder(resp.Body).Decode(&detail)
return false, fmt.Errorf("unexpected response: %s — %v", resp.Status, detail)
}
}
// DeleteDevice deletes a registered device installation from Azure Notification Hubs
// using its installation ID.
//
// This operation is idempotent — if the installation does not exist, Azure will return 404,
// and this function will still return nil.
//
// Example:
//
// err := client.DeleteDevice(context.Background(), "device-uuid-123")
func (c *Client) DeleteDevice(ctx context.Context, installationID string) error {
if installationID == "" {
return fmt.Errorf("installation ID cannot be empty")
}
url := fmt.Sprintf(
"https://%s.servicebus.windows.net/%s/installations/%s?api-version=2020-06",
c.Config.Namespace,
c.Config.HubName,
installationID,
)
token, err := c.TokenManager.GetToken()
if err != nil {
return fmt.Errorf("failed to get SAS token: %w", err)
}
req, err := http.NewRequestWithContext(ctx, http.MethodDelete, url, nil)
if err != nil {
return fmt.Errorf("failed to create DELETE request: %w", err)
}
req.Header.Set("Authorization", token)
resp, err := c.HTTPClient.Do(req)
if err != nil {
return fmt.Errorf("failed to send DELETE request: %w", err)
}
defer resp.Body.Close()
if resp.StatusCode == http.StatusNotFound {
// Already deleted or never existed — treat as success
return nil
}
if resp.StatusCode != http.StatusOK && resp.StatusCode != http.StatusNoContent {
return fmt.Errorf("unexpected status while deleting device: %s", resp.Status)
}
return nil
}