|
|
|
@ -5,6 +5,7 @@ import javax.annotation.Resource;
|
|
|
|
|
import com.anji.captcha.model.common.ResponseModel;
|
|
|
|
|
import com.anji.captcha.model.vo.CaptchaVO;
|
|
|
|
|
import com.anji.captcha.service.CaptchaService;
|
|
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
|
|
import org.springframework.context.annotation.Lazy;
|
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
|
import org.springframework.security.authentication.AuthenticationManager;
|
|
|
|
@ -38,8 +39,7 @@ import com.hyp.system.service.ISysUserService;
|
|
|
|
|
* @author ruoyi
|
|
|
|
|
*/
|
|
|
|
|
@Component
|
|
|
|
|
public class SysLoginService
|
|
|
|
|
{
|
|
|
|
|
public class SysLoginService {
|
|
|
|
|
@Autowired
|
|
|
|
|
private TokenService tokenService;
|
|
|
|
|
|
|
|
|
@ -59,48 +59,54 @@ public class SysLoginService
|
|
|
|
|
@Lazy
|
|
|
|
|
private CaptchaService captchaService;
|
|
|
|
|
|
|
|
|
|
// 是否允许账户多终端同时登录(true允许 false不允许)
|
|
|
|
|
@Value("${token.soloLogin}")
|
|
|
|
|
private boolean soloLogin;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 登录验证
|
|
|
|
|
*
|
|
|
|
|
* @param username 用户名
|
|
|
|
|
* @param password 密码
|
|
|
|
|
* @param code 验证码
|
|
|
|
|
* @param code 验证码
|
|
|
|
|
* @return 结果
|
|
|
|
|
*/
|
|
|
|
|
public String login(String username, String password, String code)
|
|
|
|
|
{
|
|
|
|
|
public String login(String username, String password, String code) {
|
|
|
|
|
// 验证码校验
|
|
|
|
|
validateCaptcha(username, code);
|
|
|
|
|
// 登录前置校验
|
|
|
|
|
loginPreCheck(username, password);
|
|
|
|
|
// 用户验证
|
|
|
|
|
Authentication authentication = null;
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
try {
|
|
|
|
|
UsernamePasswordAuthenticationToken authenticationToken = new UsernamePasswordAuthenticationToken(username, password);
|
|
|
|
|
AuthenticationContextHolder.setContext(authenticationToken);
|
|
|
|
|
// 该方法会去调用UserDetailsServiceImpl.loadUserByUsername
|
|
|
|
|
authentication = authenticationManager.authenticate(authenticationToken);
|
|
|
|
|
}
|
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
|
|
|
|
if (e instanceof BadCredentialsException)
|
|
|
|
|
{
|
|
|
|
|
} 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
|
|
|
|
|
{
|
|
|
|
|
} else {
|
|
|
|
|
AsyncManager.me().execute(AsyncFactory.recordLogininfor(username, Constants.LOGIN_FAIL, e.getMessage()));
|
|
|
|
|
throw new ServiceException(e.getMessage());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
finally
|
|
|
|
|
{
|
|
|
|
|
} finally {
|
|
|
|
|
AuthenticationContextHolder.clearContext();
|
|
|
|
|
}
|
|
|
|
|
AsyncManager.me().execute(AsyncFactory.recordLogininfor(username, Constants.LOGIN_SUCCESS, MessageUtils.message("user.login.success")));
|
|
|
|
|
LoginUser loginUser = (LoginUser) authentication.getPrincipal();
|
|
|
|
|
if (!soloLogin)
|
|
|
|
|
{
|
|
|
|
|
// 如果用户不允许多终端同时登录,清除缓存信息
|
|
|
|
|
String userIdKey = Constants.LOGIN_USERID_KEY + loginUser.getUser().getUserId();
|
|
|
|
|
String userKey = redisCache.getCacheObject(userIdKey);
|
|
|
|
|
if (StringUtils.isNotEmpty(userKey))
|
|
|
|
|
{
|
|
|
|
|
redisCache.deleteObject(userIdKey);
|
|
|
|
|
redisCache.deleteObject(userKey);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
recordLoginInfo(loginUser.getUserId());
|
|
|
|
|
// 生成token
|
|
|
|
|
return tokenService.createToken(loginUser);
|
|
|
|
@ -110,19 +116,16 @@ public class SysLoginService
|
|
|
|
|
* 校验验证码
|
|
|
|
|
*
|
|
|
|
|
* @param username 用户名
|
|
|
|
|
* @param code 验证码
|
|
|
|
|
* @param code 验证码
|
|
|
|
|
* @return 结果
|
|
|
|
|
*/
|
|
|
|
|
public void validateCaptcha(String username, String code)
|
|
|
|
|
{
|
|
|
|
|
public void validateCaptcha(String username, String code) {
|
|
|
|
|
boolean captchaEnabled = configService.selectCaptchaEnabled();
|
|
|
|
|
if (captchaEnabled)
|
|
|
|
|
{
|
|
|
|
|
if (captchaEnabled) {
|
|
|
|
|
CaptchaVO captchaVO = new CaptchaVO();
|
|
|
|
|
captchaVO.setCaptchaVerification(code);
|
|
|
|
|
ResponseModel response = captchaService.verification(captchaVO);
|
|
|
|
|
if (!response.isSuccess())
|
|
|
|
|
{
|
|
|
|
|
if (!response.isSuccess()) {
|
|
|
|
|
AsyncManager.me().execute(AsyncFactory.recordLogininfor(username, Constants.LOGIN_FAIL, MessageUtils.message("user.jcaptcha.error")));
|
|
|
|
|
throw new CaptchaException();
|
|
|
|
|
}
|
|
|
|
@ -131,35 +134,31 @@ public class SysLoginService
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 登录前置校验
|
|
|
|
|
*
|
|
|
|
|
* @param username 用户名
|
|
|
|
|
* @param password 用户密码
|
|
|
|
|
*/
|
|
|
|
|
public void loginPreCheck(String username, String password)
|
|
|
|
|
{
|
|
|
|
|
public void loginPreCheck(String username, String password) {
|
|
|
|
|
// 用户名或密码为空 错误
|
|
|
|
|
if (StringUtils.isEmpty(username) || StringUtils.isEmpty(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)
|
|
|
|
|
{
|
|
|
|
|
|| 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)
|
|
|
|
|
{
|
|
|
|
|
|| 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()))
|
|
|
|
|
{
|
|
|
|
|
if (IpUtils.isMatchedIp(blackStr, IpUtils.getIpAddr())) {
|
|
|
|
|
AsyncManager.me().execute(AsyncFactory.recordLogininfor(username, Constants.LOGIN_FAIL, MessageUtils.message("login.blocked")));
|
|
|
|
|
throw new BlackListException();
|
|
|
|
|
}
|
|
|
|
@ -170,8 +169,7 @@ public class SysLoginService
|
|
|
|
|
*
|
|
|
|
|
* @param userId 用户ID
|
|
|
|
|
*/
|
|
|
|
|
public void recordLoginInfo(Long userId)
|
|
|
|
|
{
|
|
|
|
|
public void recordLoginInfo(Long userId) {
|
|
|
|
|
SysUser sysUser = new SysUser();
|
|
|
|
|
sysUser.setUserId(userId);
|
|
|
|
|
sysUser.setLoginIp(IpUtils.getIpAddr());
|
|
|
|
|