|
|
|
@ -8,6 +8,7 @@ import com.glxp.udi.admin.common.res.BaseResponse;
|
|
|
|
|
import com.glxp.udi.admin.entity.info.PlatformEntity;
|
|
|
|
|
import com.glxp.udi.admin.entity.inout.UnitMaintainEntity;
|
|
|
|
|
import com.glxp.udi.admin.req.info.PlatformLinkRequest;
|
|
|
|
|
import com.glxp.udi.admin.req.info.PlatformUserInfoRequest;
|
|
|
|
|
import com.glxp.udi.admin.res.PageSimpleResponse;
|
|
|
|
|
import com.glxp.udi.admin.res.info.PlatformLinkResponse;
|
|
|
|
|
import com.glxp.udi.admin.service.info.PlatformService;
|
|
|
|
@ -64,6 +65,44 @@ public class PlatformController {
|
|
|
|
|
return ResultVOUtils.success(pageSimpleResponse);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 测试账号连通性
|
|
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
@AuthRuleAnnotation("")
|
|
|
|
|
@PostMapping("/udims/platform/testUserInfo")
|
|
|
|
|
public BaseResponse testUserInfo(@RequestBody PlatformUserInfoRequest platformUserInfoRequest, BindingResult bindingResult) {
|
|
|
|
|
if (bindingResult.hasErrors()) {
|
|
|
|
|
return ResultVOUtils.error(ResultEnum.PARAM_VERIFY_FALL, bindingResult.getFieldError().getDefaultMessage());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
PlatformEntity platformEntity = platformService.getPlatformById(platformUserInfoRequest.getPlatformId());
|
|
|
|
|
if (null == platformEntity || StrUtil.isBlank(platformEntity.getHost())) {
|
|
|
|
|
return ResultVOUtils.error(ResultEnum.PARAM_VERIFY_FALL);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
String url = platformEntity.getHost() + "/verify";
|
|
|
|
|
Map<String, Object> map = new HashMap<>();
|
|
|
|
|
map.put("username", platformUserInfoRequest.getUsername());
|
|
|
|
|
map.put("password", platformUserInfoRequest.getPassword());
|
|
|
|
|
|
|
|
|
|
HttpHeaders headers = new HttpHeaders();
|
|
|
|
|
headers.setContentType(MediaType.APPLICATION_JSON_UTF8);
|
|
|
|
|
|
|
|
|
|
HttpEntity<String> request = new HttpEntity<>(JSON.toJSONString(map), headers);
|
|
|
|
|
RestTemplate restTemplate = new RestTemplate();
|
|
|
|
|
log.error(url);
|
|
|
|
|
|
|
|
|
|
String result = restTemplate.postForObject(url, request, String.class, map);
|
|
|
|
|
log.error(result);
|
|
|
|
|
Map<String, Object> object = JSON.parseObject(result, Map.class);
|
|
|
|
|
if (!String.valueOf(object.get("code")).equals("20000")) {
|
|
|
|
|
return ResultVOUtils.error(ResultEnum.PARAM_VERIFY_FALL, String.valueOf(object.get("message")));
|
|
|
|
|
}
|
|
|
|
|
return ResultVOUtils.success();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@AuthRuleAnnotation("")
|
|
|
|
|
@PostMapping("/udims/platform/link")
|
|
|
|
|
public BaseResponse update(@RequestBody UnitMaintainEntity unitMaintainEntity) {
|
|
|
|
|