package com.java110.job.adapt.roomRenovation;
|
|
import com.alibaba.fastjson.JSON;
|
import com.alibaba.fastjson.JSONObject;
|
import com.java110.core.factory.WechatFactory;
|
import com.java110.dto.community.CommunityDto;
|
import com.java110.dto.owner.OwnerAppUserDto;
|
import com.java110.dto.owner.OwnerRoomRelDto;
|
import com.java110.dto.smallWeChat.SmallWeChatDto;
|
import com.java110.dto.smallWechatAttr.SmallWechatAttrDto;
|
import com.java110.entity.order.Business;
|
import com.java110.entity.wechat.Content;
|
import com.java110.entity.wechat.Data;
|
import com.java110.entity.wechat.PropertyFeeTemplateMessage;
|
import com.java110.intf.community.ICommunityInnerServiceSMO;
|
import com.java110.intf.store.ISmallWeChatInnerServiceSMO;
|
import com.java110.intf.store.ISmallWechatAttrInnerServiceSMO;
|
import com.java110.intf.user.IOwnerAppUserInnerServiceSMO;
|
import com.java110.intf.user.IOwnerRoomRelInnerServiceSMO;
|
import com.java110.job.adapt.DatabusAdaptImpl;
|
import com.java110.utils.cache.MappingCache;
|
import com.java110.utils.constant.MappingConstant;
|
import com.java110.utils.util.Assert;
|
import com.java110.utils.util.DateUtil;
|
import com.java110.utils.util.StringUtil;
|
import org.slf4j.Logger;
|
import com.java110.core.log.LoggerFactory;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.http.ResponseEntity;
|
import org.springframework.stereotype.Component;
|
import org.springframework.web.client.RestTemplate;
|
|
import java.util.List;
|
|
/**
|
* 装修跟踪适配器
|
*
|
* @author fqz
|
* @date 2021-04-10 14:30
|
*/
|
@Component(value = "machineRoomRenovation")
|
public class MachineRoomRenovation extends DatabusAdaptImpl {
|
|
@Autowired
|
private ICommunityInnerServiceSMO communityInnerServiceSMO;
|
|
@Autowired
|
private ISmallWeChatInnerServiceSMO smallWeChatInnerServiceSMOImpl;
|
|
@Autowired
|
private ISmallWechatAttrInnerServiceSMO smallWechatAttrInnerServiceSMOImpl;
|
|
@Autowired
|
private IOwnerRoomRelInnerServiceSMO ownerRoomRelInnerServiceSMOImpl;
|
|
@Autowired
|
private IOwnerAppUserInnerServiceSMO ownerAppUserInnerServiceSMO;
|
|
@Autowired
|
private RestTemplate outRestTemplate;
|
|
private static Logger logger = LoggerFactory.getLogger(MachineRoomRenovation.class);
|
|
//模板信息推送地址
|
private static String sendMsgUrl = "https://api.weixin.qq.com/cgi-bin/message/template/send?access_token=";
|
|
@Override
|
public void execute(Business business, List<Business> businesses) {
|
JSONObject data = business.getData();
|
//查询小区信息
|
CommunityDto communityDto = new CommunityDto();
|
communityDto.setCommunityId(data.getString("communityId"));
|
List<CommunityDto> communityDtos = communityInnerServiceSMO.queryCommunitys(communityDto);
|
//获取房屋id
|
String roomId = data.getString("roomId");
|
//获取房屋名称
|
String roomName = data.getString("roomName");
|
JSONObject paramIn = new JSONObject();
|
paramIn.put("roomName", roomName);
|
paramIn.put("roomId", roomId);
|
//给业主推送消息
|
publishMsg(paramIn, communityDtos.get(0));
|
}
|
|
/**
|
* 新增装修跟踪记录给业主推送消息
|
*
|
* @param paramIn
|
* @param communityDto
|
*/
|
private void publishMsg(JSONObject paramIn, CommunityDto communityDto) {
|
//查询公众号配置
|
SmallWeChatDto smallWeChatDto = new SmallWeChatDto();
|
smallWeChatDto.setWeChatType("1100");
|
smallWeChatDto.setObjType(SmallWeChatDto.OBJ_TYPE_COMMUNITY);
|
smallWeChatDto.setObjId(communityDto.getCommunityId());
|
List<SmallWeChatDto> smallWeChatDtos = smallWeChatInnerServiceSMOImpl.querySmallWeChats(smallWeChatDto);
|
if (smallWeChatDto == null || smallWeChatDtos.size() <= 0) {
|
logger.info("未配置微信公众号信息,定时任务执行结束");
|
return;
|
}
|
SmallWeChatDto weChatDto = smallWeChatDtos.get(0);
|
SmallWechatAttrDto smallWechatAttrDto = new SmallWechatAttrDto();
|
smallWechatAttrDto.setCommunityId(communityDto.getCommunityId());
|
smallWechatAttrDto.setWechatId(weChatDto.getWeChatId());
|
smallWechatAttrDto.setSpecCd(SmallWechatAttrDto.SPEC_CD_WECHAT_TEMPLATE);
|
List<SmallWechatAttrDto> smallWechatAttrDtos = smallWechatAttrInnerServiceSMOImpl.querySmallWechatAttrs(smallWechatAttrDto);
|
if (smallWechatAttrDtos == null || smallWechatAttrDtos.size() <= 0) {
|
logger.info("未配置微信公众号消息模板");
|
return;
|
}
|
String templateId = smallWechatAttrDtos.get(0).getValue();
|
String accessToken = WechatFactory.getAccessToken(weChatDto.getAppId(), weChatDto.getAppSecret());
|
if (StringUtil.isEmpty(accessToken)) {
|
logger.info("推送微信模板,获取accessToken失败:{}", accessToken);
|
return;
|
}
|
//获取房屋id
|
String roomId = paramIn.getString("roomId");
|
OwnerRoomRelDto ownerRoomRelDto = new OwnerRoomRelDto();
|
ownerRoomRelDto.setRoomId(roomId);
|
//根据房屋id查询房屋业主关系表
|
List<OwnerRoomRelDto> ownerRoomRelDtos = ownerRoomRelInnerServiceSMOImpl.queryOwnerRoomRels(ownerRoomRelDto);
|
Assert.listOnlyOne(ownerRoomRelDtos, "房屋业主信息错误");
|
//获取业主id
|
String ownerId = ownerRoomRelDtos.get(0).getOwnerId();
|
//根据业主id查询绑定业主
|
OwnerAppUserDto ownerAppUserDto = new OwnerAppUserDto();
|
ownerAppUserDto.setMemberId(ownerId);
|
ownerAppUserDto.setAppType("WECHAT");
|
//查询绑定业主
|
List<OwnerAppUserDto> ownerAppUserDtos = ownerAppUserInnerServiceSMO.queryOwnerAppUsers(ownerAppUserDto);
|
if (ownerAppUserDtos.size() > 0) {
|
//获取当前绑定业主所属小区
|
String communityId = ownerAppUserDtos.get(0).getCommunityId();
|
//通过小区id查询小区信息
|
CommunityDto community = new CommunityDto();
|
community.setCommunityId(communityId);
|
List<CommunityDto> communityDtos = communityInnerServiceSMO.queryCommunitys(community);
|
Assert.listOnlyOne(communityDtos, "业主小区信息不存在");
|
//获取物业联系方式
|
String tel = null;
|
if (communityDtos != null && communityDtos.size() > 0) {
|
tel = communityDtos.get(0).getTel();
|
}
|
//获取openId
|
String openId = ownerAppUserDtos.get(0).getOpenId();
|
String url = sendMsgUrl + accessToken;
|
Data data = new Data();
|
PropertyFeeTemplateMessage templateMessage = new PropertyFeeTemplateMessage();
|
templateMessage.setTemplate_id(templateId);
|
templateMessage.setTouser(openId);
|
data.setFirst(new Content("装修巡检通知"));
|
data.setKeyword1(new Content("关于房屋装修现场巡检通知"));
|
data.setKeyword2(new Content(DateUtil.getNow(DateUtil.DATE_FORMATE_STRING_A)));
|
data.setKeyword3(new Content("您的" + communityDtos.get(0).getName() + "小区" + paramIn.getString("roomName") + "房屋,有新的现场巡检记录,请您及时了解近期房屋装修状况!"));
|
data.setRemark(new Content("如有其它问题,请联系" + communityDtos.get(0).getName() + "客服,联系电话" + tel + ",感谢您的使用。"));
|
templateMessage.setData(data);
|
//获取业主公众号地址
|
String wechatUrl = MappingCache.getValue(MappingConstant.URL_DOMAIN,"OWNER_WECHAT_URL");
|
templateMessage.setUrl(wechatUrl);
|
logger.info("发送模板消息内容:{}", JSON.toJSONString(templateMessage));
|
ResponseEntity<String> responseEntity = outRestTemplate.postForEntity(url, JSON.toJSONString(templateMessage), String.class);
|
logger.info("微信模板返回内容:{}", responseEntity);
|
}
|
}
|
|
}
|