|
@@ -1,8 +1,13 @@
|
|
|
package com.scbfkj.uni.api;
|
|
|
|
|
|
+import com.fasterxml.jackson.databind.JsonNode;
|
|
|
+import com.fasterxml.jackson.databind.node.JsonNodeFactory;
|
|
|
+import com.fasterxml.jackson.databind.node.ObjectNode;
|
|
|
+import com.scbfkj.uni.library.DataEncryptionUtil;
|
|
|
import com.scbfkj.uni.library.RequestUtil;
|
|
|
import com.scbfkj.uni.library.UniReturnUtil;
|
|
|
import com.scbfkj.uni.service.SecurityService;
|
|
|
+import com.scbfkj.uni.system.Config;
|
|
|
import jakarta.annotation.Resource;
|
|
|
import org.springframework.http.ResponseEntity;
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
@@ -27,7 +32,7 @@ public class SecurityApi {
|
|
|
* @return
|
|
|
*/
|
|
|
@PostMapping("user/getToken")
|
|
|
- public ResponseEntity<Map<String,Object>> getToken(@RequestBody Map<String, Object> body) throws Exception {
|
|
|
+ public ResponseEntity<Map<String, Object>> getToken(@RequestBody Map<String, Object> body) throws Exception {
|
|
|
return ResponseEntity.ok(securityService.getToken(body));
|
|
|
}
|
|
|
|
|
@@ -37,7 +42,7 @@ public class SecurityApi {
|
|
|
* @return
|
|
|
*/
|
|
|
@PostMapping("user/refreshToken")
|
|
|
- public ResponseEntity<Map<String,Object>> refreshToken() throws Exception {
|
|
|
+ public ResponseEntity<Map<String, Object>> refreshToken() throws Exception {
|
|
|
return ResponseEntity.ok(securityService.refreshToken());
|
|
|
}
|
|
|
|
|
@@ -47,7 +52,7 @@ public class SecurityApi {
|
|
|
* @return
|
|
|
*/
|
|
|
@PostMapping({"user/testToken", "foxlibc/testToken"})
|
|
|
- public ResponseEntity<Map<String,Object>> testToken() throws Exception {
|
|
|
+ public ResponseEntity<Map<String, Object>> testToken() throws Exception {
|
|
|
String appToken = RequestUtil.getAppToken();
|
|
|
return ResponseEntity.ok(securityService.verifyToken(appToken));
|
|
|
}
|
|
@@ -58,7 +63,7 @@ public class SecurityApi {
|
|
|
* @return
|
|
|
*/
|
|
|
@PostMapping({"user/verifyCode", "foxlibc/verification-code"})
|
|
|
- public ResponseEntity<Map<String,Object>> getCode() throws Exception {
|
|
|
+ public ResponseEntity<Map<String, Object>> getCode() throws Exception {
|
|
|
return ResponseEntity.ok(securityService.verifyCode());
|
|
|
}
|
|
|
|
|
@@ -68,7 +73,7 @@ public class SecurityApi {
|
|
|
* @return
|
|
|
*/
|
|
|
@PostMapping({"user/forceLogin", "foxlibc/force_sign"})
|
|
|
- public ResponseEntity<Map<String,Object>> forceLogin() throws Exception {
|
|
|
+ public ResponseEntity<Map<String, Object>> forceLogin() throws Exception {
|
|
|
return ResponseEntity.ok(securityService.forceLogin());
|
|
|
}
|
|
|
|
|
@@ -79,7 +84,7 @@ public class SecurityApi {
|
|
|
* @return
|
|
|
*/
|
|
|
@PostMapping({"user/login", "foxlibc/sign-in"})
|
|
|
- public ResponseEntity<Map<String,Object>> login(@RequestBody Map<String, Object> body) throws Exception {
|
|
|
+ public ResponseEntity<Map<String, Object>> login(@RequestBody Map<String, Object> body) throws Exception {
|
|
|
return ResponseEntity.ok(securityService.login(body));
|
|
|
}
|
|
|
|
|
@@ -89,7 +94,7 @@ public class SecurityApi {
|
|
|
* @return
|
|
|
*/
|
|
|
@PostMapping({"user/permissions", "foxlibc/permissions"})
|
|
|
- public ResponseEntity<Map<String,Object>> getPermissions() throws Exception {
|
|
|
+ public ResponseEntity<Map<String, Object>> getPermissions() throws Exception {
|
|
|
return ResponseEntity.ok(securityService.permission());
|
|
|
}
|
|
|
|
|
@@ -101,7 +106,7 @@ public class SecurityApi {
|
|
|
* @return
|
|
|
*/
|
|
|
@PostMapping({"user/changePassword", "foxlibc/reset-passwd"})
|
|
|
- public ResponseEntity<Map<String,Object>> changePwd(@RequestBody Map<String, Object> body) throws Exception {
|
|
|
+ public ResponseEntity<Map<String, Object>> changePwd(@RequestBody Map<String, Object> body) throws Exception {
|
|
|
return ResponseEntity.ok(securityService.changePassword(body));
|
|
|
}
|
|
|
|
|
@@ -111,7 +116,7 @@ public class SecurityApi {
|
|
|
* @return
|
|
|
*/
|
|
|
@PostMapping({"user/logOut", "foxlibc/sign-out"})
|
|
|
- public ResponseEntity<Map<String,Object>> logOut() throws Exception {
|
|
|
+ public ResponseEntity<Map<String, Object>> logOut() throws Exception {
|
|
|
return ResponseEntity.ok(securityService.logOut());
|
|
|
}
|
|
|
|
|
@@ -121,7 +126,21 @@ public class SecurityApi {
|
|
|
* @return
|
|
|
*/
|
|
|
@PostMapping({"user/health", "foxlibc/health"})
|
|
|
- public ResponseEntity<Map<String,Object>> health() throws Exception {
|
|
|
+ public ResponseEntity<Map<String, Object>> health() throws Exception {
|
|
|
return ResponseEntity.ok(securityService.userHeartbeat());
|
|
|
}
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 获取公钥字符串
|
|
|
+ *
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @PostMapping("user/publicKey")
|
|
|
+ public ResponseEntity<Map<String, Object>> getPubKey() {
|
|
|
+ ObjectNode objectNode = new ObjectNode(JsonNodeFactory.instance);
|
|
|
+ objectNode.put("pubKeyStr", DataEncryptionUtil.publicKeyStr);
|
|
|
+ objectNode.put("type", DataEncryptionUtil.TYPE);
|
|
|
+ objectNode.put("algorithm", DataEncryptionUtil.ALGORITHM);
|
|
|
+ return ResponseEntity.ok(UniReturnUtil.success(objectNode));
|
|
|
+ }
|
|
|
}
|