|
@@ -1,13 +1,5 @@
|
|
|
package com.ruoyi.framework.web.service;
|
|
|
|
|
|
-import javax.annotation.Resource;
|
|
|
-import org.springframework.beans.factory.annotation.Autowired;
|
|
|
-import org.springframework.beans.factory.annotation.Qualifier;
|
|
|
-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;
|
|
|
import com.ruoyi.common.constant.CacheConstants;
|
|
|
import com.ruoyi.common.constant.Constants;
|
|
|
import com.ruoyi.common.constant.UserConstants;
|
|
@@ -15,11 +7,7 @@ import com.ruoyi.common.core.domain.entity.SysUser;
|
|
|
import com.ruoyi.common.core.domain.model.LoginUser;
|
|
|
import com.ruoyi.common.core.redis.RedisCache;
|
|
|
import com.ruoyi.common.exception.ServiceException;
|
|
|
-import com.ruoyi.common.exception.user.BlackListException;
|
|
|
-import com.ruoyi.common.exception.user.CaptchaException;
|
|
|
-import com.ruoyi.common.exception.user.CaptchaExpireException;
|
|
|
-import com.ruoyi.common.exception.user.UserNotExistsException;
|
|
|
-import com.ruoyi.common.exception.user.UserPasswordNotMatchException;
|
|
|
+import com.ruoyi.common.exception.user.*;
|
|
|
import com.ruoyi.common.utils.DateUtils;
|
|
|
import com.ruoyi.common.utils.MessageUtils;
|
|
|
import com.ruoyi.common.utils.StringUtils;
|
|
@@ -29,15 +17,21 @@ import com.ruoyi.framework.manager.factory.AsyncFactory;
|
|
|
import com.ruoyi.framework.security.context.AuthenticationContextHolder;
|
|
|
import com.ruoyi.system.service.ISysConfigService;
|
|
|
import com.ruoyi.system.service.ISysUserService;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.beans.factory.annotation.Qualifier;
|
|
|
+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
|
|
|
*/
|
|
|
@Component
|
|
|
-public class SysLoginService
|
|
|
-{
|
|
|
+public class SysLoginService {
|
|
|
@Autowired
|
|
|
private TokenService tokenService;
|
|
|
|
|
@@ -46,7 +40,7 @@ public class SysLoginService
|
|
|
|
|
|
@Autowired
|
|
|
private RedisCache redisCache;
|
|
|
-
|
|
|
+
|
|
|
@Autowired
|
|
|
private ISysUserService userService;
|
|
|
|
|
@@ -64,43 +58,34 @@ public class SysLoginService
|
|
|
|
|
|
/**
|
|
|
* 登录验证
|
|
|
- *
|
|
|
+ *
|
|
|
* @param username 用户名
|
|
|
* @param password 密码
|
|
|
- * @param code 验证码
|
|
|
- * @param uuid 唯一标识
|
|
|
+ * @param code 验证码
|
|
|
+ * @param uuid 唯一标识
|
|
|
* @return 结果
|
|
|
*/
|
|
|
- public String login(String username, String password, String code, String uuid , boolean isCommunity)
|
|
|
- {
|
|
|
+ public String login(String username, String password, String code, String uuid, boolean isCommunity) {
|
|
|
// 验证码校验
|
|
|
validateCaptcha(username, code, uuid);
|
|
|
// 登录前置校验
|
|
|
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")));
|
|
@@ -112,27 +97,23 @@ public class SysLoginService
|
|
|
|
|
|
/**
|
|
|
* 校验验证码
|
|
|
- *
|
|
|
+ *
|
|
|
* @param username 用户名
|
|
|
- * @param code 验证码
|
|
|
- * @param uuid 唯一标识
|
|
|
+ * @param code 验证码
|
|
|
+ * @param uuid 唯一标识
|
|
|
* @return 结果
|
|
|
*/
|
|
|
- public void validateCaptcha(String username, String code, String uuid)
|
|
|
- {
|
|
|
+ public void validateCaptcha(String username, String code, String uuid) {
|
|
|
boolean captchaEnabled = configService.selectCaptchaEnabled();
|
|
|
- if (captchaEnabled)
|
|
|
- {
|
|
|
+ if (captchaEnabled) {
|
|
|
String verifyKey = CacheConstants.CAPTCHA_CODE_KEY + StringUtils.nvl(uuid, "");
|
|
|
String captcha = redisCache.getCacheObject(verifyKey);
|
|
|
- if (captcha == null)
|
|
|
- {
|
|
|
+ if (captcha == null) {
|
|
|
AsyncManager.me().execute(AsyncFactory.recordLogininfor(username, Constants.LOGIN_FAIL, MessageUtils.message("user.jcaptcha.expire")));
|
|
|
throw new CaptchaExpireException();
|
|
|
}
|
|
|
redisCache.deleteObject(verifyKey);
|
|
|
- if (!code.equalsIgnoreCase(captcha))
|
|
|
- {
|
|
|
+ if (!code.equalsIgnoreCase(captcha)) {
|
|
|
AsyncManager.me().execute(AsyncFactory.recordLogininfor(username, Constants.LOGIN_FAIL, MessageUtils.message("user.jcaptcha.error")));
|
|
|
throw new CaptchaException();
|
|
|
}
|
|
@@ -141,35 +122,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();
|
|
|
}
|
|
@@ -180,8 +157,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());
|
|
@@ -190,7 +166,8 @@ public class SysLoginService
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * 手机号验证码登录
|
|
|
+ * 手机号验证码登录
|
|
|
+ *
|
|
|
* @param phone 手机号
|
|
|
* @param code 验证码
|
|
|
* @param uuid 唯一标识
|
|
@@ -198,22 +175,29 @@ public class SysLoginService
|
|
|
*/
|
|
|
public String loginByTelephone(String phone, String code, String uuid) {
|
|
|
|
|
|
+ if (StringUtils.isEmpty(code)) {
|
|
|
+ throw new CaptchaNullException(); //抛出验证码不能为空的异常
|
|
|
+ }
|
|
|
//校验验证码
|
|
|
- // 这里需要对自己的验证码进行校验 我这里就省略了校验
|
|
|
-
|
|
|
-
|
|
|
+ //获取缓存内的验证码
|
|
|
+ String verifyKey = CacheConstants.SMS_LOGIN_CODE_KEY + phone;
|
|
|
+ String smsCode = redisCache.getCacheObject(verifyKey).toString();
|
|
|
+ if (StringUtils.isEmpty(smsCode)) {
|
|
|
+ throw new CaptchaExpireException(); //抛出验证码失效的异常
|
|
|
+ }
|
|
|
|
|
|
+ if (!smsCode.equalsIgnoreCase(code)) {
|
|
|
+ throw new CaptchaException(); //抛出验证码错误的异常
|
|
|
+ }
|
|
|
+ //成功 删除内存的验证码
|
|
|
+ redisCache.deleteObject(verifyKey);
|
|
|
Authentication authentication = null; // 用户验证
|
|
|
try {
|
|
|
-
|
|
|
-
|
|
|
UsernamePasswordAuthenticationToken authenticationToken = new UsernamePasswordAuthenticationToken(phone, Constants.CUSTOM_LOGIN_SMS);
|
|
|
AuthenticationContextHolder.setContext(authenticationToken);
|
|
|
// 该方法会去调用UserDetailsServiceImpl.loadUserByUsername
|
|
|
authentication = authenticationPhoneManager.authenticate(authenticationToken);
|
|
|
-
|
|
|
- }
|
|
|
- catch (Exception e) {
|
|
|
+ } catch (Exception e) {
|
|
|
if (e instanceof BadCredentialsException) {
|
|
|
throw new UserPasswordNotMatchException(); //抛出账号或者密码错误的异常
|
|
|
} else {
|
|
@@ -226,7 +210,5 @@ public class SysLoginService
|
|
|
recordLoginInfo(loginUser.getUserId()); //修改sys_user最近登录IP和登录时间
|
|
|
// 生成token
|
|
|
return tokenService.createToken(loginUser);
|
|
|
-
|
|
|
-
|
|
|
}
|
|
|
}
|