|
@@ -1,236 +1,289 @@
|
|
|
-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;
|
|
|
-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;
|
|
|
-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.utils.DateUtils;
|
|
|
-import com.ruoyi.common.utils.MessageUtils;
|
|
|
-import com.ruoyi.common.utils.StringUtils;
|
|
|
-import com.ruoyi.common.utils.ip.IpUtils;
|
|
|
-import com.ruoyi.framework.manager.AsyncManager;
|
|
|
-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;
|
|
|
-
|
|
|
-
|
|
|
- * 登录校验方法
|
|
|
- *
|
|
|
- * @author ruoyi
|
|
|
- */
|
|
|
-@Component
|
|
|
-public class SysLoginService
|
|
|
-{
|
|
|
- @Autowired
|
|
|
- private TokenService tokenService;
|
|
|
-
|
|
|
- @Resource
|
|
|
- private AuthenticationManager authenticationManager;
|
|
|
-
|
|
|
- @Autowired
|
|
|
- private RedisCache redisCache;
|
|
|
-
|
|
|
- @Autowired
|
|
|
- private ISysUserService userService;
|
|
|
-
|
|
|
- @Autowired
|
|
|
- private ISysConfigService configService;
|
|
|
-
|
|
|
-
|
|
|
- * 登录验证
|
|
|
- *
|
|
|
- * @param username 用户名
|
|
|
- * @param password 密码
|
|
|
- * @param code 验证码
|
|
|
- * @param uuid 唯一标识
|
|
|
- * @return 结果
|
|
|
- */
|
|
|
- public String login(String username, String password, String code, String uuid)
|
|
|
- {
|
|
|
-
|
|
|
- validateCaptcha(username, code, uuid);
|
|
|
-
|
|
|
- loginPreCheck(username, password);
|
|
|
-
|
|
|
- Authentication authentication = null;
|
|
|
- try
|
|
|
- {
|
|
|
- UsernamePasswordAuthenticationToken authenticationToken = new UsernamePasswordAuthenticationToken(username, password);
|
|
|
- AuthenticationContextHolder.setContext(authenticationToken);
|
|
|
-
|
|
|
- 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());
|
|
|
-
|
|
|
- return tokenService.createToken(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();
|
|
|
- }
|
|
|
-
|
|
|
- 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);
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- * 单点登录验证
|
|
|
- *
|
|
|
- * @param username 用户名
|
|
|
- * @return 结果
|
|
|
- */
|
|
|
- public String authSingleSignIn(String username)
|
|
|
- {
|
|
|
- if (StringUtils.isEmpty(username))
|
|
|
- {
|
|
|
- AsyncManager.me().execute(AsyncFactory.recordLogininfor(username, Constants.LOGIN_FAIL, MessageUtils.message("not.null")));
|
|
|
- throw new UserNotExistsException();
|
|
|
- }
|
|
|
- SysUser sysUser = userService.selectUserByUserName(username);
|
|
|
-
|
|
|
- loginPreCheck(username, "admin123");
|
|
|
-
|
|
|
-
|
|
|
- Authentication authentication = null;
|
|
|
- try
|
|
|
- {
|
|
|
- UsernamePasswordAuthenticationToken authenticationToken = new UsernamePasswordAuthenticationToken(username, "admin123");
|
|
|
- AuthenticationContextHolder.setContext(authenticationToken);
|
|
|
-
|
|
|
- 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());
|
|
|
-
|
|
|
- return tokenService.createToken(loginUser);
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-}
|
|
|
+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;
|
|
|
+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;
|
|
|
+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.utils.DateUtils;
|
|
|
+import com.ruoyi.common.utils.MessageUtils;
|
|
|
+import com.ruoyi.common.utils.StringUtils;
|
|
|
+import com.ruoyi.common.utils.ip.IpUtils;
|
|
|
+import com.ruoyi.framework.manager.AsyncManager;
|
|
|
+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 java.util.HashMap;
|
|
|
+import java.util.Map;
|
|
|
+
|
|
|
+
|
|
|
+ * 登录校验方法
|
|
|
+ *
|
|
|
+ * @author ruoyi
|
|
|
+ */
|
|
|
+@Component
|
|
|
+public class SysLoginService
|
|
|
+{
|
|
|
+ @Autowired
|
|
|
+ private TokenService tokenService;
|
|
|
+
|
|
|
+ @Resource
|
|
|
+ private AuthenticationManager authenticationManager;
|
|
|
+ @Resource
|
|
|
+ private DingAuthenticationProvider dingAuthenticationProvider;
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private RedisCache redisCache;
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private ISysUserService userService;
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private ISysConfigService configService;
|
|
|
+
|
|
|
+
|
|
|
+ * 登录验证
|
|
|
+ *
|
|
|
+ * @param username 用户名
|
|
|
+ * @param password 密码
|
|
|
+ * @param code 验证码
|
|
|
+ * @param uuid 唯一标识
|
|
|
+ * @return 结果
|
|
|
+ */
|
|
|
+ public String login(String username, String password, String code, String uuid)
|
|
|
+ {
|
|
|
+
|
|
|
+ validateCaptcha(username, code, uuid);
|
|
|
+
|
|
|
+ loginPreCheck(username, password);
|
|
|
+
|
|
|
+ Authentication authentication = null;
|
|
|
+ try
|
|
|
+ {
|
|
|
+ UsernamePasswordAuthenticationToken authenticationToken = new UsernamePasswordAuthenticationToken(username, password);
|
|
|
+ AuthenticationContextHolder.setContext(authenticationToken);
|
|
|
+
|
|
|
+ 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());
|
|
|
+
|
|
|
+ return tokenService.createToken(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();
|
|
|
+ }
|
|
|
+
|
|
|
+ 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);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ * 单点登录验证
|
|
|
+ *
|
|
|
+ * @param username 用户名
|
|
|
+ * @return 结果
|
|
|
+ */
|
|
|
+ public String authSingleSignIn(String username)
|
|
|
+ {
|
|
|
+ if (StringUtils.isEmpty(username))
|
|
|
+ {
|
|
|
+ AsyncManager.me().execute(AsyncFactory.recordLogininfor(username, Constants.LOGIN_FAIL, MessageUtils.message("not.null")));
|
|
|
+ throw new UserNotExistsException();
|
|
|
+ }
|
|
|
+ SysUser sysUser = userService.selectUserByUserName(username);
|
|
|
+
|
|
|
+ loginPreCheck(username, "admin123");
|
|
|
+
|
|
|
+
|
|
|
+ Authentication authentication = null;
|
|
|
+ try
|
|
|
+ {
|
|
|
+ UsernamePasswordAuthenticationToken authenticationToken = new UsernamePasswordAuthenticationToken(username, "admin123");
|
|
|
+ AuthenticationContextHolder.setContext(authenticationToken);
|
|
|
+
|
|
|
+ authenticationToken.setDetails(authentication.getPrincipal());
|
|
|
+ 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();
|
|
|
+
|
|
|
+ loginUser.setAuthType("password");
|
|
|
+ recordLoginInfo(loginUser.getUserId());
|
|
|
+
|
|
|
+ return tokenService.createToken(loginUser);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ * 单点登录验证
|
|
|
+ *
|
|
|
+ * @param username 用户名
|
|
|
+ * @return 结果
|
|
|
+ */
|
|
|
+ public Map<String,Object> authSingleSignIn2(String accessToken, String userId)
|
|
|
+ {
|
|
|
+ if (StringUtils.isEmpty(accessToken))
|
|
|
+ {
|
|
|
+ AsyncManager.me().execute(AsyncFactory.recordLogininfor(accessToken, Constants.LOGIN_FAIL, MessageUtils.message("not.null")));
|
|
|
+ throw new UserNotExistsException();
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ Authentication authentication = null;
|
|
|
+ try
|
|
|
+ {
|
|
|
+ authentication = dingAuthenticationProvider.authenticate(new DingToken(accessToken, userId));
|
|
|
+ }
|
|
|
+ catch (Exception e)
|
|
|
+ {
|
|
|
+ if (e instanceof BadCredentialsException)
|
|
|
+ {
|
|
|
+ AsyncManager.me().execute(AsyncFactory.recordLogininfor(accessToken, Constants.LOGIN_FAIL, MessageUtils.message("user.password.not.match")));
|
|
|
+ throw new UserPasswordNotMatchException();
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ AsyncManager.me().execute(AsyncFactory.recordLogininfor(accessToken, Constants.LOGIN_FAIL, e.getMessage()));
|
|
|
+ throw new ServiceException(e.getMessage());
|
|
|
+ }
|
|
|
+ }
|
|
|
+ finally
|
|
|
+ {
|
|
|
+ AuthenticationContextHolder.clearContext();
|
|
|
+ }
|
|
|
+ AsyncManager.me().execute(AsyncFactory.recordLogininfor(accessToken, Constants.LOGIN_SUCCESS, MessageUtils.message("user.login.success")));
|
|
|
+ LoginUser loginUser = (LoginUser) authentication.getDetails();
|
|
|
+ recordLoginInfo(loginUser.getUserId());
|
|
|
+ Map <String,Object> result = new HashMap<>();
|
|
|
+ result.put("token", tokenService.createToken(loginUser));
|
|
|
+ result.put("authentication", authentication);
|
|
|
+
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+
|
|
|
+}
|