From 9e29441646434d9f54a2c3e855a724633885d8a4 Mon Sep 17 00:00:00 2001
From: wuxw <928255095@qq.com>
Date: 星期二, 13 八月 2019 19:43:49 +0800
Subject: [PATCH] 缓存开发测试完成
---
WebService/src/main/java/com/java110/web/core/BaseComponentSMO.java | 181 +++++++++++++++++++++++++++++++++++++++-----
1 files changed, 159 insertions(+), 22 deletions(-)
diff --git a/WebService/src/main/java/com/java110/web/core/BaseComponentSMO.java b/WebService/src/main/java/com/java110/web/core/BaseComponentSMO.java
index 0bedf62..49f622a 100644
--- a/WebService/src/main/java/com/java110/web/core/BaseComponentSMO.java
+++ b/WebService/src/main/java/com/java110/web/core/BaseComponentSMO.java
@@ -1,14 +1,18 @@
package com.java110.web.core;
+import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
-import com.java110.common.constant.CommonConstant;
+import com.java110.common.cache.MappingCache;
+import com.java110.common.constant.MappingConstant;
+import com.java110.common.constant.ResponseConstant;
import com.java110.common.constant.ServiceConstant;
import com.java110.common.exception.SMOException;
import com.java110.common.factory.ApplicationContextFactory;
import com.java110.common.util.Assert;
import com.java110.core.base.smo.BaseServiceSMO;
import com.java110.core.context.IPageData;
-import com.java110.web.smo.impl.LoginServiceSMOImpl;
+import com.java110.entity.component.ComponentValidateResult;
+import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.http.HttpMethod;
@@ -17,30 +21,34 @@
import org.springframework.web.client.RestTemplate;
import java.lang.reflect.Method;
+import java.util.Map;
/**
* Created by wuxw on 2019/3/22.
*/
public class BaseComponentSMO extends BaseServiceSMO {
- private final static Logger logger = LoggerFactory.getLogger(BaseComponentSMO.class);
+ private static Logger logger = LoggerFactory.getLogger(BaseComponentSMO.class);
+
+ protected static final int MAX_ROW = 50;
/**
* 璋冪敤缁勪欢
- * @param componentCode 缁勪欢缂栫爜
+ *
+ * @param componentCode 缁勪欢缂栫爜
* @param componentMethod 缁勪欢鏂规硶
* @param pd
* @return
*/
- protected ResponseEntity<String> invokeComponent(String componentCode,String componentMethod,IPageData pd){
+ protected ResponseEntity<String> invokeComponent(String componentCode, String componentMethod, IPageData pd) {
- logger.debug("寮�濮嬭皟鐢ㄧ粍浠讹細{}",pd.toString());
+ logger.debug("寮�濮嬭皟鐢ㄧ粍浠讹細{}", pd.toString());
ResponseEntity<String> responseEntity = null;
Object componentInstance = ApplicationContextFactory.getBean(componentCode);
- Assert.notNull(componentInstance,"鏈壘鍒扮粍浠跺搴旂殑澶勭悊绫伙紝璇风‘璁� "+componentCode);
+ Assert.notNull(componentInstance, "鏈壘鍒扮粍浠跺搴旂殑澶勭悊绫伙紝璇风‘璁� " + componentCode);
try {
Method cMethod = componentInstance.getClass().getDeclaredMethod(componentMethod, IPageData.class);
@@ -50,11 +58,11 @@
logger.debug("缁勪欢缂栫爜{}锛岀粍浠舵柟娉晎}锛宲d 涓簕}", componentCode, componentMethod, pd.toString());
responseEntity = (ResponseEntity<String>) cMethod.invoke(componentInstance, pd);
- }catch (Exception e){
- logger.error("璋冪敤缁勪欢澶辫触锛�",e);
- responseEntity = new ResponseEntity<String>("璋冪敤缁勪欢"+componentCode+",缁勪欢鏂规硶"+componentMethod+"澶辫触锛�"+e.getMessage(),
+ } catch (Exception e) {
+ logger.error("璋冪敤缁勪欢澶辫触锛�", e);
+ responseEntity = new ResponseEntity<String>("璋冪敤缁勪欢" + componentCode + ",缁勪欢鏂规硶" + componentMethod + "澶辫触锛�" + e.getMessage(),
HttpStatus.INTERNAL_SERVER_ERROR);
- }finally {
+ } finally {
return responseEntity;
}
}
@@ -62,14 +70,15 @@
/**
* 鑾峰彇鐢ㄦ埛淇℃伅
+ *
* @param pd
* @param restTemplate
* @return
*/
- protected ResponseEntity<String> getUserInfo(IPageData pd, RestTemplate restTemplate){
- Assert.hasLength(pd.getUserId(),"鐢ㄦ埛鏈櫥褰曡鍏堢櫥褰�");
+ protected ResponseEntity<String> getUserInfo(IPageData pd, RestTemplate restTemplate) {
+ Assert.hasLength(pd.getUserId(), "鐢ㄦ埛鏈櫥褰曡鍏堢櫥褰�");
ResponseEntity<String> responseEntity = null;
- responseEntity = this.callCenterService(restTemplate,pd,"", ServiceConstant.SERVICE_API_URL+"/api/query.user.userInfo?userId="+pd.getUserId(), HttpMethod.GET);
+ responseEntity = this.callCenterService(restTemplate, pd, "", ServiceConstant.SERVICE_API_URL + "/api/query.user.userInfo?userId=" + pd.getUserId(), HttpMethod.GET);
// 杩囨护杩斿洖鎶ユ枃涓殑瀛楁锛屽彧杩斿洖name瀛楁
//{"address":"","orderTypeCd":"Q","serviceCode":"","responseTime":"20190401194712","sex":"","localtionCd":"","userId":"302019033054910001","levelCd":"00","transactionId":"-1","dataFlowId":"-1","response":{"code":"0000","message":"鎴愬姛"},"name":"996icu","tel":"18909780341","bId":"-1","businessType":"","email":""}
@@ -79,27 +88,155 @@
/**
* 鏌ヨ鍟嗘埛淇℃伅
+ *
* @return
*/
- protected ResponseEntity<String> getStoreInfo(IPageData pd, RestTemplate restTemplate){
- Assert.hasLength(pd.getUserId(),"鐢ㄦ埛鏈櫥褰曡鍏堢櫥褰�");
+ protected ResponseEntity<String> getStoreInfo(IPageData pd, RestTemplate restTemplate) {
+ Assert.hasLength(pd.getUserId(), "鐢ㄦ埛鏈櫥褰曡鍏堢櫥褰�");
ResponseEntity<String> responseEntity = null;
- responseEntity = this.callCenterService(restTemplate,pd,"", ServiceConstant.SERVICE_API_URL+"/api/query.store.byuser?userId="+pd.getUserId(), HttpMethod.GET);
+ responseEntity = this.callCenterService(restTemplate, pd, "", ServiceConstant.SERVICE_API_URL + "/api/query.store.byuser?userId=" + pd.getUserId(), HttpMethod.GET);
return responseEntity;
}
/**
+ * 鏌ヨ鍟嗘埛淇℃伅
+ *
+ * @return
+ */
+ protected void checkStoreEnterCommunity(IPageData pd, String storeId, String storeTypeCd, String communityId, RestTemplate restTemplate) {
+ Assert.hasLength(pd.getUserId(), "鐢ㄦ埛鏈櫥褰曡鍏堢櫥褰�");
+ ResponseEntity<String> responseEntity = null;
+ responseEntity = this.callCenterService(restTemplate, pd, "",
+ ServiceConstant.SERVICE_API_URL + "/api/query.myCommunity.byMember?memberId=" + storeId + "&memberTypeCd="
+ + MappingCache.getValue(MappingConstant.DOMAIN_STORE_TYPE_2_COMMUNITY_MEMBER_TYPE, storeTypeCd), HttpMethod.GET);
+ if (responseEntity.getStatusCode() != HttpStatus.OK) {
+ throw new SMOException(ResponseConstant.RESULT_CODE_ERROR, "杩樻湭鍏ラ┗灏忓尯锛岃鍏堝叆椹诲皬鍖�");
+ }
+
+ Assert.jsonObjectHaveKey(responseEntity.getBody().toString(), "communitys", "杩樻湭鍏ラ┗灏忓尯锛岃鍏堝叆椹诲皬鍖�");
+
+ JSONObject community = JSONObject.parseObject(responseEntity.getBody().toString());
+
+ JSONArray communitys = community.getJSONArray("communitys");
+
+ if (communitys == null || communitys.size() == 0) {
+ throw new SMOException(ResponseConstant.RESULT_CODE_ERROR, "杩樻湭鍏ラ┗灏忓尯锛岃鍏堝叆椹诲皬鍖�");
+ }
+
+ JSONObject currentCommunity = getCurrentCommunity(communitys, communityId);
+
+ if (currentCommunity == null) {
+ throw new SMOException(ResponseConstant.RESULT_CODE_ERROR, "浼犲叆灏忓尯ID闈炴硶锛岃姝e父鎿嶄綔");
+ }
+
+ }
+
+ private JSONObject getCurrentCommunity(JSONArray communitys, String communityId) {
+ for (int communityIndex = 0; communityIndex < communitys.size(); communityIndex++) {
+ if (communityId.equals(communitys.getJSONObject(communityIndex).getString("communityId"))) {
+ return communitys.getJSONObject(communityIndex);
+ }
+ }
+
+ return null;
+ }
+
+ /**
* 妫�鏌ョ敤鎴锋槸鍚︽湁鏉冮檺
+ *
* @param pd
* @param restTemplate
- * @param privilegeCode
+ * @param privilegeCodes
*/
- protected void checkUserHasPrivilege(IPageData pd,RestTemplate restTemplate,String privilegeCode){
+ protected void checkUserHasPrivilege(IPageData pd, RestTemplate restTemplate, String ...privilegeCodes) {
ResponseEntity<String> responseEntity = null;
- responseEntity = this.callCenterService(restTemplate,pd,"", ServiceConstant.SERVICE_API_URL+"/api/check.user.hasPrivilege?userId="+pd.getUserId()+"&pId="+privilegeCode, HttpMethod.GET);
- if(responseEntity.getStatusCode() != HttpStatus.OK){
- throw new SMOException(1999,"鐢ㄦ埛娌℃湁鏉冮檺鎿嶄綔鏉冮檺"+privilegeCode);
+ for(String privilegeCode : privilegeCodes) {
+ responseEntity = this.callCenterService(restTemplate, pd, "", ServiceConstant.SERVICE_API_URL
+ + "/api/check.user.hasPrivilege?userId=" + pd.getUserId() + "&pId=" + privilegeCode, HttpMethod.GET);
+ if (responseEntity.getStatusCode() == HttpStatus.OK) {
+ //throw new SMOException(ResponseConstant.RESULT_CODE_ERROR, "鐢ㄦ埛娌℃湁鏉冮檺鎿嶄綔鏉冮檺" + privilegeCodes);
+ break;
+ }
}
+
+ if (responseEntity.getStatusCode() != HttpStatus.OK){
+ throw new SMOException(ResponseConstant.RESULT_CODE_ERROR, "鐢ㄦ埛娌℃湁鏉冮檺鎿嶄綔鏉冮檺" + privilegeCodes);
+ }
+ }
+
+ /**
+ * map 鍙傛暟杞� url get 鍙傛暟 闈炵┖鍊艰浆涓篻et鍙傛暟 绌哄�煎拷鐣�
+ *
+ * @param info map鏁版嵁
+ * @return url get 鍙傛暟 甯︼紵
+ */
+ protected String mapToUrlParam(Map info) {
+ String urlParam = "";
+ if (info == null || info.isEmpty()) {
+ return urlParam;
+ }
+
+ urlParam += "?";
+
+ for (Object key : info.keySet()) {
+ if (StringUtils.isEmpty(info.get(key) + "")) {
+ continue;
+ }
+
+ urlParam += (key + "=" + info.get(key) + "&");
+ }
+
+ urlParam = urlParam.endsWith("&") ? urlParam.substring(0, urlParam.length() - 1) : urlParam;
+
+ return urlParam;
+ }
+
+
+ /**
+ * 鏍¢獙 鍛樺伐 鍟嗘埛 灏忓尯 鍏崇郴
+ * <p>
+ * 鍒ゆ柇鍛樺伐鍜屽晢鎴锋槸鍚︽湁鍏崇郴锛� 鍟嗘埛鍜� 灏忓尯鏄惁鏈夊叧绯�
+ *
+ * @param pd 椤甸潰鏁版嵁灏佽
+ * @param restTemplate http璋冪敤宸ュ叿
+ * @return ComponentValidateResult 鏍¢獙瀵硅薄
+ */
+ protected ComponentValidateResult validateStoreStaffCommunityRelationship(IPageData pd, RestTemplate restTemplate) {
+
+ // 鏍¢獙 鍛樺伐鍜屽晢鎴锋槸鍚︽湁鍏崇郴
+ ResponseEntity responseEntity = getStoreInfo(pd, restTemplate);
+ if (responseEntity.getStatusCode() != HttpStatus.OK) {
+ throw new SMOException(ResponseConstant.RESULT_CODE_ERROR, responseEntity.getBody() + "");
+ }
+
+ Assert.jsonObjectHaveKey(responseEntity.getBody().toString(), "storeId", "鏍规嵁鐢ㄦ埛ID鏌ヨ鍟嗘埛ID澶辫触锛屾湭鍖呭惈storeId鑺傜偣");
+ Assert.jsonObjectHaveKey(responseEntity.getBody().toString(), "storeTypeCd", "鏍规嵁鐢ㄦ埛ID鏌ヨ鍟嗘埛绫诲瀷澶辫触锛屾湭鍖呭惈storeTypeCd鑺傜偣");
+
+ String storeId = JSONObject.parseObject(responseEntity.getBody().toString()).getString("storeId");
+ String storeTypeCd = JSONObject.parseObject(responseEntity.getBody().toString()).getString("storeTypeCd");
+
+ JSONObject paramIn = JSONObject.parseObject(pd.getReqData());
+
+ String communityId = "";
+ if (paramIn.containsKey("communityId")) {
+ communityId = paramIn.getString("communityId");
+ checkStoreEnterCommunity(pd, storeId, storeTypeCd, communityId, restTemplate);
+ }
+ return new ComponentValidateResult(storeId, storeTypeCd, communityId, pd.getUserId());
+ }
+
+ /**
+ * 鍒嗛〉淇℃伅鏍¢獙
+ * @param pd 椤甸潰鏁版嵁灏佽
+ */
+ protected void validatePageInfo(IPageData pd){
+
+ Assert.jsonObjectHaveKey(pd.getReqData(), "row", "璇锋眰鎶ユ枃涓湭鍖呭惈row鑺傜偣");
+ Assert.jsonObjectHaveKey(pd.getReqData(), "page", "璇锋眰鎶ユ枃涓湭鍖呭惈page鑺傜偣");
+
+ JSONObject paramIn = JSONObject.parseObject(pd.getReqData());
+ Assert.isInteger(paramIn.getString("row"), "row蹇呴』涓烘暟瀛�");
+ Assert.isInteger(paramIn.getString("page"), "page蹇呴』涓烘暟瀛�");
}
}
--
Gitblit v1.8.0