org.jboss.aerogear.android.cookbook.aerodoc.handler.NotifyingMessageHandler.java Source code

Java tutorial

Introduction

Here is the source code for org.jboss.aerogear.android.cookbook.aerodoc.handler.NotifyingMessageHandler.java

Source

/**
 * JBoss, Home of Professional Open Source
 * Copyright Red Hat, Inc., and individual contributors.
 *
 * 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 org.jboss.aerogear.android.cookbook.aerodoc.handler;

import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
import android.media.RingtoneManager;
import android.os.Bundle;
import android.support.v4.app.NotificationCompat;
import org.jboss.aerogear.android.unifiedpush.MessageHandler;
import org.jboss.aerogear.android.cookbook.aerodoc.R;
import org.jboss.aerogear.android.cookbook.aerodoc.activities.AeroDocActivity;

public class NotifyingMessageHandler implements MessageHandler {

    public static final int NOTIFICATION_ID = 1;
    private Context ctx;

    public static final NotifyingMessageHandler instance = new NotifyingMessageHandler();

    private NotifyingMessageHandler() {
    }

    @Override
    public void onMessage(Context context, Bundle message) {
        ctx = context;
        sendNotification(message.getString("alert"));
    }

    private void sendNotification(String msg) {
        NotificationManager mNotificationManager = (NotificationManager) ctx
                .getSystemService(Context.NOTIFICATION_SERVICE);

        Intent intent = new Intent(ctx, AeroDocActivity.class).addFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK)
                .putExtra("alert", msg);

        PendingIntent contentIntent = PendingIntent.getActivity(ctx, 0, intent, 0);

        NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(ctx).setAutoCancel(true)
                .setSmallIcon(R.drawable.ic_launcher).setContentTitle("AeroGear Push Notification")
                .setStyle(new NotificationCompat.BigTextStyle().bigText(msg))
                .setSound(RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION)).setContentText(msg);

        mBuilder.setContentIntent(contentIntent);
        mNotificationManager.notify(NOTIFICATION_ID, mBuilder.build());
    }

    @Override
    public void onDeleteMessage(Context context, Bundle arg0) {
    }

    @Override
    public void onError() {
    }

}