充电桩app代码

MyReceiver.java 8.0KB

    package com.electric.chargingpile.view; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.os.Bundle; import android.util.Log; import com.electric.chargingpile.activity.MainActicity; import com.electric.chargingpile.activity.MainMapActivity; import com.electric.chargingpile.activity.MyWebViewActivity; import com.electric.chargingpile.activity.WelcomeActivity; import com.electric.chargingpile.application.MainApplication; import com.electric.chargingpile.util.DES3; import com.electric.chargingpile.util.ExampleUtil; import com.umeng.analytics.MobclickAgent; import org.json.JSONException; import org.json.JSONObject; import java.net.URLEncoder; import java.util.Iterator; import cn.jpush.android.api.JPushInterface; /** * 自定义接收器 * <p> * 如果不定义这个 Receiver,则: * 1) 默认用户会打开主界面 * 2) 接收不到自定义消息 */ public class MyReceiver extends BroadcastReceiver { private static final String TAG = "JPush"; @Override public void onReceive(Context context, Intent intent) { Bundle bundle = intent.getExtras(); Log.d(TAG, "[MyReceiver] onReceive - " + intent.getAction() + ", extras: " + printBundle(bundle)); if (JPushInterface.ACTION_REGISTRATION_ID.equals(intent.getAction())) { String regId = bundle.getString(JPushInterface.EXTRA_REGISTRATION_ID); Log.d(TAG, "[MyReceiver] 接收Registration Id : " + regId); //send the Registration Id to your server... } else if (JPushInterface.ACTION_MESSAGE_RECEIVED.equals(intent.getAction())) { Log.d(TAG, "[MyReceiver] 接收到推送下来的自定义消息: " + bundle.getString(JPushInterface.EXTRA_MESSAGE)); processCustomMessage(context, bundle); } else if (JPushInterface.ACTION_NOTIFICATION_RECEIVED.equals(intent.getAction())) { Log.d(TAG, "[MyReceiver] 接收到推送下来的通知"); int notifactionId = bundle.getInt(JPushInterface.EXTRA_NOTIFICATION_ID); JPushInterface.reportNotificationOpened(context, bundle.getString(JPushInterface.EXTRA_MSG_ID)); Log.d(TAG, "[MyReceiver] 接收到推送下来的通知的ID: " + notifactionId); String extras = bundle.getString(JPushInterface.EXTRA_EXTRA);//获取附加字段,是一个json数组 Log.e("extra:", extras); } else if (JPushInterface.ACTION_NOTIFICATION_OPENED.equals(intent.getAction())) { Log.d(TAG, "[MyReceiver] 用户点击打开了通知"); // openNotification(context,bundle); String extras = bundle.getString(JPushInterface.EXTRA_EXTRA);//获取附加字段,是一个json数组 Log.e("extra:", extras); JSONObject json = null; try { json = new JSONObject(extras); } catch (JSONException e) { e.printStackTrace(); } //进行json.getString("Article")操作时,要保证这里的Article与服务器上的Article一模一样,不然回报空指针异常 String articleUrl = "";//获取附加字段Article,对应的值为articleUrl String type = ""; try { articleUrl = json.getString("customUrl"); type = json.getString("type"); // if (type.equals("PushWeb")){ MainApplication.h5_url = articleUrl; MainApplication.type = type; // }else if (type.equals("PushComment")){ // MainApplication.h5_url = "111"; // MainApplication.type = type; // } } catch (JSONException e) { e.printStackTrace(); } // Log.e("articleUrl:", articleUrl); //打开自定义的Activity if ("PushRedBag".equals(type)) { long appTime4 = System.currentTimeMillis() / 1000; long updatetime4 = appTime4 - MainMapActivity.cha - 1; String token4 = String.valueOf(updatetime4); Intent intent4 = new Intent(context, MyWebViewActivity.class); String web1 = null; try { web1 = MainApplication.url + "/zhannew/basic/web/index.php/discount/redlist?userid=" + MainApplication.userId + "&token=" + URLEncoder.encode(DES3.encode(token4)); } catch (Exception e) { e.printStackTrace(); } intent4.putExtra("url", web1); context.startActivity(intent4); MobclickAgent.onEvent(context, "0808"); } else { Intent i = new Intent(context, WelcomeActivity.class); i.putExtras(bundle); i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP); context.startActivity(i); } } else if (JPushInterface.ACTION_RICHPUSH_CALLBACK.equals(intent.getAction())) { Log.d(TAG, "[MyReceiver] 用户收到到RICH PUSH CALLBACK: " + bundle.getString(JPushInterface.EXTRA_EXTRA)); //在这里根据 JPushInterface.EXTRA_EXTRA 的内容处理代码,比如打开新的Activity, 打开一个网页等.. } else if (JPushInterface.ACTION_CONNECTION_CHANGE.equals(intent.getAction())) { boolean connected = intent.getBooleanExtra(JPushInterface.EXTRA_CONNECTION_CHANGE, false); Log.w(TAG, "[MyReceiver]" + intent.getAction() + " connected state change to " + connected); } else { Log.d(TAG, "[MyReceiver] Unhandled intent - " + intent.getAction()); } } // 打印所有的 intent extra 数据 private static String printBundle(Bundle bundle) { StringBuilder sb = new StringBuilder(); if (bundle != null) { for (String key : bundle.keySet()) { if (key.equals(JPushInterface.EXTRA_NOTIFICATION_ID)) { sb.append("\nkey:" + key + ", value:" + bundle.getInt(key)); } else if (key.equals(JPushInterface.EXTRA_CONNECTION_CHANGE)) { sb.append("\nkey:" + key + ", value:" + bundle.getBoolean(key)); } else if (key.equals(JPushInterface.EXTRA_EXTRA)) { if (bundle.getString(JPushInterface.EXTRA_EXTRA).isEmpty()) { Log.i(TAG, "This message has no Extra data"); continue; } try { JSONObject json = new JSONObject(bundle.getString(JPushInterface.EXTRA_EXTRA)); Iterator<String> it = json.keys(); while (it.hasNext()) { String myKey = it.next().toString(); sb.append("\nkey:" + key + ", value: [" + myKey + " - " + json.optString(myKey) + "]"); } } catch (JSONException e) { Log.e(TAG, "Get message extra JSON error!"); } } else { sb.append("\nkey:" + key + ", value:" + bundle.getString(key)); } } } return sb.toString(); } //send msg to MainActivity private void processCustomMessage(Context context, Bundle bundle) { if (MainActicity.isForeground) { String message = bundle.getString(JPushInterface.EXTRA_MESSAGE); String extras = bundle.getString(JPushInterface.EXTRA_EXTRA); Intent msgIntent = new Intent(MainActicity.MESSAGE_RECEIVED_ACTION); msgIntent.putExtra(MainActicity.KEY_MESSAGE, message); if (!ExampleUtil.isEmpty(extras)) { try { JSONObject extraJson = new JSONObject(extras); if (null != extraJson && extraJson.length() > 0) { msgIntent.putExtra(MainActicity.KEY_EXTRAS, extras); } } catch (JSONException e) { } } context.sendBroadcast(msgIntent); } } }