Commit 61cbaca2 authored by Libin Lu's avatar Libin Lu

fix number and remove tag

parent 4f940c68
...@@ -28,55 +28,55 @@ import static com.facebook.react.common.ReactConstants.TAG; ...@@ -28,55 +28,55 @@ import static com.facebook.react.common.ReactConstants.TAG;
public class SendNotificationTask extends AsyncTask<Void, Void, Void> { public class SendNotificationTask extends AsyncTask<Void, Void, Void> {
private static final long DEFAULT_VIBRATION = 300L; private static final long DEFAULT_VIBRATION = 300L;
private Context mContext; private Context mContext;
private Bundle bundle; private Bundle bundle;
private SharedPreferences sharedPreferences; private SharedPreferences sharedPreferences;
private Boolean mIsForeground; private Boolean mIsForeground;
public SendNotificationTask(Context context, SharedPreferences sharedPreferences, Boolean mIsForeground, Bundle bundle){ public SendNotificationTask(Context context, SharedPreferences sharedPreferences, Boolean mIsForeground, Bundle bundle){
this.mContext = context; this.mContext = context;
this.bundle = bundle; this.bundle = bundle;
this.sharedPreferences = sharedPreferences; this.sharedPreferences = sharedPreferences;
this.mIsForeground = mIsForeground; this.mIsForeground = mIsForeground;
} }
protected Void doInBackground(Void... params) { protected Void doInBackground(Void... params) {
try { try {
String intentClassName = getMainActivityClassName(); String intentClassName = getMainActivityClassName();
if (intentClassName == null) { if (intentClassName == null) {
return null; return null;
} }
if (bundle.getString("body") == null) { if (bundle.getString("body") == null) {
return null; return null;
} }
Resources res = mContext.getResources(); Resources res = mContext.getResources();
String packageName = mContext.getPackageName(); String packageName = mContext.getPackageName();
String title = bundle.getString("title"); String title = bundle.getString("title");
if (title == null) { if (title == null) {
ApplicationInfo appInfo = mContext.getApplicationInfo(); ApplicationInfo appInfo = mContext.getApplicationInfo();
title = mContext.getPackageManager().getApplicationLabel(appInfo).toString(); title = mContext.getPackageManager().getApplicationLabel(appInfo).toString();
} }
NotificationCompat.Builder notification = new NotificationCompat.Builder(mContext) NotificationCompat.Builder notification = new NotificationCompat.Builder(mContext)
.setContentTitle(title) .setContentTitle(title)
.setContentText(bundle.getString("body")) .setContentText(bundle.getString("body"))
.setTicker(bundle.getString("ticker")) .setTicker(bundle.getString("ticker"))
.setVisibility(NotificationCompat.VISIBILITY_PRIVATE) .setVisibility(NotificationCompat.VISIBILITY_PRIVATE)
.setAutoCancel(bundle.getBoolean("auto_cancel", true)) .setAutoCancel(bundle.getBoolean("auto_cancel", true))
.setNumber(bundle.getInt("number")) .setNumber((int)bundle.getDouble("number"))
.setSubText(bundle.getString("sub_text")) .setSubText(bundle.getString("sub_text"))
.setGroup(bundle.getString("group")) .setGroup(bundle.getString("group"))
.setVibrate(new long[]{0, DEFAULT_VIBRATION}) .setVibrate(new long[]{0, DEFAULT_VIBRATION})
.setExtras(bundle.getBundle("data")); .setExtras(bundle.getBundle("data"));
if (bundle.containsKey("ongoing") && bundle.getBoolean("ongoing")) { if (bundle.containsKey("ongoing") && bundle.getBoolean("ongoing")) {
notification.setOngoing(bundle.getBoolean("ongoing")); notification.setOngoing(bundle.getBoolean("ongoing"));
} }
//priority //priority
String priority = bundle.getString("priority", ""); String priority = bundle.getString("priority", "");
switch(priority) { switch(priority) {
...@@ -92,7 +92,7 @@ public class SendNotificationTask extends AsyncTask<Void, Void, Void> { ...@@ -92,7 +92,7 @@ public class SendNotificationTask extends AsyncTask<Void, Void, Void> {
default: default:
notification.setPriority(NotificationCompat.PRIORITY_DEFAULT); notification.setPriority(NotificationCompat.PRIORITY_DEFAULT);
} }
//icon //icon
String smallIcon = bundle.getString("icon", "ic_launcher"); String smallIcon = bundle.getString("icon", "ic_launcher");
int smallIconResId = res.getIdentifier(smallIcon, "mipmap", packageName); int smallIconResId = res.getIdentifier(smallIcon, "mipmap", packageName);
...@@ -102,7 +102,7 @@ public class SendNotificationTask extends AsyncTask<Void, Void, Void> { ...@@ -102,7 +102,7 @@ public class SendNotificationTask extends AsyncTask<Void, Void, Void> {
if(smallIconResId != 0){ if(smallIconResId != 0){
notification.setSmallIcon(smallIconResId); notification.setSmallIcon(smallIconResId);
} }
//large icon //large icon
String largeIcon = bundle.getString("large_icon"); String largeIcon = bundle.getString("large_icon");
if(largeIcon != null && android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.LOLLIPOP){ if(largeIcon != null && android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.LOLLIPOP){
...@@ -112,41 +112,41 @@ public class SendNotificationTask extends AsyncTask<Void, Void, Void> { ...@@ -112,41 +112,41 @@ public class SendNotificationTask extends AsyncTask<Void, Void, Void> {
} else { } else {
int largeIconResId = res.getIdentifier(largeIcon, "mipmap", packageName); int largeIconResId = res.getIdentifier(largeIcon, "mipmap", packageName);
Bitmap largeIconBitmap = BitmapFactory.decodeResource(res, largeIconResId); Bitmap largeIconBitmap = BitmapFactory.decodeResource(res, largeIconResId);
if (largeIconResId != 0) { if (largeIconResId != 0) {
notification.setLargeIcon(largeIconBitmap); notification.setLargeIcon(largeIconBitmap);
} }
} }
} }
//big text //big text
String bigText = bundle.getString("big_text"); String bigText = bundle.getString("big_text");
if(bigText != null){ if(bigText != null){
notification.setStyle(new NotificationCompat.BigTextStyle().bigText(bigText)); notification.setStyle(new NotificationCompat.BigTextStyle().bigText(bigText));
} }
//picture //picture
String picture = bundle.getString("picture"); String picture = bundle.getString("picture");
if(picture!=null){ if(picture!=null){
NotificationCompat.BigPictureStyle bigPicture = new NotificationCompat.BigPictureStyle(); NotificationCompat.BigPictureStyle bigPicture = new NotificationCompat.BigPictureStyle();
if (picture.startsWith("http://") || picture.startsWith("https://")) { if (picture.startsWith("http://") || picture.startsWith("https://")) {
Bitmap bitmap = getBitmapFromURL(picture); Bitmap bitmap = getBitmapFromURL(picture);
bigPicture.bigPicture(bitmap); bigPicture.bigPicture(bitmap);
} else { } else {
int pictureResId = res.getIdentifier(picture, "mipmap", packageName); int pictureResId = res.getIdentifier(picture, "mipmap", packageName);
Bitmap pictureResIdBitmap = BitmapFactory.decodeResource(res, pictureResId); Bitmap pictureResIdBitmap = BitmapFactory.decodeResource(res, pictureResId);
if (pictureResId != 0) { if (pictureResId != 0) {
bigPicture.bigPicture(pictureResIdBitmap); bigPicture.bigPicture(pictureResIdBitmap);
} }
} }
bigPicture.setBigContentTitle(title); bigPicture.setBigContentTitle(title);
bigPicture.setSummaryText(bundle.getString("body")); bigPicture.setSummaryText(bundle.getString("body"));
notification.setStyle(bigPicture); notification.setStyle(bigPicture);
} }
//sound //sound
String soundName = bundle.getString("sound"); String soundName = bundle.getString("sound");
if (soundName != null) { if (soundName != null) {
...@@ -161,17 +161,17 @@ public class SendNotificationTask extends AsyncTask<Void, Void, Void> { ...@@ -161,17 +161,17 @@ public class SendNotificationTask extends AsyncTask<Void, Void, Void> {
notification.setSound(Uri.parse("android.resource://" + packageName + "/" + soundResourceId)); notification.setSound(Uri.parse("android.resource://" + packageName + "/" + soundResourceId));
} }
} }
//color //color
if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) { if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
notification.setCategory(NotificationCompat.CATEGORY_CALL); notification.setCategory(NotificationCompat.CATEGORY_CALL);
String color = bundle.getString("color"); String color = bundle.getString("color");
if (color != null) { if (color != null) {
notification.setColor(Color.parseColor(color)); notification.setColor(Color.parseColor(color));
} }
} }
//vibrate //vibrate
if(bundle.containsKey("vibrate")){ if(bundle.containsKey("vibrate")){
long vibrate = Math.round(bundle.getDouble("vibrate", DEFAULT_VIBRATION)); long vibrate = Math.round(bundle.getDouble("vibrate", DEFAULT_VIBRATION));
...@@ -181,40 +181,35 @@ public class SendNotificationTask extends AsyncTask<Void, Void, Void> { ...@@ -181,40 +181,35 @@ public class SendNotificationTask extends AsyncTask<Void, Void, Void> {
notification.setVibrate(null); notification.setVibrate(null);
} }
} }
//lights //lights
if (bundle.getBoolean("lights")) { if (bundle.getBoolean("lights")) {
notification.setDefaults(NotificationCompat.DEFAULT_LIGHTS); notification.setDefaults(NotificationCompat.DEFAULT_LIGHTS);
} }
if(bundle.containsKey("fire_date")) { if(bundle.containsKey("fire_date")) {
Log.d(TAG, "broadcast intent if it is a scheduled notification"); Log.d(TAG, "broadcast intent if it is a scheduled notification");
Intent i = new Intent("com.evollu.react.fcm.ReceiveLocalNotification"); Intent i = new Intent("com.evollu.react.fcm.ReceiveLocalNotification");
i.putExtras(bundle); i.putExtras(bundle);
mContext.sendOrderedBroadcast(i, null); mContext.sendOrderedBroadcast(i, null);
} }
if(!mIsForeground || bundle.getBoolean("show_in_foreground")){ if(!mIsForeground || bundle.getBoolean("show_in_foreground")){
Intent intent = new Intent(); Intent intent = new Intent();
intent.setClassName(mContext, intentClassName); intent.setClassName(mContext, intentClassName);
intent.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP); intent.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);
intent.putExtras(bundle); intent.putExtras(bundle);
intent.setAction(bundle.getString("click_action")); intent.setAction(bundle.getString("click_action"));
int notificationID = bundle.containsKey("id") ? bundle.getString("id", "").hashCode() : (int) System.currentTimeMillis(); int notificationID = bundle.containsKey("id") ? bundle.getString("id", "").hashCode() : (int) System.currentTimeMillis();
PendingIntent pendingIntent = PendingIntent.getActivity(mContext, notificationID, intent, PendingIntent pendingIntent = PendingIntent.getActivity(mContext, notificationID, intent,
PendingIntent.FLAG_UPDATE_CURRENT); PendingIntent.FLAG_UPDATE_CURRENT);
notification.setContentIntent(pendingIntent); notification.setContentIntent(pendingIntent);
Notification info = notification.build(); Notification info = notification.build();
if (bundle.containsKey("tag")) { NotificationManagerCompat.from(mContext).notify(notificationID, info);
String tag = bundle.getString("tag");
NotificationManagerCompat.from(mContext).notify(tag, notificationID, info);
} else {
NotificationManagerCompat.from(mContext).notify(notificationID, info);
}
} }
//clear out one time scheduled notification once fired //clear out one time scheduled notification once fired
if(!bundle.containsKey("repeat_interval") && bundle.containsKey("fire_date")) { if(!bundle.containsKey("repeat_interval") && bundle.containsKey("fire_date")) {
...@@ -227,7 +222,7 @@ public class SendNotificationTask extends AsyncTask<Void, Void, Void> { ...@@ -227,7 +222,7 @@ public class SendNotificationTask extends AsyncTask<Void, Void, Void> {
} }
return null; return null;
} }
public Bitmap getBitmapFromURL(String strURL) { public Bitmap getBitmapFromURL(String strURL) {
try { try {
URL url = new URL(strURL); URL url = new URL(strURL);
...@@ -241,7 +236,7 @@ public class SendNotificationTask extends AsyncTask<Void, Void, Void> { ...@@ -241,7 +236,7 @@ public class SendNotificationTask extends AsyncTask<Void, Void, Void> {
return null; return null;
} }
} }
public String getMainActivityClassName() { public String getMainActivityClassName() {
String packageName = mContext.getPackageName(); String packageName = mContext.getPackageName();
Intent launchIntent = mContext.getPackageManager().getLaunchIntentForPackage(packageName); Intent launchIntent = mContext.getPackageManager().getLaunchIntentForPackage(packageName);
...@@ -249,3 +244,4 @@ public class SendNotificationTask extends AsyncTask<Void, Void, Void> { ...@@ -249,3 +244,4 @@ public class SendNotificationTask extends AsyncTask<Void, Void, Void> {
return className; return className;
} }
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment