|
@@ -1,6 +1,7 @@
|
|
|
package com.ruoyi.framework.web.service;
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
+
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.security.authentication.AuthenticationManager;
|
|
|
import org.springframework.security.authentication.BadCredentialsException;
|
|
@@ -29,14 +30,16 @@ import com.ruoyi.framework.security.context.AuthenticationContextHolder;
|
|
|
import com.ruoyi.system.service.ISysConfigService;
|
|
|
import com.ruoyi.system.service.ISysUserService;
|
|
|
|
|
|
+import static com.ruoyi.common.constant.CommonConstants.LOGIN_USER_SMS;
|
|
|
+import static com.ruoyi.common.constant.CommonConstants.TWO;
|
|
|
+
|
|
|
/**
|
|
|
* 登录校验方法
|
|
|
- *
|
|
|
+ *
|
|
|
* @author ruoyi
|
|
|
*/
|
|
|
@Component
|
|
|
-public class SysLoginService
|
|
|
-{
|
|
|
+public class SysLoginService {
|
|
|
@Autowired
|
|
|
private TokenService tokenService;
|
|
|
|
|
@@ -45,7 +48,7 @@ public class SysLoginService
|
|
|
|
|
|
@Autowired
|
|
|
private RedisCache redisCache;
|
|
|
-
|
|
|
+
|
|
|
@Autowired
|
|
|
private ISysUserService userService;
|
|
|
|
|
@@ -54,43 +57,39 @@ 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)
|
|
|
- {
|
|
|
+ public String login(String username, String password, String code, String uuid, String type) {
|
|
|
// 验证码校验
|
|
|
validateCaptcha(username, code, uuid);
|
|
|
+ //登录类型校验 如果是短信验证码登录,校验短信验证码是否正确
|
|
|
+ String passwordResult = validateType(username, type, code);
|
|
|
+ if (StringUtils.isNotEmpty(passwordResult)) {
|
|
|
+ password = passwordResult;
|
|
|
+ }
|
|
|
// 登录前置校验
|
|
|
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")));
|
|
@@ -102,27 +101,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);
|
|
|
redisCache.deleteObject(verifyKey);
|
|
|
- if (captcha == null)
|
|
|
- {
|
|
|
+ if (captcha == null) {
|
|
|
AsyncManager.me().execute(AsyncFactory.recordLogininfor(username, Constants.LOGIN_FAIL, MessageUtils.message("user.jcaptcha.expire")));
|
|
|
throw new CaptchaExpireException();
|
|
|
}
|
|
|
- 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();
|
|
|
}
|
|
@@ -131,35 +126,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,12 +161,38 @@ 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());
|
|
|
sysUser.setLoginDate(DateUtils.getNowDate());
|
|
|
userService.updateUserProfile(sysUser);
|
|
|
}
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 登录类型校验 如果是短信验证码登录,校验短信验证码是否正确,给密码 查询用户信息后赋值
|
|
|
+ *
|
|
|
+ * @param username 用户名
|
|
|
+ * @param type 登录类型
|
|
|
+ * @param code 短信验证码
|
|
|
+ */
|
|
|
+ public String validateType(String username, String type, String code) {
|
|
|
+ String password = null;
|
|
|
+ if (TWO.equals(type)) {
|
|
|
+ //校验短信验证码
|
|
|
+ Object cacheObject = redisCache.getCacheObject(LOGIN_USER_SMS + username);
|
|
|
+ if (code.equals(cacheObject)) {
|
|
|
+ //根据手机号查询用户信息
|
|
|
+ SysUser sysUser = userService.selectUserByPhonenumber(username);
|
|
|
+ if (sysUser == null) {
|
|
|
+ throw new UserPasswordNotMatchException();
|
|
|
+ }
|
|
|
+ password = sysUser.getPassword();
|
|
|
+ redisCache.deleteObject(LOGIN_USER_SMS + username);
|
|
|
+ } else {
|
|
|
+ throw new CaptchaExpireException();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return password;
|
|
|
+ }
|
|
|
}
|