Java tutorial
/* * Copyright 2014 Google Inc. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.bigbug.android.pp.gcm; import android.app.NotificationManager; import android.app.PendingIntent; import android.content.Context; import android.content.Intent; import android.media.RingtoneManager; import android.net.Uri; import android.support.v4.app.NotificationCompat; import com.bigbug.android.pp.Config; import com.bigbug.android.pp.R; import com.bigbug.android.pp.gcm.command.AnnouncementCommand; import com.bigbug.android.pp.gcm.command.NotificationCommand; import com.bigbug.android.pp.gcm.command.SyncCommand; import com.bigbug.android.pp.gcm.command.SyncUserCommand; import com.bigbug.android.pp.gcm.command.TestCommand; import com.bigbug.android.pp.ui.MainActivity; import com.bigbug.android.pp.util.AccountUtils; import com.google.android.gcm.GCMBaseIntentService; import java.util.Collections; import java.util.HashMap; import java.util.Map; import static com.bigbug.android.pp.util.LogUtils.LOGD; import static com.bigbug.android.pp.util.LogUtils.LOGE; import static com.bigbug.android.pp.util.LogUtils.LOGI; import static com.bigbug.android.pp.util.LogUtils.LOGW; import static com.bigbug.android.pp.util.LogUtils.makeLogTag; /** * {@link android.app.IntentService} responsible for handling GCM messages. */ public class GCMIntentService extends GCMBaseIntentService { private static final String TAG = makeLogTag("GCM"); private static final Map<String, GCMCommand> MESSAGE_RECEIVERS; static { // Known messages and their GCM message receivers Map<String, GCMCommand> receivers = new HashMap<String, GCMCommand>(); receivers.put("test", new TestCommand()); receivers.put("announcement", new AnnouncementCommand()); receivers.put("sync_schedule", new SyncCommand()); receivers.put("sync_user", new SyncUserCommand()); receivers.put("notification", new NotificationCommand()); MESSAGE_RECEIVERS = Collections.unmodifiableMap(receivers); } public GCMIntentService() { super(Config.GCM_SENDER_ID); } @Override protected void onRegistered(Context context, String regId) { LOGI(TAG, "Device registered: regId=" + regId); ServerUtilities.register(context, regId, AccountUtils.getActiveAccountName(context)); } @Override protected void onUnregistered(Context context, String regId) { LOGI(TAG, "Device unregistered"); if (ServerUtilities.isRegisteredOnServer(context, AccountUtils.getActiveAccountName(context))) { ServerUtilities.unregister(context, regId); } else { // This callback results from the call to unregister made on // ServerUtilities when the registration to the server failed. LOGD(TAG, "Ignoring unregister callback"); } } @Override protected void onMessage(Context context, Intent intent) { String action = intent.getStringExtra("action"); String extraData = intent.getStringExtra("extraData"); String message = intent.getStringExtra("message"); LOGD(TAG, "Got GCM message, action=" + action + ", extraData=" + extraData); sendNotification(message); if (action == null) { LOGE(TAG, "Message received without command action"); return; } action = action.toLowerCase(); GCMCommand command = MESSAGE_RECEIVERS.get(action); if (command == null) { LOGE(TAG, "Unknown command received: " + action); } else { command.execute(this, action, extraData); } } @Override public void onError(Context context, String errorId) { LOGE(TAG, "Received error: " + errorId); } @Override protected boolean onRecoverableError(Context context, String errorId) { // log message LOGW(TAG, "Received recoverable error: " + errorId); return super.onRecoverableError(context, errorId); } /** * Create and show a simple notification containing the received GCM message. * * @param message GCM message received. */ private void sendNotification(String message) { Intent intent = new Intent(this, MainActivity.class); intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); PendingIntent pendingIntent = PendingIntent.getActivity(this, 0 /* Request code */, intent, PendingIntent.FLAG_ONE_SHOT); Uri defaultSoundUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION); NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this) .setSmallIcon(R.drawable.ic_stat_notification).setContentTitle("GCM Message") .setContentText(message).setAutoCancel(true).setSound(defaultSoundUri) .setContentIntent(pendingIntent); NotificationManager notificationManager = (NotificationManager) getSystemService( Context.NOTIFICATION_SERVICE); notificationManager.notify(0 /* ID of notification */, notificationBuilder.build()); } }