SecurityUtils.java 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. /*
  2. * Copyright 2019-2020 Zheng Jie
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package me.zhengjie.utils;
  17. import cn.hutool.json.JSONArray;
  18. import cn.hutool.json.JSONObject;
  19. import cn.hutool.json.JSONUtil;
  20. import lombok.extern.slf4j.Slf4j;
  21. import me.zhengjie.base.QueryPageParams;
  22. import me.zhengjie.exception.BadRequestException;
  23. import me.zhengjie.utils.enums.DataScopeEnum;
  24. import org.springframework.http.HttpStatus;
  25. import org.springframework.security.core.Authentication;
  26. import org.springframework.security.core.context.SecurityContextHolder;
  27. import org.springframework.security.core.userdetails.UserDetails;
  28. import org.springframework.security.core.userdetails.UserDetailsService;
  29. import org.springframework.web.context.request.RequestContextHolder;
  30. import org.springframework.web.context.request.ServletRequestAttributes;
  31. import javax.servlet.http.HttpServletRequest;
  32. import java.text.SimpleDateFormat;
  33. import java.util.*;
  34. /**
  35. * 获取当前登录的用户
  36. * @author Zheng Jie
  37. * @date 2019-01-17
  38. */
  39. @Slf4j
  40. public class SecurityUtils {
  41. /**
  42. * 获取当前登录的用户
  43. * @return UserDetails
  44. */
  45. public static UserDetails getCurrentUser() {
  46. UserDetailsService userDetailsService = SpringContextHolder.getBean(UserDetailsService.class);
  47. return userDetailsService.loadUserByUsername(getCurrentUsername());
  48. }
  49. /**
  50. * 获取系统用户名称
  51. *
  52. * @return 系统用户名称
  53. */
  54. public static String getCurrentUsername() {
  55. final Authentication authentication = SecurityContextHolder.getContext().getAuthentication();
  56. if (authentication == null) {
  57. throw new BadRequestException(HttpStatus.UNAUTHORIZED, "当前登录状态过期");
  58. }
  59. if (authentication.getPrincipal() instanceof UserDetails) {
  60. UserDetails userDetails = (UserDetails) authentication.getPrincipal();
  61. return userDetails.getUsername();
  62. }
  63. throw new BadRequestException(HttpStatus.UNAUTHORIZED, "找不到当前登录的信息");
  64. }
  65. /**
  66. * 获取系统用户ID
  67. * @return 系统用户ID
  68. */
  69. public static String getCurrentUserId() {
  70. UserDetails userDetails = getCurrentUser();
  71. return new JSONObject(new JSONObject(userDetails).get("user")).get("id", String.class);
  72. }
  73. /**
  74. * 获取当前用户的数据权限
  75. * @return /
  76. */
  77. public static List<Long> getCurrentUserDataScope(){
  78. UserDetails userDetails = getCurrentUser();
  79. JSONArray array = JSONUtil.parseArray(new JSONObject(userDetails).get("dataScopes"));
  80. return JSONUtil.toList(array,Long.class);
  81. }
  82. /**
  83. * 获取数据权限级别
  84. * @return 级别
  85. */
  86. public static String getDataScopeType() {
  87. List<Long> dataScopes = getCurrentUserDataScope();
  88. if(dataScopes.size() != 0){
  89. return "";
  90. }
  91. return DataScopeEnum.ALL.getValue();
  92. }
  93. /**
  94. * 验证API访问权限
  95. */
  96. public static void CheckApiAuth(QueryPageParams params) {
  97. HttpServletRequest request = ((ServletRequestAttributes) RequestContextHolder.getRequestAttributes()).getRequest();
  98. if (request != null) {
  99. String accesstoken = request.getHeader("X_YT_ACCESS_TOKEN");
  100. String token = "DMERPYT!@#$QWER2021+{:>";
  101. if (params == null || StringUtils.isBlank(params.getTimestamp()) || StringUtils.isBlank(params.getNonce()) || StringUtils.isBlank(accesstoken)) {
  102. throw new BadRequestException(HttpStatus.UNAUTHORIZED, "认证失败");
  103. }
  104. String[] arr = {token, params.getTimestamp(), params.getNonce()};
  105. Arrays.sort(arr);
  106. String str = "";
  107. for (int i = 0; i < arr.length; i++) {
  108. str += arr[i];
  109. }
  110. String newtoken = EncryptUtils.sha1(str);
  111. if (!accesstoken.equals(newtoken)) {
  112. throw new BadRequestException(HttpStatus.UNAUTHORIZED, "认证失败");
  113. }
  114. }
  115. }
  116. /**
  117. * 根据key获取token
  118. */
  119. public static Map<String,Object> getToken(String key){
  120. //获取11位随机数
  121. double rand = Math.random();
  122. String randStr = String.valueOf(rand).replace("0.", "");
  123. String nonce = randStr.substring(0, 11);
  124. System.out.println("nonce:"+nonce);
  125. //获取当前时间
  126. SimpleDateFormat sdf = new SimpleDateFormat();
  127. sdf.applyPattern("yyyy-MM-dd HH:mm");
  128. Date date = new Date();
  129. String timestamp =sdf.format(date);
  130. System.out.println("timestamp:"+timestamp);
  131. //排序
  132. String[] arr = {key, timestamp, nonce};
  133. Arrays.sort(arr);
  134. //获取token
  135. String str = "";
  136. for (int i = 0; i < arr.length; i++) {
  137. str += arr[i];
  138. }
  139. String token = EncryptUtils.sha1(str);
  140. System.out.println("token:"+token);
  141. Map<String,Object> data = new HashMap<String, Object>(1) {{
  142. put("nonce", nonce);
  143. put("timestamp", timestamp);
  144. put("token", token);
  145. }};
  146. return data;
  147. }
  148. }