|
@@ -39,40 +39,57 @@ public class VerificationController {
|
|
|
log.debug("输入参数: {}", tokenEntity);
|
|
|
User userEntity = aclService.verifySystem(tokenEntity.getToken(), tokenEntity.getFromSystem());
|
|
|
log.debug("输出用户信息: {}", userEntity);
|
|
|
- if (userEntity == null) {
|
|
|
- Map<String, String> map = new HashMap<>();
|
|
|
- if (tokenEntity.getFromSystem().equalsIgnoreCase("top")) {
|
|
|
- map.put("redirect", topRedirectUrl);
|
|
|
- } else if (tokenEntity.getFromSystem().equalsIgnoreCase("dop")) {
|
|
|
- map.put("redirect", dopRedirectUrl);
|
|
|
- } else {
|
|
|
- switch (tokenEntity.getSystem().trim().toLowerCase()) {
|
|
|
- case "daping":
|
|
|
- map.put("redirect", dopRedirectUrl);
|
|
|
- break;
|
|
|
- case "liucheng":
|
|
|
- case "fenxi":
|
|
|
- case "yuce":
|
|
|
- default:
|
|
|
- map.put("redirect", topRedirectUrl);
|
|
|
- break;
|
|
|
- }
|
|
|
+ Map<String, String> map = new HashMap<>();
|
|
|
+ if (tokenEntity.getFromSystem().equalsIgnoreCase("top")) {
|
|
|
+ map.put("redirect", topRedirectUrl);
|
|
|
+ } else if (tokenEntity.getFromSystem().equalsIgnoreCase("dop")) {
|
|
|
+ map.put("redirect", dopRedirectUrl);
|
|
|
+ } else {
|
|
|
+ switch (tokenEntity.getSystem().trim().toLowerCase()) {
|
|
|
+ case "daping":
|
|
|
+ map.put("redirect", dopRedirectUrl);
|
|
|
+ break;
|
|
|
+ case "liucheng":
|
|
|
+ case "fenxi":
|
|
|
+ case "yuce":
|
|
|
+ case "heidianku":
|
|
|
+ default:
|
|
|
+ map.put("redirect", topRedirectUrl);
|
|
|
+ break;
|
|
|
}
|
|
|
+ }
|
|
|
+ if (userEntity == null) {
|
|
|
return R.error().data(map).message("用户不存在");
|
|
|
} else {
|
|
|
switch (tokenEntity.getSystem().trim().toLowerCase()) {
|
|
|
case "liucheng":
|
|
|
return R.ok().data(new LiuchengUserVo(userEntity));
|
|
|
case "fenxi":
|
|
|
- return R.ok().data(new FenxiUserVo(userEntity));
|
|
|
+ FenxiUserVo fenxiUserVo = new FenxiUserVo(userEntity);
|
|
|
+ if (fenxiUserVo.getCity() == null) {
|
|
|
+ return R.error().data(map).message("用户不存在");
|
|
|
+ }
|
|
|
+ return R.ok().data(fenxiUserVo);
|
|
|
case "daping":
|
|
|
- return R.ok().data(new DapingUserVo(userEntity));
|
|
|
+ DapingUserVo dapingUserVo = new DapingUserVo(userEntity);
|
|
|
+ if (dapingUserVo.getCity() == null) {
|
|
|
+ return R.error().data(map).message("用户不存在");
|
|
|
+ }
|
|
|
+ return R.ok().data(dapingUserVo);
|
|
|
case "yuce":
|
|
|
- return R.ok().data(new YuceUserVo(userEntity));
|
|
|
+ YuceUserVo yuceUserVo = new YuceUserVo(userEntity);
|
|
|
+ if (yuceUserVo.getCity() == null) {
|
|
|
+ return R.error().data(map).message("用户不存在");
|
|
|
+ }
|
|
|
+ return R.ok().data(yuceUserVo);
|
|
|
case "heidianku":
|
|
|
- return R.ok().data(new HeidiankuUserVo(userEntity));
|
|
|
+ HeidiankuUserVo heidiankuUserVo = new HeidiankuUserVo(userEntity);
|
|
|
+ if (heidiankuUserVo.getCity() == null) {
|
|
|
+ return R.error().data(map).message("用户不存在");
|
|
|
+ }
|
|
|
+ return R.ok().data(heidiankuUserVo);
|
|
|
default:
|
|
|
- return R.error().message("当前允许的system为:liucheng/fenxi/daping/yuce");
|
|
|
+ return R.error().message("当前允许的system为: liucheng/fenxi/daping/yuce/heidianku");
|
|
|
}
|
|
|
}
|
|
|
}
|