|
|
@ -102,6 +102,9 @@ public class AuthenticationService { |
|
|
|
// 如限制机器发送遥控指令
|
|
|
|
// 如限制机器发送遥控指令
|
|
|
|
if(ctrlAuth.getIsLimitMachine().intValue() == 1) { |
|
|
|
if(ctrlAuth.getIsLimitMachine().intValue() == 1) { |
|
|
|
SessionContentVO sessionContent = (SessionContentVO) redisTemplate.opsForHash().get(RedisKeyConstants.SESSION_CONTENT_KEY, sessionId); |
|
|
|
SessionContentVO sessionContent = (SessionContentVO) redisTemplate.opsForHash().get(RedisKeyConstants.SESSION_CONTENT_KEY, sessionId); |
|
|
|
|
|
|
|
Assert.isTrue(Func.isNotEmpty(sessionContent),() -> { |
|
|
|
|
|
|
|
throw new ServiceException("获取问题机器码失败,校验不通过!"); |
|
|
|
|
|
|
|
}); |
|
|
|
String machineCode = sessionContent.getMachineCode(); |
|
|
|
String machineCode = sessionContent.getMachineCode(); |
|
|
|
Assert.isTrue(StringUtil.isNotBlank(machineCode) && Func.isNotEmpty(machineCode) ,() -> { |
|
|
|
Assert.isTrue(StringUtil.isNotBlank(machineCode) && Func.isNotEmpty(machineCode) ,() -> { |
|
|
|
throw new ServiceException("获取问题机器码失败,校验不通过!"); |
|
|
|
throw new ServiceException("获取问题机器码失败,校验不通过!"); |
|
|
|