-
Notifications
You must be signed in to change notification settings - Fork 237
Expand file tree
/
Copy pathOneSignalNotifications.java
More file actions
294 lines (262 loc) · 12.9 KB
/
Copy pathOneSignalNotifications.java
File metadata and controls
294 lines (262 loc) · 12.9 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
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<>();
// #1138: tracks if Dart requested clicks, so we can queue (not drop) them
// while the channel is detached across engine/activity lifecycles.
private boolean clickListenerRequested = false;
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.bindChannelIfUnbound(messenger, "OneSignal#notifications", 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);
}
void onDetachedFromEngine(BinaryMessenger detachingMessenger) {
// #1138: ignore a FlutterFire background engine detaching — removing the
// listener bound to the live UI engine would drop the next click (the UI
// engine fires no activity event, so nothing re-adds it).
if (detachingMessenger != null && detachingMessenger != this.messenger) {
return;
}
// #1149: engine can be torn down before Dart calls initialize().
if (!OneSignal.isInitialized()) {
return;
}
// Unsubscribe so clicks get queued by the native SDK, not dropped.
OneSignal.getNotifications().removeClickListener(this);
}
/**
* Same as {@link #onDetachedFromEngine} but for when the engine survives and
* only the host activity is destroyed (e.g. back-pressed out of MainActivity).
*/
void onDetachedFromActivity() {
if (!OneSignal.isInitialized()) {
return;
}
OneSignal.getNotifications().removeClickListener(this);
}
/**
* #1138: rebind the shared channel to the UI engine on (re)attach and drain
* any clicks the native SDK queued while detached.
*/
void onAttachedToActivity(BinaryMessenger activityMessenger) {
// Rebind the shared channel so callbacks hit the now-foreground engine.
rebindChannelToEngine(activityMessenger, "OneSignal#notifications", this);
// Re-add the listener so the native SDK drains any clicks queued while
// detached. Works for fresh, FCM-background, and pre-warmed cached engines
// alike: a pre-warmed engine's Dart already ran main() and won't re-call
// OneSignal#addNativeClickListener, so the rebind alone wouldn't restore it.
// Draining before this engine's Dart listeners exist is safe — the Dart
// bridge buffers clicks that arrive with no listeners and flushes them once
// addClickListener runs.
if (!clickListenerRequested || !OneSignal.isInitialized()) {
return;
}
OneSignal.getNotifications().removeClickListener(this);
OneSignal.getNotifications().addClickListener(this);
}
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() {
clickListenerRequested = true;
OneSignal.getNotifications().removeClickListener(this);
OneSignal.getNotifications().addClickListener(this);
}
}