-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathLocalNotifications.java
141 lines (117 loc) · 5.39 KB
/
LocalNotifications.java
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
package com.adobe.phonegap.notification;
import org.apache.cordova.CallbackContext;
import org.apache.cordova.CordovaPlugin;
import org.apache.cordova.CordovaWebView;
import org.apache.cordova.PluginResult;
import org.json.JSONArray;
import org.json.JSONException;
import android.annotation.SuppressLint;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.support.v4.app.NotificationCompat;
import android.util.Log;
import java.io.IOException;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.URL;
import java.util.Random;
import android.app.NotificationChannel;
/**
* This class exposes methods in Cordova that can be called from JavaScript.
*/
public class LocalNotifications extends CordovaPlugin {
private static final String TAG = "LocalNotifications";
private static CallbackContext notificationContext;
/**
* Executes the request and returns PluginResult.
*
* @param action The action to execute.
* @param args JSONArry of arguments for the plugin.
* @param callbackContext The callback context from which we were invoked.
*/
@SuppressLint("NewApi")
public boolean execute(String action, final JSONArray args, final CallbackContext callbackContext) throws JSONException {
Log.d(TAG, "in local notifications");
if (action.equals("show")) {
Log.d(TAG, "action show");
notificationContext = callbackContext;
showNotification(args);
PluginResult result = new PluginResult(PluginResult.Status.OK, "show");
result.setKeepCallback(true);
notificationContext.sendPluginResult(result);
} else if (action.equals("close")) {
NotificationManager mNotificationManager = (NotificationManager) cordova.getActivity().getSystemService(Context.NOTIFICATION_SERVICE);
mNotificationManager.cancel(args.getString(0), 0);
callbackContext.sendPluginResult(new PluginResult(PluginResult.Status.OK));
} else if (action.equals("requestPermission")) {
callbackContext.sendPluginResult(new PluginResult(PluginResult.Status.OK, "granted"));
} else {
Log.d(TAG, "return false");
return false;
}
return true;
}
private void showNotification(JSONArray args) throws JSONException {
// Get args
String title = args.getString(0);
String dir = args.getString(1);
String lang = args.getString(2);
String body = args.getString(3);
String tag = args.getString(4);
String icon = args.getString(5);
String NOTIFICATION_CHANNEL_ID = "my_channel_id_01";
Context context = cordova.getActivity();
Intent notificationIntent = new Intent(context, NotificationHandlerActivity.class);
notificationIntent.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP | Intent.FLAG_ACTIVITY_CLEAR_TOP);
notificationIntent.putExtra("tag", tag);
int requestCode = new Random().nextInt();
PendingIntent contentIntent = PendingIntent.getActivity(context, requestCode, notificationIntent, PendingIntent.FLAG_UPDATE_CURRENT);
NotificationManager mNotificationManager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
NotificationCompat.Builder mBuilder = null;
if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.O) {
int importance = NotificationManager.IMPORTANCE_DEFAULT;
NotificationChannel notificationChannel = new NotificationChannel("ID", "Name", importance);
mNotificationManager.createNotificationChannel(notificationChannel);
mBuilder = new NotificationCompat.Builder(context, notificationChannel.getId());
} else {
mBuilder = new NotificationCompat.Builder(context);
}
// Build notifications
mBuilder = mBuilder
.setWhen(System.currentTimeMillis())
.setContentTitle(title)
.setContentText(body)
.setSmallIcon(context.getApplicationInfo().icon)
.setContentIntent(contentIntent)
.setAutoCancel(true);
if (icon.startsWith("http://") || icon.startsWith("https://")) {
Bitmap bitmap = getBitmapFromURL(icon);
mBuilder.setLargeIcon(bitmap);
}
// Show notification
mNotificationManager.notify(tag, 0, mBuilder.build());
}
private Bitmap getBitmapFromURL(String strURL) {
try {
URL url = new URL(strURL);
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
connection.setConnectTimeout(15000);
connection.setDoInput(true);
connection.connect();
InputStream input = connection.getInputStream();
return BitmapFactory.decodeStream(input);
} catch (IOException e) {
e.printStackTrace();
return null;
}
}
public static void fireClickEvent(String tag) {
PluginResult result = new PluginResult(PluginResult.Status.OK, "click");
result.setKeepCallback(true);
notificationContext.sendPluginResult(result);
}
}