| | |
| | | package com.ruoyi.framework.web.service; |
| | | |
| | | import javax.annotation.Resource; |
| | | import javax.net.ssl.SSLContext; |
| | | |
| | | import com.alibaba.fastjson.JSON; |
| | | import com.alibaba.fastjson.PropertyNamingStrategy; |
| | | import com.alibaba.fastjson.parser.ParserConfig; |
| | | import com.ruoyi.common.config.SsoBean; |
| | | import com.ruoyi.framework.model.SsoOauthTokenModel; |
| | | import com.ruoyi.framework.model.SsoUserInfoModel; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.apache.http.HttpEntity; |
| | | import org.apache.http.HttpStatus; |
| | | import org.apache.http.NameValuePair; |
| | | import org.apache.http.client.entity.UrlEncodedFormEntity; |
| | | import org.apache.http.client.methods.CloseableHttpResponse; |
| | | import org.apache.http.client.methods.HttpPost; |
| | | import org.apache.http.conn.ssl.SSLConnectionSocketFactory; |
| | | import org.apache.http.impl.client.CloseableHttpClient; |
| | | import org.apache.http.impl.client.HttpClients; |
| | | import org.apache.http.message.BasicNameValuePair; |
| | | import org.apache.http.ssl.SSLContextBuilder; |
| | | import org.apache.http.ssl.TrustStrategy; |
| | | import org.apache.http.util.EntityUtils; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.security.authentication.AuthenticationManager; |
| | | import org.springframework.security.authentication.BadCredentialsException; |
| | |
| | | import com.ruoyi.system.service.ISysConfigService; |
| | | import com.ruoyi.system.service.ISysUserService; |
| | | |
| | | import java.security.KeyManagementException; |
| | | import java.security.KeyStoreException; |
| | | import java.security.NoSuchAlgorithmException; |
| | | import java.security.cert.CertificateException; |
| | | import java.security.cert.X509Certificate; |
| | | import java.util.HashMap; |
| | | import java.util.LinkedList; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * ç»å½æ ¡éªæ¹æ³ |
| | | * |
| | | * |
| | | * @author ruoyi |
| | | */ |
| | | @Component |
| | | @Slf4j |
| | | public class SysLoginService |
| | | { |
| | | @Autowired |
| | |
| | | |
| | | @Autowired |
| | | private RedisCache redisCache; |
| | | |
| | | |
| | | @Autowired |
| | | private ISysUserService userService; |
| | | |
| | | @Autowired |
| | | private ISysConfigService configService; |
| | | |
| | | @Autowired |
| | | private SsoBean ssoBean; |
| | | |
| | | /** |
| | | * ç»å½éªè¯ |
| | | * |
| | | * |
| | | * @param username ç¨æ·å |
| | | * @param password å¯ç |
| | | * @param code éªè¯ç |
| | |
| | | |
| | | /** |
| | | * æ ¡éªéªè¯ç |
| | | * |
| | | * |
| | | * @param username ç¨æ·å |
| | | * @param code éªè¯ç |
| | | * @param uuid å¯ä¸æ è¯ |
| | |
| | | sysUser.setLoginDate(DateUtils.getNowDate()); |
| | | userService.updateUserProfile(sysUser); |
| | | } |
| | | |
| | | /** |
| | | * åç¹ç»å½ |
| | | * @param code |
| | | * @return |
| | | */ |
| | | public String loginBySSO(String code) { |
| | | |
| | | // è·ååç¹ç»å½token |
| | | SsoOauthTokenModel tokenModel = this.getSsoAccessToken(code); |
| | | if (tokenModel == null) { |
| | | return null; |
| | | } |
| | | |
| | | // è·ååç¹ç»å½ç¨æ·ä¿¡æ¯ |
| | | SsoUserInfoModel userInfo = this.getSsoUserInfo(tokenModel.getAccess_token()); |
| | | if (userInfo == null) { |
| | | return null; |
| | | } |
| | | |
| | | // æ¥è¯¢æ¬å°ç¨æ·ä¿¡æ¯ |
| | | |
| | | |
| | | |
| | | // çætoken |
| | | return tokenService.createToken(null); |
| | | } |
| | | |
| | | /** |
| | | * **** è·ååç¹ç»å½token **** |
| | | * @param code |
| | | * @return |
| | | */ |
| | | public SsoOauthTokenModel getSsoAccessToken(String code) { |
| | | List<NameValuePair> list = new LinkedList<>(); |
| | | list.add(new BasicNameValuePair("grant_type", "authorization_code")); |
| | | list.add(new BasicNameValuePair("code", code)); |
| | | list.add(new BasicNameValuePair("client_id", ssoBean.getClientId())); |
| | | list.add(new BasicNameValuePair("client_secret", ssoBean.getClientSecret())); |
| | | list.add(new BasicNameValuePair("redirect_uri", ssoBean.getCallbackUrl())); |
| | | |
| | | Map<String, String> headers = new HashMap<>(); |
| | | headers.put("Content-Type", "application/x-www-form-urlencoded"); |
| | | headers.put("Accept", "application/json"); |
| | | String result = doPost(ssoBean.getUrl() + "/oauth2/token", headers, list); |
| | | if (org.apache.commons.lang3.StringUtils.isBlank(result)) { |
| | | return null; |
| | | } |
| | | return JSON.parseObject(result, SsoOauthTokenModel.class); |
| | | } |
| | | |
| | | /** |
| | | * ***è·ååç¹ç»å½ç¨æ·ä¿¡æ¯*** |
| | | * @param accessToken |
| | | * @return |
| | | */ |
| | | public SsoUserInfoModel getSsoUserInfo(String accessToken) { |
| | | Map<String, String> headers = new HashMap<>(); |
| | | headers.put("Authorization", "Bearer " + accessToken); |
| | | String result = doPost(ssoBean.getUrl() + "/userinfo", headers, null); |
| | | if (org.apache.commons.lang3.StringUtils.isBlank(result)) { |
| | | return null; |
| | | } |
| | | return JSON.parseObject(result, SsoUserInfoModel.class); |
| | | } |
| | | |
| | | public static String doPost(String url, Map<String, String> headers, List<NameValuePair> params) { |
| | | CloseableHttpClient client = createSSLClientDefault(); |
| | | CloseableHttpResponse response = null; |
| | | try { |
| | | HttpPost method = new HttpPost(url); |
| | | headers.forEach(method::setHeader); |
| | | if (params != null) { |
| | | method.setEntity(new UrlEncodedFormEntity(params, "UTF-8")); |
| | | } |
| | | |
| | | response = client.execute(method); |
| | | if (response.getStatusLine().getStatusCode() == HttpStatus.SC_OK) { |
| | | HttpEntity entity = response.getEntity(); |
| | | return EntityUtils.toString(entity); |
| | | } |
| | | } catch (Exception e) { |
| | | log.error("ç»ä¸ç»å½è¯·æ±åºç°å¼å¸¸", e.getMessage()); |
| | | } finally { |
| | | try { |
| | | if (client != null) { |
| | | client.close(); |
| | | } |
| | | if (response != null) { |
| | | response.close(); |
| | | } |
| | | } catch (Exception e) { |
| | | log.error("ç»ä¸ç»å½è¯·æ±åºç°å¼å¸¸", e.getMessage()); |
| | | } |
| | | } |
| | | return null; |
| | | } |
| | | |
| | | |
| | | private static CloseableHttpClient createSSLClientDefault() { |
| | | try { |
| | | SSLContext sslContext = new SSLContextBuilder().loadTrustMaterial(null, new TrustStrategy() { |
| | | //ä¿¡ä»»ææ |
| | | @Override |
| | | public boolean isTrusted(X509Certificate[] chain, String authType) throws CertificateException { |
| | | return true; |
| | | } |
| | | }).build(); |
| | | SSLConnectionSocketFactory sslsf = new SSLConnectionSocketFactory(sslContext); |
| | | return HttpClients.custom().setSSLSocketFactory(sslsf).build(); |
| | | } catch (KeyManagementException e) { |
| | | e.printStackTrace(); |
| | | } catch (NoSuchAlgorithmException e) { |
| | | e.printStackTrace(); |
| | | } catch (KeyStoreException e) { |
| | | e.printStackTrace(); |
| | | } |
| | | return HttpClients.createDefault(); |
| | | } |
| | | } |