Created
April 1, 2019 13:31
-
-
Save paddybyers/efa3d8fd08e0de00a2fc2e1ea0bd0e32 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package io.ably.example.androidpushexample; | |
import android.content.Intent; | |
import com.google.firebase.messaging.FirebaseMessagingService; | |
import com.google.firebase.messaging.RemoteMessage; | |
import io.ably.lib.util.Log; | |
import java.util.HashMap; | |
import java.util.Map; | |
public class AblyPushMessagingService extends FirebaseMessagingService { | |
public static final String PUSH_DATA_ACTION = "io.ably.example.androidpushexample.PUSH_DATA_MESSAGE"; | |
public static final String PUSH_NOTIFICATION_ACTION = "io.ably.example.androidpushexample.PUSH_NOTIFICATION_MESSAGE"; | |
@Override | |
public void onMessageReceived (RemoteMessage message) { | |
Map<String, String> messageData = message.getData(); | |
if(messageData.isEmpty()) { return; } | |
HashMap<String, String> serialisableData = new HashMap<String, String>(); | |
serialisableData.putAll(messageData); | |
RemoteMessage.Notification messageNotification = message.getNotification(); | |
if(messageNotification != null) { | |
Log.i(TAG, "Received message notification: title = " + messageNotification.getTitle() + "; body = " + messageNotification.getBody()); | |
serialisableData.put("title", messageNotification.getTitle()); | |
serialisableData.put("body", messageNotification.getBody()); | |
sendData(PUSH_NOTIFICATION_ACTION, serialisableData); | |
} else { | |
Log.i(TAG, "Received data message"); | |
sendData(PUSH_DATA_ACTION, serialisableData); | |
} | |
} | |
private void sendData(String action, HashMap<String, String> data) { | |
Intent broadCastIntent = new Intent(); | |
broadCastIntent.setAction(action); | |
broadCastIntent.putExtra("data", data); | |
sendBroadcast(broadCastIntent); | |
} | |
private static final String TAG = AblyPushMessagingService.class.getName(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment