package com.java110.boot.smo.msg.impl;
|
|
import com.alibaba.fastjson.JSONObject;
|
import com.java110.boot.smo.DefaultAbstractComponentSMO;
|
import com.java110.boot.smo.msg.IReadMsgSMO;
|
import com.java110.core.context.IPageData;
|
import com.java110.entity.component.ComponentValidateResult;
|
import com.java110.utils.constant.PrivilegeCodeConstant;
|
import com.java110.utils.exception.SMOException;
|
import com.java110.utils.util.Assert;
|
import com.java110.utils.util.BeanConvertUtil;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.http.HttpMethod;
|
import org.springframework.http.ResponseEntity;
|
import org.springframework.stereotype.Service;
|
import org.springframework.web.client.RestTemplate;
|
|
import java.util.Map;
|
|
/**
|
* 阅读消息
|
*/
|
@Service("readMsgSMOImpl")
|
public class ReadMsgSMOImpl extends DefaultAbstractComponentSMO implements IReadMsgSMO {
|
|
@Autowired
|
private RestTemplate restTemplate;
|
|
@Override
|
public ResponseEntity<String> readMsg(IPageData pd) throws SMOException {
|
return businessProcess(pd);
|
}
|
|
@Override
|
protected void validate(IPageData pd, JSONObject paramIn) {
|
|
//super.validatePageInfo(pd);
|
|
Assert.hasKeyAndValue(paramIn, "msgId", "请求报文中未包含消息ID");
|
|
super.checkUserHasPrivilege(pd, restTemplate, PrivilegeCodeConstant.HAS_LIST_NOTICE);
|
}
|
|
@Override
|
protected ResponseEntity<String> doBusinessProcess(IPageData pd, JSONObject paramIn) {
|
ComponentValidateResult result = super.validateStoreStaffCommunityRelationship(pd, restTemplate);
|
|
Map paramMap = BeanConvertUtil.beanCovertMap(result);
|
paramIn.putAll(paramMap);
|
//将用户ID刷掉
|
// paramIn.remove("userId");
|
|
String apiUrl = "msg.readMsg";
|
|
|
ResponseEntity<String> responseEntity = this.callCenterService(restTemplate, pd, paramIn.toJSONString(),
|
apiUrl,
|
HttpMethod.POST);
|
|
return responseEntity;
|
}
|
|
|
|
public RestTemplate getRestTemplate() {
|
return restTemplate;
|
}
|
|
public void setRestTemplate(RestTemplate restTemplate) {
|
this.restTemplate = restTemplate;
|
}
|
}
|