From 5cd47d352fd203a650a29f1f59921c5c84affdfd Mon Sep 17 00:00:00 2001
From: yujian <yujian@123.com>
Date: 星期四, 27 六月 2019 11:18:14 +0800
Subject: [PATCH] 淘礼金报告预估奖金bug优化
---
fanli/src/main/java/com/yeshi/fanli/util/factory/IOSPushFactory.java | 126 ++++++++++++++++++++++++++++++++++++++++--
1 files changed, 120 insertions(+), 6 deletions(-)
diff --git a/fanli/src/main/java/com/yeshi/fanli/util/factory/IOSPushFactory.java b/fanli/src/main/java/com/yeshi/fanli/util/factory/IOSPushFactory.java
index 99ac5c5..07789d0 100644
--- a/fanli/src/main/java/com/yeshi/fanli/util/factory/IOSPushFactory.java
+++ b/fanli/src/main/java/com/yeshi/fanli/util/factory/IOSPushFactory.java
@@ -1,12 +1,50 @@
package com.yeshi.fanli.util.factory;
+import java.io.UnsupportedEncodingException;
+
import com.yeshi.fanli.controller.admin.PushController;
+import com.yeshi.fanli.util.StringUtil;
import net.sf.json.JSONObject;
public class IOSPushFactory {
+
+ private static JSONObject filterPushContent(JSONObject json) {
+ if (json != null)
+ try {
+ boolean ischange = false;
+ while (json.toString().getBytes("UTF-8").length > 253) {
+ // 棣栧厛鍓婂噺鍐呭锛岀劧鍚庡墛鍑忔爣棰�
+ String title = json.optJSONObject("aps").optJSONObject("alert").optString("title");
+ String body = json.optJSONObject("aps").optJSONObject("alert").optString("body");
+ if (StringUtil.isNullOrEmpty(body) || body.length() < 4) {
+ // 鍓婂噺鏍囬
+ if (!StringUtil.isNullOrEmpty(title) && title.length() > 6) {
+ json.optJSONObject("aps").optJSONObject("alert").put("title",
+ title.substring(0, title.length() - 1));
+ continue;
+ }
+ } else {
+ ischange = true;
+ json.optJSONObject("aps").optJSONObject("alert").put("body",
+ body.substring(0, body.length() - 1));
+ continue;
+ }
+ }
+
+ if (ischange) {
+ String body = json.optJSONObject("aps").optJSONObject("alert").optString("body");
+ json.optJSONObject("aps").optJSONObject("alert").put("body", body + "...");
+ }
+
+ } catch (UnsupportedEncodingException e) {
+ e.printStackTrace();
+ }
+ return json;
+ }
+
/**
- * IOS鍟嗗搧鎺ㄩ�� 杩斿洖JSON鐨勫瓧绗︿覆闀垮害灏忎簬绛変簬256
+ * IOS鍟嗗搧鎺ㄩ�� 杩斿洖JSON鐨勫瓧绗︿覆闀垮害灏忎簬绛変簬256
*
* @param auctionId
* 娣樺疂鍟嗗搧ID
@@ -22,15 +60,17 @@
alert.put("sound", "default");
alert.put("url", "http://id=" + auctionId);
alert.put("type", PushController.GOODS);
+
JSONObject aps = new JSONObject();
aps.put("alert", alert);
+ //aps.put("badge", 1);
JSONObject json = new JSONObject();
json.put("aps", aps);
- return json;
+ return filterPushContent(json);
}
/**
- * IOS绔欏唴淇℃帹閫� 杩斿洖JSON鐨勫瓧绗︿覆闀垮害灏忎簬绛変簬256
+ * IOS绔欏唴淇℃帹閫� 杩斿洖JSON鐨勫瓧绗︿覆闀垮害灏忎簬绛変簬256
*
* @param title
* @param body
@@ -45,13 +85,14 @@
alert.put("type", PushController.ZNX);
JSONObject aps = new JSONObject();
aps.put("alert", alert);
+ //aps.put("badge", 1);
JSONObject json = new JSONObject();
json.put("aps", aps);
- return json;
+ return filterPushContent(json);
}
/**
- * IOS閾炬帴鎺ㄩ�� 杩斿洖JSON鐨勫瓧绗︿覆闀垮害灏忎簬绛変簬256
+ * IOS閾炬帴鎺ㄩ�� 杩斿洖JSON鐨勫瓧绗︿覆闀垮害灏忎簬绛変簬256
*
* @param shortUrl
* 鐭摼
@@ -70,9 +111,82 @@
JSONObject aps = new JSONObject();
aps.put("alert", alert);
+ //aps.put("badge", 1);
JSONObject json = new JSONObject();
json.put("aps", aps);
- return json;
+ return filterPushContent(json);
+ }
+
+ /**
+ * WEEX椤甸潰鎺ㄩ��
+ *
+ * @param shortUrl
+ * @param title
+ * @param body
+ * @return
+ */
+ public static JSONObject createWEEXPush(String shortUrl, String title, String body) {
+ JSONObject alert = new JSONObject();
+ alert.put("title", title);
+ alert.put("body", body);
+ alert.put("badge", "1");
+ alert.put("sound", "default");
+ alert.put("type", PushController.WEEX);
+ alert.put("url", shortUrl);
+
+ JSONObject aps = new JSONObject();
+ aps.put("alert", alert);
+ //aps.put("badge", 1);
+ JSONObject json = new JSONObject();
+ json.put("aps", aps);
+ return filterPushContent(json);
+ }
+
+ /**
+ * 鐧惧窛缃戦〉鎺ㄩ��
+ *
+ * @param shortUrl
+ * @param title
+ * @param body
+ * @return
+ */
+ public static JSONObject createBaiChuanPush(String shortUrl, String title, String body) {
+ JSONObject alert = new JSONObject();
+ alert.put("title", title);
+ alert.put("body", body);
+ alert.put("badge", "1");
+ alert.put("sound", "default");
+ alert.put("type", PushController.BAICHUAN);
+ alert.put("url", shortUrl);
+
+ JSONObject aps = new JSONObject();
+ aps.put("alert", alert);
+ //aps.put("badge", 1);
+ JSONObject json = new JSONObject();
+ json.put("aps", aps);
+ return filterPushContent(json);
+ }
+
+ /**
+ * 绂忓埄涓績鎺ㄩ��
+ * @param title
+ * @param body
+ * @return
+ */
+ public static JSONObject createWelfarePush( String title, String body) {
+ JSONObject alert = new JSONObject();
+ alert.put("title", title);
+ alert.put("body", body);
+ alert.put("badge", "1");
+ alert.put("sound", "default");
+ alert.put("type", PushController.WELFARE_CENTER);
+
+ JSONObject aps = new JSONObject();
+ aps.put("alert", alert);
+ //aps.put("badge", 1);
+ JSONObject json = new JSONObject();
+ json.put("aps", aps);
+ return filterPushContent(json);
}
}
--
Gitblit v1.8.0