| | |
| | | import com.vincent.rsf.server.system.controller.param.ResetPwdParam; |
| | | import com.vincent.rsf.server.system.entity.User; |
| | | import com.vincent.rsf.server.system.entity.UserRole; |
| | | import com.vincent.rsf.server.system.enums.StatusType; |
| | | import com.vincent.rsf.server.system.service.UserRoleService; |
| | | import com.vincent.rsf.server.system.service.UserService; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | |
| | | import java.util.*; |
| | | |
| | | @RestController |
| | | @RequestMapping("") |
| | | public class UserController extends BaseController { |
| | | |
| | | public static final String COMMON_PASSWORD = "123456"; |
| | |
| | | && userService.count(new LambdaQueryWrapper<User>().eq(User::getPhone, user.getPhone())) > 0) { |
| | | return R.error("the phone already exist"); |
| | | } |
| | | if (!Cools.isEmpty(user.getEmail()) |
| | | && userService.count(new LambdaQueryWrapper<User>().eq(User::getEmail, user.getEmail())) > 0) { |
| | | return R.error("the email already exist"); |
| | | } |
| | | |
| | | if (Cools.isEmpty(user.getPassword())) { |
| | | user.setPassword(userService.encodePassword(COMMON_PASSWORD)); |
| | | } |
| | | |
| | | Date now = new Date(); |
| | | user.setCreateBy(getLoginUserId()); |
| | | user.setCreateTime(new Date()); |
| | | user.setCreateTime(now); |
| | | user.setUpdateBy(getLoginUserId()); |
| | | user.setUpdateTime(new Date()); |
| | | |
| | | user.setUpdateTime(now); |
| | | user.setStatus(StatusType.ENABLE.val); |
| | | if (!userService.save(user)) { |
| | | throw new CoolException("Internal Server Error"); |
| | | } |
| | |
| | | .ne(User::getId, user.getId())) > 0) { |
| | | return R.error("the phone already exist"); |
| | | } |
| | | if (!Cools.isEmpty(user.getEmail()) && userService.count(new LambdaQueryWrapper<User>() |
| | | .eq(User::getEmail, user.getEmail()) |
| | | .ne(User::getId, user.getId())) > 0) { |
| | | return R.error("the email already exist"); |
| | | } |
| | | |
| | | if (!Cools.isEmpty(user.getPassword())) { |
| | | user.setPassword(userService.encodePassword(user.getPassword())); |