-
Notifications
You must be signed in to change notification settings - Fork 236
Expand file tree
/
Copy pathOneSignalNotifications.java
More file actions
244 lines (216 loc) · 10.6 KB
/
OneSignalNotifications.java
File metadata and controls
244 lines (216 loc) · 10.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
package com.onesignal.flutter;
import androidx.annotation.NonNull;
import com.onesignal.OneSignal;
import com.onesignal.debug.internal.logging.Logging;
import com.onesignal.notifications.INotification;
import com.onesignal.notifications.INotificationClickEvent;
import com.onesignal.notifications.INotificationClickListener;
import com.onesignal.notifications.INotificationLifecycleListener;
import com.onesignal.notifications.INotificationWillDisplayEvent;
import com.onesignal.notifications.IPermissionObserver;
import io.flutter.plugin.common.BinaryMessenger;
import io.flutter.plugin.common.MethodCall;
import io.flutter.plugin.common.MethodChannel;
import io.flutter.plugin.common.MethodChannel.MethodCallHandler;
import io.flutter.plugin.common.MethodChannel.Result;
import java.util.HashMap;
import java.util.Map;
import kotlin.coroutines.Continuation;
import kotlin.coroutines.CoroutineContext;
import kotlinx.coroutines.Dispatchers;
import org.json.JSONException;
import org.json.JSONObject;
public class OneSignalNotifications extends FlutterMessengerResponder
implements MethodCallHandler, INotificationClickListener, INotificationLifecycleListener, IPermissionObserver {
private static OneSignalNotifications sharedInstance;
private final HashMap<String, INotificationWillDisplayEvent> notificationOnWillDisplayEventCache = new HashMap<>();
private final HashMap<String, INotificationWillDisplayEvent> preventedDefaultCache = new HashMap<>();
public static OneSignalNotifications getSharedInstance() {
if (sharedInstance == null) {
sharedInstance = new OneSignalNotifications();
}
return sharedInstance;
}
private OneSignalNotifications() {}
/**
* A helper class to encapsulate invoking the suspending function [requestPermission] in Java.
* To support API level < 24, the SDK cannot use the OneSignal-defined [Continue.with] helper method.
*/
private class RequestPermissionContinuation implements Continuation<Boolean> {
private final MethodChannel.Result result;
public RequestPermissionContinuation(MethodChannel.Result result) {
this.result = result;
}
@NonNull
@Override
public CoroutineContext getContext() {
return (CoroutineContext) Dispatchers.getMain();
}
@Override
public void resumeWith(@NonNull Object o) {
if (o instanceof kotlin.Result.Failure) {
Throwable e = ((kotlin.Result.Failure) o).exception;
replyError(
result,
"OneSignal",
"requestPermission failed with error: " + e.getMessage() + "\n" + e.getStackTrace(),
null);
} else {
replySuccess(result, o);
}
}
}
static void registerWith(BinaryMessenger messenger) {
OneSignalNotifications controller = getSharedInstance();
controller.messenger = messenger;
controller.channel = new MethodChannel(messenger, "OneSignal#notifications");
controller.channel.setMethodCallHandler(controller);
}
@Override
public void onMethodCall(MethodCall call, Result result) {
if (call.method.contentEquals("OneSignal#permission"))
replySuccess(result, OneSignal.getNotifications().getPermission());
else if (call.method.contentEquals("OneSignal#canRequest"))
replySuccess(result, OneSignal.getNotifications().getCanRequestPermission());
else if (call.method.contentEquals("OneSignal#requestPermission")) this.requestPermission(call, result);
else if (call.method.contentEquals("OneSignal#removeNotification")) this.removeNotification(call, result);
else if (call.method.contentEquals("OneSignal#removeGroupedNotifications"))
this.removeGroupedNotifications(call, result);
else if (call.method.contentEquals("OneSignal#clearAll")) this.clearAll(call, result);
else if (call.method.contentEquals("OneSignal#displayNotification")) this.displayNotification(call, result);
else if (call.method.contentEquals("OneSignal#preventDefault")) this.preventDefault(call, result);
else if (call.method.contentEquals("OneSignal#lifecycleInit")) this.lifecycleInit(result);
else if (call.method.contentEquals("OneSignal#proceedWithWillDisplay"))
this.proceedWithWillDisplay(call, result);
else if (call.method.contentEquals("OneSignal#addNativeClickListener")) this.registerClickListener();
else replyNotImplemented(result);
}
private void requestPermission(MethodCall call, Result result) {
boolean fallback = (boolean) call.argument("fallbackToSettings");
// if permission already exists, return early as the method call will not resolve
if (OneSignal.getNotifications().getPermission()) {
replySuccess(result, true);
return;
}
OneSignal.getNotifications().requestPermission(fallback, new RequestPermissionContinuation(result));
}
private void removeNotification(MethodCall call, Result result) {
int notificationId = call.argument("notificationId");
OneSignal.getNotifications().removeNotification(notificationId);
replySuccess(result, null);
}
private void removeGroupedNotifications(MethodCall call, Result result) {
String notificationGroup = call.argument("notificationGroup");
OneSignal.getNotifications().removeGroupedNotifications(notificationGroup);
replySuccess(result, null);
}
private void clearAll(MethodCall call, Result result) {
OneSignal.getNotifications().clearAllNotifications();
replySuccess(result, null);
}
/// Our bridge layer needs to preventDefault() so that the Flutter listener has time to preventDefault() before the
// notification is displayed
/// This function is called after all of the flutter listeners have responded to the willDisplay event.
/// If any of them have called preventDefault() we will not call display(). Otherwise we will display.
private void proceedWithWillDisplay(MethodCall call, Result result) {
String notificationId = call.argument("notificationId");
INotificationWillDisplayEvent event = notificationOnWillDisplayEventCache.get(notificationId);
if (event == null) {
Logging.error(
"Could not find onWillDisplayNotification event for notification with id: " + notificationId, null);
return;
}
if (this.preventedDefaultCache.containsKey(notificationId)) {
replySuccess(result, null);
return;
}
event.getNotification().display();
replySuccess(result, null);
}
private void displayNotification(MethodCall call, Result result) {
String notificationId = call.argument("notificationId");
INotificationWillDisplayEvent event = notificationOnWillDisplayEventCache.get(notificationId);
if (event == null) {
Logging.error(
"Could not find onWillDisplayNotification event for notification with id: " + notificationId, null);
return;
}
event.getNotification().display();
replySuccess(result, null);
}
private void preventDefault(MethodCall call, Result result) {
String notificationId = call.argument("notificationId");
INotificationWillDisplayEvent event = notificationOnWillDisplayEventCache.get(notificationId);
if (event == null) {
Logging.error(
"Could not find onWillDisplayNotification event for notification with id: " + notificationId, null);
return;
}
event.preventDefault();
this.preventedDefaultCache.put(notificationId, event);
replySuccess(result, null);
}
@Override
public void onClick(INotificationClickEvent event) {
try {
invokeMethodOnUiThread(
"OneSignal#onClickNotification", OneSignalSerializer.convertNotificationClickEventToMap(event));
} catch (JSONException e) {
e.getStackTrace();
Logging.error(
"Encountered an error attempting to convert INotificationClickEvent object to hash map:"
+ e.toString(),
null);
}
}
@SuppressWarnings("unchecked")
private JSONObject getJsonFromMap(Map<String, Object> map) throws JSONException {
JSONObject jsonData = new JSONObject();
for (String key : map.keySet()) {
Object value = map.get(key);
if (value instanceof Map<?, ?>) {
value = getJsonFromMap((Map<String, Object>) value);
}
jsonData.put(key, value);
}
return jsonData;
}
@Override
public void onWillDisplay(INotificationWillDisplayEvent event) {
INotification notification = event.getNotification();
notificationOnWillDisplayEventCache.put(notification.getNotificationId(), event);
/// Our bridge layer needs to preventDefault() so that the Flutter listener has time to preventDefault() before
// the notification is displayed
event.preventDefault();
try {
invokeMethodOnUiThread(
"OneSignal#onWillDisplayNotification",
OneSignalSerializer.convertNotificationWillDisplayEventToMap(event));
} catch (JSONException e) {
e.getStackTrace();
Logging.error(
"Encountered an error attempting to convert INotificationWillDisplayEvent object to hash map:"
+ e.toString(),
null);
}
}
@Override
public void onNotificationPermissionChange(boolean permission) {
HashMap<String, Object> hash = new HashMap<>();
hash.put("permission", permission);
invokeMethodOnUiThread("OneSignal#onNotificationPermissionDidChange", hash);
}
private void lifecycleInit(Result result) {
OneSignal.getNotifications().removeForegroundLifecycleListener(this);
OneSignal.getNotifications().addForegroundLifecycleListener(this);
OneSignal.getNotifications().removePermissionObserver(this);
OneSignal.getNotifications().addPermissionObserver(this);
notificationOnWillDisplayEventCache.clear();
preventedDefaultCache.clear();
replySuccess(result, null);
}
private void registerClickListener() {
OneSignal.getNotifications().removeClickListener(this);
OneSignal.getNotifications().addClickListener(this);
}
}