1. 程式人生 > >android 百度推送的整合

android 百度推送的整合

 

/*
 * Push訊息處理receiver。請編寫您需要的回撥函式, 一般來說: onBind是必須的,用來處理startWork返回值;
 *onMessage用來接收透傳訊息; onSetTags、onDelTags、onListTags是tag相關操作的回撥;
 *onNotificationClicked在通知被點選時回撥; onUnbind是stopWork介面的返回值回撥

 * 返回值中的errorCode,解釋如下:
 *0 - Success
 *10001 - Network Problem
 *10101  Integrate Check Error
 *30600 - Internal Server Error
 *30601 - Method Not Allowed
 *30602 - Request Params Not Valid
 *30603 - Authentication Failed
 *30604 - Quota Use Up Payment Required
 *30605 -Data Required Not Found
 *30606 - Request Time Expires Timeout
 *30607 - Channel Token Timeout
 *30608 - Bind Relation Not Found
 *30609 - Bind Number Too Many

 * 當您遇到以上返回錯誤時,如果解釋不了您的問題,請用同一請求的返回值requestId和errorCode聯絡我們追查問題。
 *
 */

public class MyPushMessageReceiver extends PushMessageReceiver {    /** TAG to Log */
    public static final String TAG = MyPushMessageReceiver.class.getSimpleName();

    /**
     * 呼叫PushManager.startWork後,sdk將對push
     * server發起繫結請求,這個過程是非同步的。繫結請求的結果通過onBind返回。 如果您需要用單播推送,需要把這裡獲取的channel
     * id和user id上傳到應用server中,再呼叫server介面用channel id和user id給單個手機或者使用者推送。
     * 
     * @param context
     *            BroadcastReceiver的執行Context
     * @param errorCode
     *            繫結介面返回值,0 - 成功
     * @param appid
     *            應用id。errorCode非0時為null
     * @param userId
     *            應用user id。errorCode非0時為null
     * @param channelId
     *            應用channel id。errorCode非0時為null
     * @param requestId
     *            向服務端發起的請求id。在追查問題時有用;
     * @return none
     */
    @Override
    public void onBind(Context context, int errorCode, String appid,
            String userId, String channelId, String requestId) {
        String responseString = "onBind errorCode=" + errorCode + " appid="
                + appid + " userId=" + userId + " channelId=" + channelId
                + " requestId=" + requestId;
        Log.i("hyy", responseString);
  
        Log.i("hyy", "userid:"+userId+"  channelid:"+channelId);
        // 繫結成功,設定已繫結flag,可以有效的減少不必要的繫結請求
        if (errorCode == 0) {
            Utils.setBind(context, true);
        }
        // Demo更新介面展示程式碼,應用請在這裡加入自己的處理邏輯
        updateContent(context, responseString);
        ResetManager.getInstance().registered(null);
    }

    /**
     * 接收透傳訊息的函式。
     * 
     * @param context
     *            上下文
     * @param message
     *            推送的訊息
     * @param customContentString
     *            自定義內容,為空或者json字串
     */
    @Override
    public void onMessage(Context context, String message,
            String customContentString) {
        String messageString = "透傳訊息 message=\"" + message
                + "\" customContentString=" + customContentString;
        Log.d("hyy", "收到推送==="+messageString);
        ToastUtil.printInfo("收到推送==="+message);
  


        // Demo更新介面展示程式碼,應用請在這裡加入自己的處理邏輯
        updateContent(context, messageString);
    }

    /**
     * 接收通知點選的函式。注:推送通知被使用者點選前,應用無法通過介面獲取通知的內容。
     * 
     * @param context
     *            上下文
     * @param title
     *            推送的通知的標題
     * @param description
     *            推送的通知的描述
     * @param customContentString
     *            自定義內容,為空或者json字串
     */
    @Override
    public void onNotificationClicked(Context context, String title,
            String description, String customContentString) {
        String notifyString = "通知點選 title=\"" + title + "\" description=\""
                + description + "\" customContent=" + customContentString;
        Log.d(TAG, notifyString);

        // 自定義內容獲取方式,mykey和myvalue對應通知推送時自定義內容中設定的鍵和值
        if (customContentString != null
                & TextUtils.isEmpty(customContentString)) {
            JSONObject customJson = null;
            try {
                customJson = new JSONObject(customContentString);
                String myvalue = null;
                if (customJson.isNull("mykey")) {
                    myvalue = customJson.getString("mykey");
                }
            } catch (JSONException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
        }

        // Demo更新介面展示程式碼,應用請在這裡加入自己的處理邏輯
        updateContent(context, notifyString);
    }

    /**
     * setTags() 的回撥函式。
     * 
     * @param context
     *            上下文
     * @param errorCode
     *            錯誤碼。0表示某些tag已經設定成功;非0表示所有tag的設定均失敗。
     * @param successTags
     *            設定成功的tag
     * @param failTags
     *            設定失敗的tag
     * @param requestId
     *            分配給對雲推送的請求的id
     */
    @Override
    public void onSetTags(Context context, int errorCode,
            List<String> sucessTags, List<String> failTags, String requestId) {
        String responseString = "onSetTags errorCode=" + errorCode
                + " sucessTags=" + sucessTags + " failTags=" + failTags
                + " requestId=" + requestId;
        Log.d(TAG, responseString);

        // Demo更新介面展示程式碼,應用請在這裡加入自己的處理邏輯
        updateContent(context, responseString);
    }

    /**
     * delTags() 的回撥函式。
     * 
     * @param context
     *            上下文
     * @param errorCode
     *            錯誤碼。0表示某些tag已經刪除成功;非0表示所有tag均刪除失敗。
     * @param successTags
     *            成功刪除的tag
     * @param failTags
     *            刪除失敗的tag
     * @param requestId
     *            分配給對雲推送的請求的id
     */
    @Override
    public void onDelTags(Context context, int errorCode,
            List<String> sucessTags, List<String> failTags, String requestId) {
        String responseString = "onDelTags errorCode=" + errorCode
                + " sucessTags=" + sucessTags + " failTags=" + failTags
                + " requestId=" + requestId;
        Log.d(TAG, responseString);

        // Demo更新介面展示程式碼,應用請在這裡加入自己的處理邏輯
        updateContent(context, responseString);
    }

    /**
     * listTags() 的回撥函式。
     * 
     * @param context
     *            上下文
     * @param errorCode
     *            錯誤碼。0表示列舉tag成功;非0表示失敗。
     * @param tags
     *            當前應用設定的所有tag。
     * @param requestId
     *            分配給對雲推送的請求的id
     */
    @Override
    public void onListTags(Context context, int errorCode, List<String> tags,
            String requestId) {
        String responseString = "onListTags errorCode=" + errorCode + " tags="
                + tags;
        Log.d(TAG, responseString);

        // Demo更新介面展示程式碼,應用請在這裡加入自己的處理邏輯
        updateContent(context, responseString);
    }

    /**
     * PushManager.stopWork() 的回撥函式。
     * 
     * @param context
     *            上下文
     * @param errorCode
     *            錯誤碼。0表示從雲推送解繫結成功;非0表示失敗。
     * @param requestId
     *            分配給對雲推送的請求的id
     */
    @Override
    public void onUnbind(Context context, int errorCode, String requestId) {
        String responseString = "onUnbind errorCode=" + errorCode
                + " requestId = " + requestId;
        Log.d(TAG, responseString);

        // 解繫結成功,設定未繫結flag,
        if (errorCode == 0) {
            Utils.setBind(context, false);
        }
        // Demo更新介面展示程式碼,應用請在這裡加入自己的處理邏輯
        updateContent(context, responseString);
    }

    private void updateContent(Context context, String content) {
        Log.d(TAG, "updateContent");
        String logText = "" + Utils.logStringCache;

        if (!logText.equals("")) {
            logText += "\n";
        }

        SimpleDateFormat sDateFormat = new SimpleDateFormat("HH-mm-ss");
        logText += sDateFormat.format(new Date()) + ": ";
        logText += content;

        Utils.logStringCache = logText;

        
    }

    @Override
    public void onNotificationArrived(Context arg0, String arg1, String arg2,
            String arg3) {
        // TODO Auto-generated method stub
        
    }

}