| | |
| | | package com.java110.web.core; |
| | | |
| | | import com.alibaba.fastjson.JSONObject; |
| | | import com.java110.common.constant.CommonConstant; |
| | | 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.web.smo.impl.LoginServiceSMOImpl; |
| | | import org.slf4j.Logger; |
| | | import org.slf4j.LoggerFactory; |
| | | import org.springframework.http.HttpMethod; |
| | | import org.springframework.http.HttpStatus; |
| | | import org.springframework.http.ResponseEntity; |
| | | import org.springframework.web.client.RestTemplate; |
| | | |
| | | import java.lang.reflect.Method; |
| | | |
| | |
| | | return responseEntity; |
| | | } |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 获取用户信息 |
| | | * @param pd |
| | | * @param restTemplate |
| | | * @return |
| | | */ |
| | | 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); |
| | | // 过滤返回报文中的字段,只返回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":""} |
| | | |
| | | return responseEntity; |
| | | |
| | | } |
| | | |
| | | /** |
| | | * 查询商户信息 |
| | | * @return |
| | | */ |
| | | 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); |
| | | |
| | | return responseEntity; |
| | | } |
| | | |
| | | /** |
| | | * 检查用户是否有权限 |
| | | * @param pd |
| | | * @param restTemplate |
| | | * @param privilegeCode |
| | | */ |
| | | protected void checkUserHasPrivilege(IPageData pd,RestTemplate restTemplate,String privilegeCode){ |
| | | 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); |
| | | } |
| | | } |
| | | } |