-
Notifications
You must be signed in to change notification settings - Fork 176
Expand file tree
/
Copy pathFirebasePushNotificationManager.cs
More file actions
474 lines (399 loc) · 19.6 KB
/
FirebasePushNotificationManager.cs
File metadata and controls
474 lines (399 loc) · 19.6 KB
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
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
using Plugin.FirebasePushNotification.Abstractions;
using System;
using Firebase.Iid;
using Firebase.Messaging;
using System.Collections.Generic;
using Android.Content;
using Android.OS;
using Firebase;
using System.Collections.ObjectModel;
using System.Linq;
using Android.Gms.Tasks;
using System.Threading;
using Android.App;
using Android.Content.PM;
using Android.Graphics;
namespace Plugin.FirebasePushNotification
{
/// <summary>
/// Implementation for Feature
/// </summary>
public class FirebasePushNotificationManager : IFirebasePushNotification
{
static NotificationResponse delayedNotificationResponse = null;
internal const string KeyGroupName = "Plugin.FirebasePushNotification";
internal const string FirebaseTopicsKey = "FirebaseTopicsKey";
internal const string FirebaseTokenKey = "FirebaseTokenKey";
internal const string AppVersionCodeKey = "AppVersionCodeKey";
internal const string AppVersionNameKey = "AppVersionNameKey";
internal const string AppVersionPackageNameKey = "AppVersionPackageNameKey";
// internal const string NotificationDeletedActionId = "Plugin.PushNotification.NotificationDeletedActionId";
static ICollection<string> currentTopics = Android.App.Application.Context.GetSharedPreferences(KeyGroupName, FileCreationMode.Private).GetStringSet(FirebaseTopicsKey, new Collection<string>());
static IList<NotificationUserCategory> userNotificationCategories = new List<NotificationUserCategory>();
public static string NotificationContentTitleKey { get; set; }
public static string NotificationContentTextKey { get; set; }
public static string NotificationContentDataKey { get; set; }
public static int IconResource { get; set; }
public static Android.Net.Uri SoundUri { get; set; }
public static Color? Color { get; set; }
public static Type NotificationActivityType { get; set; }
public static ActivityFlags? NotificationActivityFlags { get; set; } = ActivityFlags.ClearTop | ActivityFlags.SingleTop;
public static string DefaultNotificationChannelId{ get; set; } = "FirebasePushNotificationChannel";
public static string DefaultNotificationChannelName { get; set; } = "General";
internal static Type DefaultNotificationActivityType { get; set; } = null;
//internal static PushNotificationActionReceiver ActionReceiver = new PushNotificationActionReceiver();
static Context _context;
[Obsolete("ProcessIntent with these parameters is deprecated, please use the other override instead.")]
public static void ProcessIntent(Intent intent, bool enableDelayedResponse = true)
{
Bundle extras = intent?.Extras;
if (extras != null && !extras.IsEmpty)
{
var parameters = new Dictionary<string, object>();
foreach (var key in extras.KeySet())
{
if (!parameters.ContainsKey(key) && extras.Get(key) != null)
parameters.Add(key, $"{extras.Get(key)}");
}
if (parameters.Count > 0)
{
NotificationManager manager = _context.GetSystemService(Context.NotificationService) as NotificationManager;
var notificationId = extras.GetInt(DefaultPushNotificationHandler.ActionNotificationIdKey, -1);
if (notificationId != -1)
{
var notificationTag = extras.GetString(DefaultPushNotificationHandler.ActionNotificationTagKey, string.Empty);
if (notificationTag == null)
manager.Cancel(notificationId);
else
manager.Cancel(notificationTag,notificationId);
}
var response = new NotificationResponse(parameters, extras.GetString(DefaultPushNotificationHandler.ActionIdentifierKey, string.Empty));
if (_onNotificationOpened == null && enableDelayedResponse)
delayedNotificationResponse = response;
else
_onNotificationOpened?.Invoke(CrossFirebasePushNotification.Current, new FirebasePushNotificationResponseEventArgs(response.Data, response.Identifier, response.Type));
CrossFirebasePushNotification.Current.NotificationHandler?.OnOpened(response);
}
}
}
public static void ProcessIntent(Activity activity, Intent intent, bool enableDelayedResponse = true)
{
DefaultNotificationActivityType = activity.GetType();
Bundle extras = intent?.Extras;
if (extras != null && !extras.IsEmpty)
{
var parameters = new Dictionary<string, object>();
foreach (var key in extras.KeySet())
{
if (!parameters.ContainsKey(key) && extras.Get(key) != null)
parameters.Add(key, $"{extras.Get(key)}");
}
if (parameters.Count > 0)
{
NotificationManager manager = _context.GetSystemService(Context.NotificationService) as NotificationManager;
var notificationId = extras.GetInt(DefaultPushNotificationHandler.ActionNotificationIdKey, -1);
if (notificationId != -1)
{
var notificationTag = extras.GetString(DefaultPushNotificationHandler.ActionNotificationTagKey, string.Empty);
if (notificationTag == null)
manager.Cancel(notificationId);
else
manager.Cancel(notificationTag, notificationId);
}
var response = new NotificationResponse(parameters, extras.GetString(DefaultPushNotificationHandler.ActionIdentifierKey, string.Empty));
if (_onNotificationOpened == null && enableDelayedResponse)
delayedNotificationResponse = response;
else
_onNotificationOpened?.Invoke(CrossFirebasePushNotification.Current, new FirebasePushNotificationResponseEventArgs(response.Data, response.Identifier, response.Type));
CrossFirebasePushNotification.Current.NotificationHandler?.OnOpened(response);
}
}
}
public static void Initialize(Context context, bool resetToken, bool createDefaultNotificationChannel = true,bool autoRegistration = true)
{
_context = context;
CrossFirebasePushNotification.Current.NotificationHandler = CrossFirebasePushNotification.Current.NotificationHandler ?? new DefaultPushNotificationHandler();
if(autoRegistration)
{
ThreadPool.QueueUserWorkItem(state =>
{
var packageName = Application.Context.PackageManager.GetPackageInfo(Application.Context.PackageName, PackageInfoFlags.MetaData).PackageName;
var versionCode = Application.Context.PackageManager.GetPackageInfo(Application.Context.PackageName, PackageInfoFlags.MetaData).VersionCode;
var versionName = Application.Context.PackageManager.GetPackageInfo(Application.Context.PackageName, PackageInfoFlags.MetaData).VersionName;
var prefs = Android.App.Application.Context.GetSharedPreferences(FirebasePushNotificationManager.KeyGroupName, FileCreationMode.Private);
try
{
var storedVersionName = prefs.GetString(FirebasePushNotificationManager.AppVersionNameKey, string.Empty);
var storedVersionCode = prefs.GetString(FirebasePushNotificationManager.AppVersionCodeKey, string.Empty);
var storedPackageName = prefs.GetString(FirebasePushNotificationManager.AppVersionPackageNameKey, string.Empty);
if (resetToken || (!string.IsNullOrEmpty(storedPackageName) && (!storedPackageName.Equals(packageName, StringComparison.CurrentCultureIgnoreCase) || !storedVersionName.Equals(versionName, StringComparison.CurrentCultureIgnoreCase) || !storedVersionCode.Equals($"{versionCode}", StringComparison.CurrentCultureIgnoreCase))))
{
CleanUp(false);
}
}
catch (Exception ex)
{
_onNotificationError?.Invoke(CrossFirebasePushNotification.Current, new FirebasePushNotificationErrorEventArgs(FirebasePushNotificationErrorType.UnregistrationFailed, ex.ToString()));
}
finally
{
var editor = prefs.Edit();
editor.PutString(FirebasePushNotificationManager.AppVersionNameKey, $"{versionName}");
editor.PutString(FirebasePushNotificationManager.AppVersionCodeKey, $"{versionCode}");
editor.PutString(FirebasePushNotificationManager.AppVersionPackageNameKey, $"{packageName}");
editor.Commit();
}
CrossFirebasePushNotification.Current.RegisterForPushNotifications();
});
}
if (Build.VERSION.SdkInt >= Android.OS.BuildVersionCodes.O && createDefaultNotificationChannel)
{
// Create channel to show notifications.
string channelId = DefaultNotificationChannelId;
string channelName = DefaultNotificationChannelName;
NotificationManager notificationManager = (NotificationManager)context.GetSystemService(Context.NotificationService);
notificationManager.CreateNotificationChannel(new NotificationChannel(channelId,
channelName,NotificationImportance.Default));
}
System.Diagnostics.Debug.WriteLine(CrossFirebasePushNotification.Current.Token);
}
public static void Initialize(Context context, NotificationUserCategory[] notificationCategories,bool resetToken, bool createDefaultNotificationChannel = true, bool autoRegistration = true)
{
Initialize(context,resetToken,createDefaultNotificationChannel,autoRegistration);
RegisterUserNotificationCategories(notificationCategories);
}
public static void Reset()
{
try
{
ThreadPool.QueueUserWorkItem(state =>
{
CleanUp();
});
}
catch (Exception ex)
{
_onNotificationError?.Invoke(CrossFirebasePushNotification.Current, new FirebasePushNotificationErrorEventArgs(FirebasePushNotificationErrorType.UnregistrationFailed, ex.ToString()));
}
}
public async System.Threading.Tasks.Task RegisterForPushNotifications()
{
await System.Threading.Tasks.Task.Run(() =>
{
var token = FirebaseInstanceId.Instance.Token;
if (!string.IsNullOrEmpty(token))
{
SaveToken(token);
}
});
}
public void UnregisterForPushNotifications()
{
Reset();
}
static void CleanUp(bool clearAll = true)
{
if(clearAll)
{
CrossFirebasePushNotification.Current.UnsubscribeAll();
}
FirebaseInstanceId.Instance.DeleteInstanceId();
SaveToken(string.Empty);
}
public static void Initialize(Context context,IPushNotificationHandler pushNotificationHandler,bool resetToken, bool createDefaultNotificationChannel = true, bool autoRegistration = true)
{
CrossFirebasePushNotification.Current.NotificationHandler = pushNotificationHandler;
Initialize(context,resetToken, createDefaultNotificationChannel,autoRegistration);
}
public static void ClearUserNotificationCategories()
{
userNotificationCategories.Clear();
}
public string Token { get { return Android.App.Application.Context.GetSharedPreferences(KeyGroupName, FileCreationMode.Private).GetString(FirebaseTokenKey, string.Empty); } }
static FirebasePushNotificationDataEventHandler _onNotificationReceived;
public event FirebasePushNotificationDataEventHandler OnNotificationReceived
{
add
{
_onNotificationReceived += value;
}
remove
{
_onNotificationReceived -= value;
}
}
public IPushNotificationHandler NotificationHandler { get; set; }
public string[] SubscribedTopics { get
{
IList<string> topics = new List<string>();
foreach (var t in currentTopics)
{
topics.Add(t);
}
return topics.ToArray();
}
}
static FirebasePushNotificationResponseEventHandler _onNotificationOpened;
public event FirebasePushNotificationResponseEventHandler OnNotificationOpened
{
add
{
var previousVal = _onNotificationOpened;
_onNotificationOpened += value;
if (delayedNotificationResponse != null && previousVal == null)
{
var tmpParams = delayedNotificationResponse;
_onNotificationOpened?.Invoke(CrossFirebasePushNotification.Current,new FirebasePushNotificationResponseEventArgs(tmpParams.Data,tmpParams.Identifier,tmpParams.Type));
delayedNotificationResponse = null;
}
}
remove
{
_onNotificationOpened -= value;
}
}
static FirebasePushNotificationTokenEventHandler _onTokenRefresh;
public event FirebasePushNotificationTokenEventHandler OnTokenRefresh
{
add
{
var previous = _onTokenRefresh;
_onTokenRefresh += value;
if (previous == null)
{
var token = Token;
if (!string.IsNullOrEmpty(token))
{
_onTokenRefresh?.Invoke(this, new FirebasePushNotificationTokenEventArgs(Token));
}
}
}
remove
{
_onTokenRefresh -= value;
}
}
static FirebasePushNotificationDataEventHandler _onNotificationDeleted;
public event FirebasePushNotificationDataEventHandler OnNotificationDeleted
{
add
{
_onNotificationDeleted += value;
}
remove
{
_onNotificationDeleted -= value;
}
}
static FirebasePushNotificationErrorEventHandler _onNotificationError;
public event FirebasePushNotificationErrorEventHandler OnNotificationError
{
add
{
_onNotificationError += value;
}
remove
{
_onNotificationError -= value;
}
}
public void SendDeviceGroupMessage(IDictionary<string, string> parameters, string groupKey, string messageId, int timeOfLive)
{
RemoteMessage.Builder message = new RemoteMessage.Builder(groupKey);
message.SetData(parameters);
message.SetMessageId(messageId);
message.SetTtl(timeOfLive);
FirebaseMessaging.Instance.Send(message.Build());
}
public NotificationUserCategory[] GetUserNotificationCategories()
{
return userNotificationCategories?.ToArray();
}
public static void RegisterUserNotificationCategories(NotificationUserCategory[] notificationCategories)
{
if (notificationCategories != null && notificationCategories.Length > 0)
{
ClearUserNotificationCategories();
foreach (var userCat in notificationCategories)
{
userNotificationCategories.Add(userCat);
}
}
else
{
ClearUserNotificationCategories();
}
}
public void Subscribe(string[] topics)
{
foreach (var t in topics)
{
Subscribe(t);
}
}
public void Subscribe(string topic)
{
if (!currentTopics.Contains((topic)))
{
FirebaseMessaging.Instance.SubscribeToTopic(topic);
currentTopics.Add(topic);
var editor = Android.App.Application.Context.GetSharedPreferences(KeyGroupName, FileCreationMode.Private).Edit();
editor.PutStringSet(FirebaseTopicsKey, currentTopics);
editor.Commit();
}
}
public void Unsubscribe(string[] topics)
{
foreach (var t in topics)
{
Unsubscribe(t);
}
}
public void UnsubscribeAll()
{
foreach (var t in currentTopics)
{
if (currentTopics.Contains(t))
{
FirebaseMessaging.Instance.UnsubscribeFromTopic(t);
}
}
currentTopics.Clear();
var editor = Android.App.Application.Context.GetSharedPreferences(KeyGroupName, FileCreationMode.Private).Edit();
editor.PutStringSet(FirebaseTopicsKey, currentTopics);
editor.Commit();
}
public void Unsubscribe(string topic)
{
if (currentTopics.Contains(topic))
{
FirebaseMessaging.Instance.UnsubscribeFromTopic(topic);
currentTopics.Remove(topic);
var editor = Android.App.Application.Context.GetSharedPreferences(KeyGroupName, FileCreationMode.Private).Edit();
editor.PutStringSet(FirebaseTopicsKey, currentTopics);
editor.Commit();
}
}
#region internal methods
//Raises event for push notification token refresh
internal static void RegisterToken(string token)
{
_onTokenRefresh?.Invoke(CrossFirebasePushNotification.Current, new FirebasePushNotificationTokenEventArgs(token));
}
internal static void RegisterData(IDictionary<string,object> data)
{
_onNotificationReceived?.Invoke(CrossFirebasePushNotification.Current, new FirebasePushNotificationDataEventArgs(data));
}
internal static void RegisterDelete(IDictionary<string, object> data)
{
_onNotificationDeleted?.Invoke(CrossFirebasePushNotification.Current, new FirebasePushNotificationDataEventArgs(data));
}
internal static void SaveToken(string token)
{
var editor = Android.App.Application.Context.GetSharedPreferences(FirebasePushNotificationManager.KeyGroupName, FileCreationMode.Private).Edit();
editor.PutString(FirebasePushNotificationManager.FirebaseTokenKey, token);
editor.Commit();
}
#endregion
}
}