package com.java110.user.cmd.owner;
|
|
import com.alibaba.fastjson.JSONObject;
|
import com.java110.core.annotation.Java110Cmd;
|
import com.java110.core.context.ICmdDataFlowContext;
|
import com.java110.core.event.cmd.Cmd;
|
import com.java110.core.event.cmd.CmdEvent;
|
import com.java110.core.factory.GenerateCodeFactory;
|
import com.java110.core.factory.SendSmsFactory;
|
import com.java110.dto.community.CommunityDto;
|
import com.java110.dto.msg.SmsDto;
|
import com.java110.dto.owner.OwnerAppUserDto;
|
import com.java110.dto.owner.OwnerDto;
|
import com.java110.dto.user.UserDto;
|
import com.java110.intf.common.IFileInnerServiceSMO;
|
import com.java110.intf.common.ISmsInnerServiceSMO;
|
import com.java110.intf.community.ICommunityInnerServiceSMO;
|
import com.java110.intf.user.IOwnerAppUserInnerServiceSMO;
|
import com.java110.intf.user.IOwnerAppUserV1InnerServiceSMO;
|
import com.java110.intf.user.IOwnerInnerServiceSMO;
|
import com.java110.intf.user.IUserInnerServiceSMO;
|
import com.java110.po.owner.OwnerAppUserPo;
|
import com.java110.utils.cache.MappingCache;
|
import com.java110.utils.constant.MappingConstant;
|
import com.java110.utils.exception.CmdException;
|
import com.java110.utils.util.Assert;
|
import com.java110.utils.util.BeanConvertUtil;
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import java.util.List;
|
import java.util.Map;
|
|
@Java110Cmd(serviceCode = "owner.appUserBindingOwner")
|
public class AppUserBindingOwnerCmd extends Cmd {
|
|
@Autowired
|
private IFileInnerServiceSMO fileInnerServiceSMOImpl;
|
|
@Autowired
|
private ISmsInnerServiceSMO smsInnerServiceSMOImpl;
|
|
@Autowired
|
private ICommunityInnerServiceSMO communityInnerServiceSMOImpl;
|
|
@Autowired
|
private IOwnerInnerServiceSMO ownerInnerServiceSMOImpl;
|
|
@Autowired
|
private IOwnerAppUserInnerServiceSMO ownerAppUserInnerServiceSMOImpl;
|
|
@Autowired
|
private IUserInnerServiceSMO userInnerServiceSMOImpl;
|
|
@Autowired
|
private IOwnerAppUserV1InnerServiceSMO ownerAppUserV1InnerServiceSMOImpl;
|
|
@Override
|
public void validate(CmdEvent event, ICmdDataFlowContext context, JSONObject reqJson) throws CmdException {
|
Assert.hasKeyAndValue(reqJson, "communityName", "未包含小区名称");
|
Assert.hasKeyAndValue(reqJson, "areaCode", "未包含小区地区");
|
Assert.hasKeyAndValue(reqJson, "appUserName", "未包含用户名称");
|
Assert.hasKeyAndValue(reqJson, "idCard", "未包含身份证号");
|
Assert.hasKeyAndValue(reqJson, "link", "未包含联系电话");
|
Assert.hasKeyAndValue(reqJson, "msgCode", "未包含联系电话验证码");
|
|
//判断是否有用户ID
|
Map<String, String> headers = context.getReqHeaders();
|
|
Assert.hasKeyAndValue(headers, "user_id", "请求头中未包含用户信息");
|
SmsDto smsDto = new SmsDto();
|
smsDto.setTel(reqJson.getString("link"));
|
smsDto.setCode(reqJson.getString("msgCode"));
|
smsDto = smsInnerServiceSMOImpl.validateCode(smsDto);
|
|
if (!smsDto.isSuccess() && "ON".equals(MappingCache.getValue(MappingConstant.SMS_DOMAIN,SendSmsFactory.SMS_SEND_SWITCH))) {
|
throw new IllegalArgumentException(smsDto.getMsg());
|
}
|
}
|
|
@Override
|
public void doCmd(CmdEvent event, ICmdDataFlowContext context, JSONObject reqJson) throws CmdException {
|
|
Map<String, String> headers = context.getReqHeaders();
|
|
String userId = headers.get("user_id");
|
UserDto userDto = new UserDto();
|
userDto.setUserId(userId);
|
List<UserDto> userDtos = userInnerServiceSMOImpl.getUsers(userDto);
|
|
Assert.listOnlyOne(userDtos, "未找到相应用户信息,或查询到多条");
|
|
String openId = userDtos.get(0).getOpenId();
|
|
Assert.hasLength(openId, "该用户不是能力开放用户");
|
|
OwnerAppUserDto ownerAppUserDto = BeanConvertUtil.covertBean(reqJson, OwnerAppUserDto.class);
|
ownerAppUserDto.setStates(new String[]{"10000", "11000", "12000"});
|
|
List<OwnerAppUserDto> ownerAppUserDtos = ownerAppUserInnerServiceSMOImpl.queryOwnerAppUsers(ownerAppUserDto);
|
|
//Assert.listOnlyOne(ownerAppUserDtos, "已经申请过入驻小区");
|
if (ownerAppUserDtos != null && ownerAppUserDtos.size() > 0) {
|
throw new IllegalArgumentException("已经申请过绑定业主");
|
}
|
|
//查询小区是否存在
|
CommunityDto communityDto = new CommunityDto();
|
communityDto.setCityCode(reqJson.getString("areaCode"));
|
communityDto.setName(reqJson.getString("communityName"));
|
communityDto.setState("1100");
|
List<CommunityDto> communityDtos = communityInnerServiceSMOImpl.queryCommunitys(communityDto);
|
|
Assert.listOnlyOne(communityDtos, "填写小区信息错误");
|
|
CommunityDto tmpCommunityDto = communityDtos.get(0);
|
|
OwnerDto ownerDto = new OwnerDto();
|
ownerDto.setCommunityId(tmpCommunityDto.getCommunityId());
|
ownerDto.setIdCard(reqJson.getString("idCard"));
|
ownerDto.setName(reqJson.getString("appUserName"));
|
ownerDto.setLink(reqJson.getString("link"));
|
List<OwnerDto> ownerDtos = ownerInnerServiceSMOImpl.queryOwnerMembers(ownerDto);
|
|
Assert.listOnlyOne(ownerDtos, "填写业主信息错误");
|
|
OwnerDto tmpOwnerDto = ownerDtos.get(0);
|
|
reqJson.put("openId", openId);
|
reqJson.put("userId", userId);
|
|
//添加小区楼
|
JSONObject businessOwnerAppUser = new JSONObject();
|
businessOwnerAppUser.putAll(reqJson);
|
//状态类型,10000 审核中, 11000 待认证 ,12000 审核成功,13000 审核失败
|
businessOwnerAppUser.put("state", OwnerAppUserDto.STATE_AUDIT_SUCCESS);
|
businessOwnerAppUser.put("appTypeCd", "10010");
|
businessOwnerAppUser.put("appUserId", GenerateCodeFactory.getGeneratorId(GenerateCodeFactory.CODE_PREFIX_appUserId));
|
businessOwnerAppUser.put("memberId", ownerDto.getMemberId());
|
businessOwnerAppUser.put("communityName", communityDto.getName());
|
businessOwnerAppUser.put("communityId", communityDto.getCommunityId());
|
businessOwnerAppUser.put("appUserName", ownerDto.getName());
|
businessOwnerAppUser.put("idCard", ownerDto.getIdCard());
|
businessOwnerAppUser.put("link", ownerDto.getLink());
|
businessOwnerAppUser.put("userId", reqJson.getString("userId"));
|
OwnerAppUserPo ownerAppUserPo = BeanConvertUtil.covertBean(businessOwnerAppUser, OwnerAppUserPo.class);
|
int flag = ownerAppUserV1InnerServiceSMOImpl.saveOwnerAppUser(ownerAppUserPo);
|
if (flag < 1) {
|
throw new IllegalArgumentException("保存业主失败");
|
}
|
}
|
}
|