From edfa49f201d3fc8fc6b51b700e91f80246660855 Mon Sep 17 00:00:00 2001
From: luxiaotao1123 <t1341870251@163.com>
Date: 星期二, 13 二月 2024 20:29:14 +0800
Subject: [PATCH] #

---
 zy-asrs-wcs/src/main/java/com/zy/asrs/wcs/sys/service/impl/UserServiceImpl.java |   22 ++++++++++++++++++++++
 1 files changed, 22 insertions(+), 0 deletions(-)

diff --git a/zy-asrs-wcs/src/main/java/com/zy/asrs/wcs/sys/service/impl/UserServiceImpl.java b/zy-asrs-wcs/src/main/java/com/zy/asrs/wcs/sys/service/impl/UserServiceImpl.java
index e1f9937..81953c4 100644
--- a/zy-asrs-wcs/src/main/java/com/zy/asrs/wcs/sys/service/impl/UserServiceImpl.java
+++ b/zy-asrs-wcs/src/main/java/com/zy/asrs/wcs/sys/service/impl/UserServiceImpl.java
@@ -7,6 +7,7 @@
 import com.zy.asrs.wcs.sys.service.RoleMenuService;
 import com.zy.asrs.wcs.sys.service.UserRoleService;
 import com.zy.asrs.wcs.sys.service.UserService;
+import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;
 import org.springframework.stereotype.Service;
 
 import javax.annotation.Resource;
@@ -18,6 +19,8 @@
     private UserRoleService userRoleService;
     @Resource
     private RoleMenuService roleMenuService;
+    @Resource
+    private BCryptPasswordEncoder bCryptPasswordEncoder;
 
     @Override
     public User getByUsername(String username, Long hostId) {
@@ -32,5 +35,24 @@
         return user;
     }
 
+    @Override
+    public User getByIdRel(Long userId) {
+        User user = this.getById(userId);
+        if (user != null) {
+            user.setRoles(userRoleService.listByUserId(user.getId()));
+            user.setAuthorities(roleMenuService.listMenuByUserId(user.getId(), null));
+        }
+        return user;
+    }
+
+    @Override
+    public boolean comparePassword(String dbPassword, String inputPassword) {
+        return bCryptPasswordEncoder.matches(inputPassword, dbPassword);
+    }
+
+    @Override
+    public String encodePassword(String password) {
+        return password == null ? null : bCryptPasswordEncoder.encode(password);
+    }
 
 }

--
Gitblit v1.9.1