-
Notifications
You must be signed in to change notification settings - Fork 1
/
MyPushDelegate.cs
85 lines (72 loc) · 2.25 KB
/
MyPushDelegate.cs
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
using System.Runtime.CompilerServices;
using PushTesting.Services;
using Shiny.Push;
#if APPLE
using UIKit;
using UserNotifications;
#endif
namespace PushTesting.Delegates;
public partial class MyPushDelegate(
AppSqliteConnection conn,
IDialogs dialogs
) : PushDelegate
{
public override async Task OnEntry(PushNotification notification)
{
await this.Store(notification.Data.Select(x => (x.Key, x.Value)).ToArray());
await this.Message("Push Notification Entry");
}
public override async Task OnReceived(PushNotification notification)
{
#if ANDROID
// TODO: if in foreground
((AndroidPushNotification)notification).SendDefault(100);
#endif
await this.Store(notification.Data.Select(x => (x.Key, x.Value)).ToArray());
await this.Message("Push Notification Received");
}
public override async Task OnNewToken(string token)
{
await this.Store(new[] { ("Token", token) });
await this.Message("New Push Token Received");
}
public override async Task OnUnRegistered(string token)
{
await this.Store([("Token", token)]);
await this.Message("UnRegistered from Push");
}
Task Store((string Key, string Value)[] values, [CallerMemberName] string? eventName = null)
{
var e = String.Empty;
foreach (var kv in values)
e += $"{kv.Key}={kv.Value}&";
return conn.InsertAsync(new AppEvent
{
EventName = eventName!,
Description = e,
DateCreated = DateTime.UtcNow
});
}
async Task Message(string msg)
{
try
{
Console.WriteLine(msg);
await dialogs.Snackbar(msg);
}
catch (Exception ex)
{
Console.WriteLine(ex.ToString());
}
}
}
#if APPLE
public partial class MyPushDelegate : IApplePushDelegate
{
// return null for default value
public UNNotificationPresentationOptions? GetPresentationOptions(PushNotification notification)
// show notification when UI is up
=> UNNotificationPresentationOptions.Banner | UNNotificationPresentationOptions.Sound;
public UIBackgroundFetchResult? GetFetchResult(PushNotification notification) => null;
}
#endif