jp.co.conit.sss.sn.ex2.service.RegistService.java Source code

Java tutorial

Introduction

Here is the source code for jp.co.conit.sss.sn.ex2.service.RegistService.java

Source

/*
 * Copyright (C) 2012 CONIT Co., Ltd.
 *
 * 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 jp.co.conit.sss.sn.ex2.service;

import jp.co.conit.sss.sn.ex2.R;
import jp.co.conit.sss.sn.ex2.entitiy.SNParam;
import jp.co.conit.sss.sn.ex2.entitiy.SNServerResult;
import jp.co.conit.sss.sn.ex2.util.PrefrerencesUtil;
import jp.co.conit.sss.sn.ex2.util.SNApiUtil;
import jp.co.conit.sss.sn.ex2.util.StringUtil;

import org.apache.http.HttpStatus;

import android.app.Service;
import android.content.Context;
import android.content.Intent;
import android.os.AsyncTask;
import android.os.Bundle;
import android.os.IBinder;
import android.widget.Toast;

/**
 * SamuraiNotificationServer?GCM????registration_id????
 * 
 * @author conit
 */
public class RegistService extends Service {

    @Override
    public IBinder onBind(Intent intent) {
        return null;
    }

    @Override
    public int onStartCommand(Intent intent, int flags, int startId) {

        // registration_id??????SamuraiNotificationServer?registration_id???
        Bundle extras = intent.getExtras();
        if (extras != null) {
            String registrationId = extras.getString("registration_id");
            if (!StringUtil.isEmpty(registrationId)) {
                SendSamuraiNotificationServerTask task = new SendSamuraiNotificationServerTask(
                        getApplicationContext());
                task.execute(registrationId);
            } else {
                ResponseHandler.registedResponse();
            }
        }
        return START_NOT_STICKY;
    }

    /**
     * SamuraiNotification??GCM??registration_id???
     * 
     * @author conit
     */
    public class SendSamuraiNotificationServerTask extends AsyncTask<String, Integer, SNServerResult> {

        private Context mContext;

        private String mRegistrationId;

        public SendSamuraiNotificationServerTask(Context context) {
            mContext = context;
        }

        @Override
        protected SNServerResult doInBackground(String... args) {
            mRegistrationId = args[0];

            SNParam snParam = SNApiUtil.generateSNPraram();
            snParam.setDeviceToken(mRegistrationId);
            snParam.setLang(StringUtil.getLocale());
            String tags = PrefrerencesUtil.getString(mContext, "view_type", "");
            snParam.setTags(tags);

            return SNApiUtil.devices(snParam);
        }

        @Override
        protected void onPostExecute(SNServerResult result) {

            if (result.mCauseException != null) {
                Toast.makeText(mContext, mContext.getString(R.string.push_regist_failed_sn), Toast.LENGTH_LONG)
                        .show();
            } else {
                if (result.mHttpStatus == HttpStatus.SC_OK) {
                    Toast.makeText(mContext, mContext.getString(R.string.push_regist_succeeded), Toast.LENGTH_LONG)
                            .show();
                    saveRegistId(mRegistrationId);
                } else {
                    Toast.makeText(mContext, mContext.getString(R.string.push_regist_failed_sn), Toast.LENGTH_LONG)
                            .show();
                }
            }
            ResponseHandler.registedResponse();
            stopSelf();
        }
    }

    /**
     * SharedPreference?????
     * 
     * @param registId
     */
    private void saveRegistId(String registId) {
        PrefrerencesUtil.setString(getApplicationContext(), "regist_id", registId);
    }

}