Ver código fonte

优化自登陆问题

wuxw 2 anos atrás
pai
commit
71f3119ea6

+ 0 - 81
service-user/src/main/java/com/java110/user/cmd/user/OwnerUserLoginByOpenIdCmd.java

@@ -185,87 +185,6 @@ public class OwnerUserLoginByOpenIdCmd extends Cmd {
         return newKey;
     }
 
-    /**
-     * 验证码登录,判断是否是否业主,并且是否绑定关系 如果没有 自动绑定关系
-     *
-     * @param reqJson
-     * @param context
-     */
-    private List<UserDto> ifOwnerLoginByPhone(JSONObject reqJson, ICmdDataFlowContext context) {
-        if (!reqJson.containsKey("loginByPhone") || !reqJson.getBoolean("loginByPhone")) {
-            return null;
-        }
-        String appId = context.getReqHeaders().get("app-id");
-
-        //todo 业主手机端
-        if (!AppDto.WECHAT_OWNER_APP_ID.equals(appId)
-                && !AppDto.WECHAT_MINA_OWNER_APP_ID.equals(appId)
-                && !AppDto.OWNER_APP_APP_ID.equals(appId)) {
-            return null;
-        }
-
-        if (StringUtil.isEmpty(reqJson.getString("userName"))) {
-            return null;
-        }
-
-        // todo 查询业主或成员
-        OwnerDto ownerDto = new OwnerDto();
-        ownerDto.setLink(reqJson.getString("userName"));
-        ownerDto.setPage(1);
-        ownerDto.setRow(1);
-        List<OwnerDto> ownerDtos = ownerV1InnerServiceSMOImpl.queryOwners(ownerDto);
-
-        // 说明业主不存在 直接返回跑异常
-        if (ownerDtos == null || ownerDtos.size() < 1) {
-            return null;
-        }
-
-        CommunityDto communityDto = new CommunityDto();
-        communityDto.setCommunityId(ownerDtos.get(0).getCommunityId());
-        List<CommunityDto> communityDtos = communityInnerServiceSMOImpl.queryCommunitys(communityDto);
-        Assert.listNotNull(communityDtos, "未包含小区信息");
-        CommunityDto tmpCommunityDto = communityDtos.get(0);
-
-        UserPo userPo = new UserPo();
-        userPo.setUserId(GenerateCodeFactory.getUserId());
-        userPo.setName(ownerDtos.get(0).getName());
-        userPo.setTel(ownerDtos.get(0).getLink());
-        userPo.setPassword(AuthenticationFactory.passwdMd5(reqJson.getString("password")));
-        userPo.setLevelCd(UserLevelConstant.USER_LEVEL_ORDINARY);
-        userPo.setAge(ownerDtos.get(0).getAge());
-        userPo.setAddress(ownerDtos.get(0).getAddress());
-        userPo.setSex(ownerDtos.get(0).getSex());
-        int flag = userV1InnerServiceSMOImpl.saveUser(userPo);
-        if (flag < 1) {
-            throw new CmdException("注册失败");
-        }
-
-        OwnerAppUserPo ownerAppUserPo = new OwnerAppUserPo();
-        //状态类型,10000 审核中,12000 审核成功,13000 审核失败
-        ownerAppUserPo.setState("12000");
-        ownerAppUserPo.setAppTypeCd("10010");
-        ownerAppUserPo.setAppUserId(GenerateCodeFactory.getGeneratorId(GenerateCodeFactory.CODE_PREFIX_appUserId));
-        ownerAppUserPo.setMemberId(ownerDtos.get(0).getMemberId());
-        ownerAppUserPo.setCommunityName(tmpCommunityDto.getName());
-        ownerAppUserPo.setCommunityId(ownerDtos.get(0).getCommunityId());
-        ownerAppUserPo.setAppUserName(ownerDtos.get(0).getName());
-        ownerAppUserPo.setIdCard(ownerDtos.get(0).getIdCard());
-        ownerAppUserPo.setAppType("WECHAT");
-        ownerAppUserPo.setLink(ownerDtos.get(0).getLink());
-        ownerAppUserPo.setUserId(userPo.getUserId());
-        ownerAppUserPo.setOpenId("-1");
-
-        flag = ownerAppUserV1InnerServiceSMOImpl.saveOwnerAppUser(ownerAppUserPo);
-        if (flag < 1) {
-            throw new CmdException("添加用户业主关系失败");
-        }
-
-        UserDto userDto = new UserDto();
-        userDto.setUserId(userPo.getUserId());
-        List<UserDto> userDtos = userInnerServiceSMOImpl.getUsers(userDto);
-        return userDtos;
-    }
-
     private UserAttrDto getCurrentUserAttrDto(List<UserAttrDto> userAttrDtos, String specCd) {
         if (userAttrDtos == null) {
             return null;