package com.finance.framework.web.service;
|
|
import com.finance.common.constant.CacheConstants;
|
import com.finance.common.constant.Constants;
|
import com.finance.common.constant.UserConstants;
|
import com.finance.common.core.domain.entity.SysUser;
|
import com.finance.common.core.domain.model.LoginUser;
|
import com.finance.common.core.redis.RedisCache;
|
import com.finance.common.enums.UserStatus;
|
import com.finance.common.exception.ServiceException;
|
import com.finance.common.exception.user.BlackListException;
|
import com.finance.common.exception.user.CaptchaException;
|
import com.finance.common.exception.user.CaptchaExpireException;
|
import com.finance.common.exception.user.UserNotExistsException;
|
import com.finance.common.exception.user.UserPasswordNotMatchException;
|
import com.finance.common.utils.DateUtils;
|
import com.finance.common.utils.MessageUtils;
|
import com.finance.common.utils.StringUtils;
|
import com.finance.common.utils.ip.IpUtils;
|
import com.finance.framework.manager.AsyncManager;
|
import com.finance.framework.manager.factory.AsyncFactory;
|
import com.finance.framework.security.context.AuthenticationContextHolder;
|
import com.finance.system.service.ISysConfigService;
|
import com.finance.system.service.ISysUserService;
|
import com.finance.system.service.TbDeptService;
|
import javax.annotation.Resource;
|
import lombok.extern.slf4j.Slf4j;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.security.authentication.AuthenticationManager;
|
import org.springframework.security.authentication.BadCredentialsException;
|
import org.springframework.security.authentication.UsernamePasswordAuthenticationToken;
|
import org.springframework.security.core.Authentication;
|
import org.springframework.stereotype.Component;
|
|
/**
|
* 登录校验方法
|
*
|
* @author ruoyi
|
*/
|
@Slf4j
|
@Component
|
public class SysLoginService {
|
|
@Autowired
|
private TokenService tokenService;
|
|
@Resource
|
private AuthenticationManager authenticationManager;
|
|
@Autowired
|
private RedisCache redisCache;
|
|
@Autowired
|
private ISysUserService userService;
|
|
@Autowired
|
private ISysConfigService configService;
|
@Autowired
|
private SysPermissionService permissionService;
|
@Autowired
|
private TbDeptService tbDeptService;
|
|
/**
|
* 登录验证
|
*
|
* @param username 用户名
|
* @param password 密码
|
* @param code 验证码
|
* @param uuid 唯一标识
|
* @return 结果
|
*/
|
public LoginUser login(String username, String password, String code, String uuid) {
|
// 验证码校验
|
// validateCaptcha(username, code, uuid);
|
// 登录前置校验
|
loginPreCheck(username, password);
|
// 用户验证
|
Authentication authentication = null;
|
// 用户验证
|
SysUser user = userService.selectPlatUserByUserName(username);
|
if (StringUtils.isNull(user)) {
|
log.info("登录用户:{} 不存在.", username);
|
throw new ServiceException(MessageUtils.message("user.not.exists"));
|
} else if (UserStatus.DELETED.getCode().equals(user.getDelFlag())) {
|
log.info("登录用户:{} 已被删除.", username);
|
throw new ServiceException(MessageUtils.message("user.password.delete"));
|
} else if (UserStatus.DISABLE.getCode().equals(user.getStatus())) {
|
log.info("登录用户:{} 已被停用.", username);
|
throw new ServiceException(MessageUtils.message("user.blocked"));
|
}
|
try {
|
UsernamePasswordAuthenticationToken authenticationToken = new UsernamePasswordAuthenticationToken(
|
username, password);
|
AuthenticationContextHolder.setContext(authenticationToken);
|
// 该方法会去调用UserDetailsServiceImpl.loadUserByUsername
|
authentication = authenticationManager.authenticate(authenticationToken);
|
} catch (Exception e) {
|
if (e instanceof BadCredentialsException) {
|
AsyncManager.me().execute(
|
AsyncFactory.recordLogininfor(username, Constants.LOGIN_FAIL,
|
MessageUtils.message("user.password.not.match")));
|
throw new UserPasswordNotMatchException();
|
} else {
|
AsyncManager.me().execute(
|
AsyncFactory.recordLogininfor(username, Constants.LOGIN_FAIL,
|
e.getMessage()));
|
throw new ServiceException(e.getMessage());
|
}
|
} finally {
|
AuthenticationContextHolder.clearContext();
|
}
|
AsyncManager.me().execute(AsyncFactory.recordLogininfor(username, Constants.LOGIN_SUCCESS,
|
MessageUtils.message("user.login.success")));
|
LoginUser loginUser = (LoginUser) authentication.getPrincipal();
|
recordLoginInfo(loginUser.getUserId());
|
// 生成token
|
return loginUser;
|
}
|
|
/**
|
* 登录验证
|
*
|
* @param username 用户名
|
* @param code 验证码
|
* @return 结果
|
*/
|
public LoginUser loginCode(String username, String code) {
|
|
// 登录前置校验
|
if (StringUtils.isEmpty(username)) {
|
AsyncManager.me().execute(AsyncFactory.recordLogininfor(username, Constants.LOGIN_FAIL,
|
MessageUtils.message("not.null")));
|
throw new UserNotExistsException();
|
}
|
// 用户验证
|
SysUser user = userService.selectUserByUserName(username);
|
if (StringUtils.isNull(user)) {
|
log.info("登录用户:{} 不存在.", username);
|
throw new ServiceException(MessageUtils.message("user.not.exists"));
|
} else if (UserStatus.DELETED.getCode().equals(user.getDelFlag())) {
|
log.info("登录用户:{} 已被删除.", username);
|
throw new ServiceException(MessageUtils.message("user.password.delete"));
|
} else if (UserStatus.DISABLE.getCode().equals(user.getStatus())) {
|
log.info("登录用户:{} 已被停用.", username);
|
throw new ServiceException(MessageUtils.message("user.blocked"));
|
}
|
if (user.isAdmin()) {
|
log.info("登录用户:{} 不可用短信验证码登录.", username);
|
throw new ServiceException("不可用短信验证码登录");
|
}
|
// 校验验证码
|
Object cacheObject = redisCache.getCacheObject(user.getPhoneNumber());
|
if (!code.equals(String.valueOf(cacheObject))) {
|
log.info("登录用户:{} 短信验证码错误{}", username, code);
|
throw new ServiceException("短信验证码错误");
|
}
|
AsyncManager.me().execute(AsyncFactory.recordLogininfor(username, Constants.LOGIN_SUCCESS,
|
MessageUtils.message("user.login.success")));
|
LoginUser loginUser = new LoginUser(user.getUserId(), user.getDeptId(), user,
|
permissionService.getMenuPermission(user));
|
recordLoginInfo(loginUser.getUserId());
|
// 生成token
|
return loginUser;
|
}
|
|
/**
|
* 登录验证
|
*
|
* @param username 用户名
|
* @param password 密码
|
* @param uuid uuid
|
* @return 结果
|
*/
|
public LoginUser loginPwd(String username, String password, String code, String uuid) {
|
// 验证码校验
|
// validateCaptcha(username, code, uuid);
|
// 登录前置校验
|
loginPreCheck(username, password);
|
// 用户验证
|
Authentication authentication = null;
|
// 用户验证
|
SysUser user = userService.selectDeptUserByUserName(username);
|
if (StringUtils.isNull(user)) {
|
log.info("登录用户:{} 不存在.", username);
|
throw new ServiceException(MessageUtils.message("user.not.exists"));
|
}
|
try {
|
UsernamePasswordAuthenticationToken authenticationToken = new UsernamePasswordAuthenticationToken(
|
username, password);
|
AuthenticationContextHolder.setContext(authenticationToken);
|
// 该方法会去调用UserDetailsServiceImpl.loadUserByUsername
|
authentication = authenticationManager.authenticate(authenticationToken);
|
} catch (Exception e) {
|
if (e instanceof BadCredentialsException) {
|
AsyncManager.me().execute(
|
AsyncFactory.recordLogininfor(username, Constants.LOGIN_FAIL,
|
MessageUtils.message("user.password.not.match")));
|
throw new UserPasswordNotMatchException();
|
} else {
|
AsyncManager.me().execute(
|
AsyncFactory.recordLogininfor(username, Constants.LOGIN_FAIL,
|
e.getMessage()));
|
throw new ServiceException(e.getMessage());
|
}
|
} finally {
|
AuthenticationContextHolder.clearContext();
|
}
|
AsyncManager.me().execute(AsyncFactory.recordLogininfor(username, Constants.LOGIN_SUCCESS,
|
MessageUtils.message("user.login.success")));
|
LoginUser loginUser = (LoginUser) authentication.getPrincipal();
|
recordLoginInfo(loginUser.getUserId());
|
// 生成token
|
return loginUser;
|
}
|
|
/**
|
* 校验验证码
|
*
|
* @param username 用户名
|
* @param code 验证码
|
* @param uuid 唯一标识
|
* @return 结果
|
*/
|
public void validateCaptcha(String username, String code, String uuid) {
|
boolean captchaEnabled = configService.selectCaptchaEnabled();
|
if (captchaEnabled) {
|
String verifyKey = CacheConstants.CAPTCHA_CODE_KEY + StringUtils.nvl(uuid, "");
|
String captcha = redisCache.getCacheObject(verifyKey);
|
redisCache.deleteObject(verifyKey);
|
if (captcha == null) {
|
AsyncManager.me().execute(
|
AsyncFactory.recordLogininfor(username, Constants.LOGIN_FAIL,
|
MessageUtils.message("user.jcaptcha.expire")));
|
throw new CaptchaExpireException();
|
}
|
if (!code.equalsIgnoreCase(captcha)) {
|
AsyncManager.me().execute(
|
AsyncFactory.recordLogininfor(username, Constants.LOGIN_FAIL,
|
MessageUtils.message("user.jcaptcha.error")));
|
throw new CaptchaException();
|
}
|
}
|
}
|
|
/**
|
* 登录前置校验
|
*
|
* @param username 用户名
|
* @param password 用户密码
|
*/
|
public void loginPreCheck(String username, String password) {
|
// 用户名或密码为空 错误
|
if (StringUtils.isEmpty(username) || StringUtils.isEmpty(password)) {
|
AsyncManager.me().execute(AsyncFactory.recordLogininfor(username, Constants.LOGIN_FAIL,
|
MessageUtils.message("not.null")));
|
throw new UserNotExistsException();
|
}
|
// 密码如果不在指定范围内 错误
|
if (password.length() < UserConstants.PASSWORD_MIN_LENGTH
|
|| password.length() > UserConstants.PASSWORD_MAX_LENGTH) {
|
AsyncManager.me().execute(AsyncFactory.recordLogininfor(username, Constants.LOGIN_FAIL,
|
MessageUtils.message("user.password.not.match")));
|
throw new UserPasswordNotMatchException();
|
}
|
// 用户名不在指定范围内 错误
|
if (username.length() < UserConstants.USERNAME_MIN_LENGTH
|
|| username.length() > UserConstants.USERNAME_MAX_LENGTH) {
|
AsyncManager.me().execute(AsyncFactory.recordLogininfor(username, Constants.LOGIN_FAIL,
|
MessageUtils.message("user.password.not.match")));
|
throw new UserPasswordNotMatchException();
|
}
|
// IP黑名单校验
|
String blackStr = configService.selectConfigByKey("sys.login.blackIPList");
|
if (IpUtils.isMatchedIp(blackStr, IpUtils.getIpAddr())) {
|
AsyncManager.me().execute(AsyncFactory.recordLogininfor(username, Constants.LOGIN_FAIL,
|
MessageUtils.message("login.blocked")));
|
throw new BlackListException();
|
}
|
}
|
|
/**
|
* 记录登录信息
|
*
|
* @param userId 用户ID
|
*/
|
public void recordLoginInfo(Long userId) {
|
SysUser sysUser = new SysUser();
|
sysUser.setUserId(userId);
|
sysUser.setLoginIp(IpUtils.getIpAddr());
|
sysUser.setLoginDate(DateUtils.getNowDate());
|
userService.updateUserProfile(sysUser);
|
}
|
|
|
}
|