com.gsma.rcs.ri.sharing.video.VideoSharingIntentService.java Source code

Java tutorial

Introduction

Here is the source code for com.gsma.rcs.ri.sharing.video.VideoSharingIntentService.java

Source

/*******************************************************************************
 * Software Name : RCS IMS Stack
 *
 * Copyright (C) 2010-2016 Orange.
 *
 * 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.gsma.rcs.ri.sharing.video;

import com.gsma.rcs.ri.R;
import com.gsma.rcs.ri.utils.LogUtils;
import com.gsma.rcs.ri.utils.RcsContactUtil;
import com.gsma.rcs.ri.utils.Utils;
import com.gsma.services.rcs.sharing.video.VideoSharing;
import com.gsma.services.rcs.sharing.video.VideoSharingIntent;

import android.app.IntentService;
import android.app.Notification;
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 android.util.Log;

/**
 * Video sharing intent service
 * 
 * @author YPLO6403
 */
public class VideoSharingIntentService extends IntentService {

    private static final String LOGTAG = LogUtils.getTag(VideoSharingIntentService.class.getSimpleName());

    static final String BUNDLE_VSHDAO_ID = "vshdao";

    /**
     * Constructor
     */
    public VideoSharingIntentService() {
        super("VideoSharingIntentService");
    }

    @Override
    public int onStartCommand(Intent intent, int flags, int startId) {
        super.onStartCommand(intent, flags, startId);
        // We want this service to stop running if forced stop
        // so return not sticky.
        return START_NOT_STICKY;
    }

    @Override
    protected void onHandleIntent(Intent intent) {
        String action;
        if ((action = intent.getAction()) == null) {
            return;
        }
        // Check action from incoming intent
        if (!VideoSharingIntent.ACTION_NEW_INVITATION.equals(action)) {
            if (LogUtils.isActive) {
                Log.e(LOGTAG, "Unknown action ".concat(action));
            }
            return;
        }
        // Gets data from the incoming Intent
        String sharingId = intent.getStringExtra(VideoSharingIntent.EXTRA_SHARING_ID);
        if (sharingId == null) {
            if (LogUtils.isActive) {
                Log.e(LOGTAG, "Cannot read sharing ID");
            }
            return;
        }
        if (LogUtils.isActive) {
            Log.d(LOGTAG, "onHandleIntent video sharing with ID ".concat(sharingId));
        }
        // Get Video Sharing from provider
        VideoSharingDAO vshDao = VideoSharingDAO.getVideoSharingDAO(this, sharingId);
        if (vshDao == null) {
            return;
        }
        // Save VideoSharingDAO into intent
        Bundle bundle = new Bundle();
        bundle.putParcelable(BUNDLE_VSHDAO_ID, vshDao);
        intent.putExtras(bundle);
        if (LogUtils.isActive) {
            Log.d(LOGTAG, "Video sharing invitation ".concat(vshDao.toString()));
        }
        if (VideoSharing.State.INVITED == vshDao.getState()) {
            addVideoSharingInvitationNotification(intent, vshDao);
        }
    }

    /**
     * Add video share notification
     * 
     * @param invitation Intent invitation
     * @param vshDao the video sharing data object
     */
    public void addVideoSharingInvitationNotification(Intent invitation, VideoSharingDAO vshDao) {
        if (vshDao.getContact() == null) {
            if (LogUtils.isActive) {
                Log.e(LOGTAG, "VideoSharingInvitationReceiver failed: cannot parse contact");
            }
            return;
        }
        /* Create pending intent */
        Intent intent = new Intent(invitation);
        intent.setClass(this, IncomingVideoSharing.class);
        intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        /*
         * If the PendingIntent has the same operation, action, data, categories, components, and
         * flags it will be replaced. Invitation should be notified individually so we use a random
         * generator to provide a unique request code and reuse it for the notification.
         */
        int uniqueId = Utils.getUniqueIdForPendingIntent();
        PendingIntent contentIntent = PendingIntent.getActivity(this, uniqueId, intent,
                PendingIntent.FLAG_ONE_SHOT);

        String displayName = RcsContactUtil.getInstance(this).getDisplayName(vshDao.getContact());
        String notifTitle = getString(R.string.title_recv_video_sharing);

        /* Create notification */
        NotificationCompat.Builder notif = new NotificationCompat.Builder(this);
        notif.setContentIntent(contentIntent);
        notif.setSmallIcon(R.drawable.ri_notif_csh_icon);
        notif.setWhen(System.currentTimeMillis());
        notif.setAutoCancel(true);
        notif.setOnlyAlertOnce(true);
        notif.setSound(RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION));
        notif.setDefaults(Notification.DEFAULT_VIBRATE);
        notif.setContentTitle(notifTitle);
        notif.setContentText(getString(R.string.label_from_args, displayName));

        /* Send notification */
        NotificationManager notificationManager = (NotificationManager) getSystemService(
                Context.NOTIFICATION_SERVICE);
        notificationManager.notify(uniqueId, notif.build());
    }
}