From 0d9ac58dc11f54351e5e18dba8e950717d78019f Mon Sep 17 00:00:00 2001
From: yujian <yujian@123.com>
Date: 星期一, 09 九月 2019 14:55:24 +0800
Subject: [PATCH] 搜索发现

---
 fanli/src/main/java/com/yeshi/fanli/controller/client/v2/IntegralControllerV2.java |   93 ++++++++++++++++++++++------------------------
 1 files changed, 45 insertions(+), 48 deletions(-)

diff --git a/fanli/src/main/java/com/yeshi/fanli/controller/client/v2/IntegralControllerV2.java b/fanli/src/main/java/com/yeshi/fanli/controller/client/v2/IntegralControllerV2.java
index f7b5af1..3a5dcd9 100644
--- a/fanli/src/main/java/com/yeshi/fanli/controller/client/v2/IntegralControllerV2.java
+++ b/fanli/src/main/java/com/yeshi/fanli/controller/client/v2/IntegralControllerV2.java
@@ -36,10 +36,10 @@
 import com.yeshi.fanli.entity.integral.CodePublishRecord;
 import com.yeshi.fanli.entity.integral.IntegralExchange;
 import com.yeshi.fanli.entity.integral.IntegralTask;
+import com.yeshi.fanli.entity.integral.IntegralTask.TaskUniqueKeyEnum;
 import com.yeshi.fanli.entity.integral.IntegralTaskClass.UniqueKeyEnum;
 import com.yeshi.fanli.entity.integral.IntegralTaskRecord;
 import com.yeshi.fanli.exception.integral.IntegralExchangeException;
-import com.yeshi.fanli.exception.integral.IntegralGetException;
 import com.yeshi.fanli.exception.integral.IntegralTaskRecordException;
 import com.yeshi.fanli.log.LogHelper;
 import com.yeshi.fanli.service.inter.common.JumpDetailV2Service;
@@ -233,8 +233,9 @@
 					taskClassVO.setLightUp(true);
 				}
 
-				Integer dateType = 1; // 鏌ヨ褰撴棩
-				if (uniqueKey == UniqueKeyEnum.orderReward)
+				// 鏌ヨ褰撴棩
+				Integer dateType = 1; 
+				if (uniqueKey == UniqueKeyEnum.orderReward || uniqueKey == UniqueKeyEnum.accountMaintain) 
 					dateType = null; // 鏌ヨ鍘嗗彶
 
 				Long id = taskClassVO.getId();
@@ -276,10 +277,7 @@
 			return;
 		}
 
-		int count = 5;
-		if ("android".equalsIgnoreCase(acceptData.getPlatform())) {
-			count = Integer.MAX_VALUE;
-		}
+		int count = Integer.MAX_VALUE;
 
 		List<IntegralTaskRecord> list = integralTaskRecordService.listNotReceived(count, uid);
 		if (list == null) {
@@ -332,24 +330,8 @@
 				return;
 			}
 			Integer goldCoin = integralTaskRecordService.receiveGoldCoin(uid, idList);
-			Set<Long> gidList = gson.fromJson(gids, new TypeToken<HashSet<Long>>() {
-			}.getType());
-			List<IntegralTaskRecord> list = null;
-			if (gidList != null && gidList.size() > 0) {
-				list = integralTaskRecordService.listNotReceivedExcludeId(5 - gidList.size(), uid, gidList);
-			} else {
-				list = integralTaskRecordService.listNotReceivedExcludeId(5, uid, null);
-			}
-
-			if (list == null) {
-				list = new ArrayList<IntegralTaskRecord>();
-			}
-			GsonBuilder gsonBuilder = new GsonBuilder().excludeFieldsWithoutExposeAnnotation();
-			Gson gson2 = gsonBuilder.create();
-
 			JSONObject data = new JSONObject();
 			data.put("goldCoin", goldCoin);
-			data.put("list", gson2.toJson(list));
 			out.print(JsonUtil.loadTrueResult(data));
 		} catch (IntegralTaskRecordException e) {
 			out.print(JsonUtil.loadFalseResult(e.getMsg()));
@@ -537,7 +519,7 @@
 	 * @param out
 	 */
 	@RequestMapping(value = "pushEvent", method = RequestMethod.POST)
-	public void pushEvent(AcceptData acceptData, String event, Long uid, PrintWriter out) {
+	public void pushEvent(AcceptData acceptData, String event, Long uid, String data, PrintWriter out) {
 		if (uid == null || uid == 0) {
 			out.print(JsonUtil.loadFalseResult("鐢ㄦ埛灏氭湭鐧诲綍"));
 			return;
@@ -548,34 +530,49 @@
 			return;
 		}
 		IntegralTaskRecord record = null;
-		try {
-			record = integralGetService.addEventStatistic(uid, event);
-		} catch (IntegralGetException e) {
-		}
-		if (record == null) {
-			out.print(JsonUtil.loadFalseResult("娣诲姞澶辫触"));
-			return;
+
+		if (TaskUniqueKeyEnum.recommendSearch.name().equalsIgnoreCase(event)) {
+			record = integralGetService.addRecommendSearch(uid);
+		} else if (TaskUniqueKeyEnum.shareInvite.name().equalsIgnoreCase(event)) {
+			record = integralGetService.addShareInvite(uid);
+		} else if (TaskUniqueKeyEnum.inShop.name().equalsIgnoreCase(event)) {
+			JSONObject json = JSONObject.fromObject(data);
+			record = integralGetService.addIntoShop(uid, StringUtil.Md5(json.optString("url")));
+		} else if (TaskUniqueKeyEnum.scanPush.name().equalsIgnoreCase(event)) {
+			record = integralGetService.addScanPushHistory(uid);
+		} else if (TaskUniqueKeyEnum.scanGoods.name().equalsIgnoreCase(event)) {
+			JSONObject json = JSONObject.fromObject(data);
+			record = integralGetService.addScanGoodsDetail(uid, json.optInt("goodsType"), json.optLong("goodsId"));
+		} else if (TaskUniqueKeyEnum.scanHomeBanner.name().equalsIgnoreCase(event)) {
+			JSONObject json = JSONObject.fromObject(data);
+			record = integralGetService.addScanRecommendBanner(uid, json.optString("id"));
+		} else if (TaskUniqueKeyEnum.scanSpecial.name().equalsIgnoreCase(event)) {
+			JSONObject json = JSONObject.fromObject(data);
+			record = integralGetService.addScanRecommendSpecial(uid, json.optString("id"));
+		} else if (TaskUniqueKeyEnum.scanTBCart.name().equalsIgnoreCase(event)) {
+			record = integralGetService.addScanTaoBaoCart(uid);
 		}
 
-		JSONObject data = new JSONObject();
-		if ("recommendSearch".equalsIgnoreCase(event) || "scanGoods".equalsIgnoreCase(event)
-				|| "scanTBCart".equalsIgnoreCase(event)) {
-			JSONObject notify = new JSONObject();
-			switch (event) {
-			case "recommendSearch":
-				notify.put("name", "瀹屾垚涓�娆℃櫤鑳芥悳绱�");
-				break;
-			case "scanGoods":
-				notify.put("name", "瀹屾垚涓�娆″晢鍝佹祻瑙�");
-				break;
-			case "scanTBCart":
-				notify.put("name", "瀹屾垚涓�娆¤喘鐗╄溅娴忚");
-				break;
+		if (record != null) {
+			JSONObject notifyData = new JSONObject();
+			if (TaskUniqueKeyEnum.recommendSearch.name().equalsIgnoreCase(event)
+					|| TaskUniqueKeyEnum.scanGoods.name().equalsIgnoreCase(event)
+					|| TaskUniqueKeyEnum.scanTBCart.name().equalsIgnoreCase(event)) {
+				JSONObject notify = new JSONObject();
+				if (TaskUniqueKeyEnum.recommendSearch.name().equalsIgnoreCase(event))
+					notify.put("name", "瀹屾垚涓�娆℃櫤鑳芥悳绱�");
+				else if (TaskUniqueKeyEnum.scanGoods.name().equalsIgnoreCase(event))
+					notify.put("name", "瀹屾垚涓�娆″晢鍝佹祻瑙�");
+				else if (TaskUniqueKeyEnum.scanTBCart.name().equalsIgnoreCase(event))
+					notify.put("name", "瀹屾垚涓�娆¤喘鐗╄溅娴忚");
+
+				notify.put("score", String.format("+%s閲戝竵", record.getGoldCoin()));
+				notifyData.put("notify", notify);
 			}
-			notify.put("score", String.format("+%s閲戝竵", record.getGoldCoin()));
-			data.put("notify", notify);
+			out.print(JsonUtil.loadTrueResult(notifyData));
+		} else {
+			out.print(JsonUtil.loadFalseResult(""));
 		}
-		out.print(JsonUtil.loadTrueResult(data));
 	}
 
 	/**

--
Gitblit v1.8.0