|
@@ -95,6 +95,46 @@ public class SysLoginService
|
|
|
return userInfo;
|
|
|
}
|
|
|
|
|
|
+ public LoginUser loginMini(String username, String password)
|
|
|
+ {
|
|
|
+ // 用户名或密码为空 错误
|
|
|
+ if (StringUtils.isAnyBlank(username, password))
|
|
|
+ {
|
|
|
+ recordLogService.recordLogininfor(username, Constants.LOGIN_FAIL, "用户/密码必须填写");
|
|
|
+ throw new ServiceException("用户/密码必须填写");
|
|
|
+ }
|
|
|
+ // 查询用户信息
|
|
|
+ R<LoginUser> userResult = remoteUserService.getUserInfo(username, SecurityConstants.INNER);
|
|
|
+
|
|
|
+ if (StringUtils.isNull(userResult) || StringUtils.isNull(userResult.getData()))
|
|
|
+ {
|
|
|
+ recordLogService.recordLogininfor(username, Constants.LOGIN_FAIL, "登录用户不存在");
|
|
|
+ throw new ServiceException("登录用户:" + username + " 不存在");
|
|
|
+ }
|
|
|
+
|
|
|
+ if (R.FAIL == userResult.getCode())
|
|
|
+ {
|
|
|
+ throw new ServiceException(userResult.getMsg());
|
|
|
+ }
|
|
|
+
|
|
|
+ LoginUser userInfo = userResult.getData();
|
|
|
+ SysUser user = userResult.getData().getSysUser();
|
|
|
+ if (UserStatus.DELETED.getCode().equals(user.getDelFlag()))
|
|
|
+ {
|
|
|
+ recordLogService.recordLogininfor(username, Constants.LOGIN_FAIL, "对不起,您的账号已被删除");
|
|
|
+ throw new ServiceException("对不起,您的账号:" + username + " 已被删除");
|
|
|
+ }
|
|
|
+ if (UserStatus.DISABLE.getCode().equals(user.getStatus()))
|
|
|
+ {
|
|
|
+ recordLogService.recordLogininfor(username, Constants.LOGIN_FAIL, "用户已停用,请联系管理员");
|
|
|
+ throw new ServiceException("对不起,您的账号:" + username + " 已停用");
|
|
|
+ }
|
|
|
+
|
|
|
+ passwordService.validate(user, password);
|
|
|
+ recordLogService.recordLogininfor(username, Constants.LOGIN_SUCCESS, "登录成功");
|
|
|
+ return userInfo;
|
|
|
+ }
|
|
|
+
|
|
|
public void logout(String loginName)
|
|
|
{
|
|
|
recordLogService.recordLogininfor(loginName, Constants.LOGOUT, "退出成功");
|