|
|
|
@@ -1,15 +1,5 @@ |
|
|
|
package com.ruoyi.system.controller; |
|
|
|
|
|
|
|
import java.util.Arrays; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
import org.springframework.web.bind.annotation.GetMapping; |
|
|
|
import org.springframework.web.bind.annotation.PostMapping; |
|
|
|
import org.springframework.web.bind.annotation.PutMapping; |
|
|
|
import org.springframework.web.bind.annotation.RequestBody; |
|
|
|
import org.springframework.web.bind.annotation.RequestMapping; |
|
|
|
import org.springframework.web.bind.annotation.RequestParam; |
|
|
|
import org.springframework.web.bind.annotation.RestController; |
|
|
|
import org.springframework.web.multipart.MultipartFile; |
|
|
|
import com.ruoyi.common.core.domain.R; |
|
|
|
import com.ruoyi.common.core.utils.StringUtils; |
|
|
|
import com.ruoyi.common.core.utils.file.FileTypeUtils; |
|
|
|
@@ -25,22 +15,26 @@ import com.ruoyi.system.api.domain.SysFile; |
|
|
|
import com.ruoyi.system.api.domain.SysUser; |
|
|
|
import com.ruoyi.system.api.model.LoginUser; |
|
|
|
import com.ruoyi.system.service.ISysUserService; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
import org.springframework.web.bind.annotation.*; |
|
|
|
import org.springframework.web.multipart.MultipartFile; |
|
|
|
|
|
|
|
import java.util.Arrays; |
|
|
|
|
|
|
|
/** |
|
|
|
* 个人信息 业务处理 |
|
|
|
* |
|
|
|
* |
|
|
|
* @author ruoyi |
|
|
|
*/ |
|
|
|
@RestController |
|
|
|
@RequestMapping("/user/profile") |
|
|
|
public class SysProfileController extends BaseController |
|
|
|
{ |
|
|
|
public class SysProfileController extends BaseController { |
|
|
|
@Autowired |
|
|
|
private ISysUserService userService; |
|
|
|
|
|
|
|
|
|
|
|
@Autowired |
|
|
|
private TokenService tokenService; |
|
|
|
|
|
|
|
|
|
|
|
@Autowired |
|
|
|
private RemoteFileService remoteFileService; |
|
|
|
|
|
|
|
@@ -48,8 +42,7 @@ public class SysProfileController extends BaseController |
|
|
|
* 个人信息 |
|
|
|
*/ |
|
|
|
@GetMapping |
|
|
|
public AjaxResult profile() |
|
|
|
{ |
|
|
|
public AjaxResult profile() { |
|
|
|
String username = SecurityUtils.getUsername(); |
|
|
|
SysUser user = userService.selectUserByUserName(username); |
|
|
|
AjaxResult ajax = AjaxResult.success(user); |
|
|
|
@@ -70,16 +63,13 @@ public class SysProfileController extends BaseController |
|
|
|
currentUser.setEmail(user.getEmail()); |
|
|
|
currentUser.setPhonenumber(user.getPhonenumber()); |
|
|
|
currentUser.setSex(user.getSex()); |
|
|
|
if (StringUtils.isNotEmpty(user.getPhonenumber()) && !userService.checkPhoneUnique(currentUser)) |
|
|
|
{ |
|
|
|
if (StringUtils.isNotEmpty(user.getPhonenumber()) && !userService.checkPhoneUnique(currentUser)) { |
|
|
|
return error("修改用户'" + loginUser.getUsername() + "'失败,手机号码已存在"); |
|
|
|
} |
|
|
|
if (StringUtils.isNotEmpty(user.getEmail()) && !userService.checkEmailUnique(currentUser)) |
|
|
|
{ |
|
|
|
if (StringUtils.isNotEmpty(user.getEmail()) && !userService.checkEmailUnique(currentUser)) { |
|
|
|
return error("修改用户'" + loginUser.getUsername() + "'失败,邮箱账号已存在"); |
|
|
|
} |
|
|
|
if (userService.updateUserProfile(currentUser) > 0) |
|
|
|
{ |
|
|
|
if (userService.updateUserProfile(currentUser) > 0) { |
|
|
|
// 更新缓存用户信息 |
|
|
|
tokenService.setLoginUser(loginUser); |
|
|
|
return success(); |
|
|
|
@@ -92,54 +82,41 @@ public class SysProfileController extends BaseController |
|
|
|
*/ |
|
|
|
@Log(title = "个人信息", businessType = BusinessType.UPDATE) |
|
|
|
@PutMapping("/updatePwd") |
|
|
|
public AjaxResult updatePwd(String oldPassword, String newPassword) |
|
|
|
{ |
|
|
|
public AjaxResult updatePwd(String oldPassword, String newPassword) throws Exception { |
|
|
|
String username = SecurityUtils.getUsername(); |
|
|
|
SysUser user = userService.selectUserByUserName(username); |
|
|
|
String password = user.getPassword(); |
|
|
|
if (!SecurityUtils.matchesPassword(oldPassword, password)) |
|
|
|
{ |
|
|
|
if (!SecurityUtils.matchesPassword(oldPassword, password)) { |
|
|
|
return error("修改密码失败,旧密码错误"); |
|
|
|
} |
|
|
|
if (SecurityUtils.matchesPassword(newPassword, password)) |
|
|
|
{ |
|
|
|
if (SecurityUtils.matchesPassword(newPassword, password)) { |
|
|
|
return error("新密码不能与旧密码相同"); |
|
|
|
} |
|
|
|
newPassword = SecurityUtils.encryptPassword(newPassword); |
|
|
|
if (userService.resetUserPwd(username, newPassword) > 0) |
|
|
|
{ |
|
|
|
// 更新缓存用户密码 |
|
|
|
LoginUser loginUser = SecurityUtils.getLoginUser(); |
|
|
|
loginUser.getSysUser().setPassword(newPassword); |
|
|
|
tokenService.setLoginUser(loginUser); |
|
|
|
user.setPassword(newPassword); |
|
|
|
if (userService.resetPwd(user) > 0) { |
|
|
|
return success(); |
|
|
|
} |
|
|
|
return error("修改密码异常,请联系管理员"); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
* 头像上传 |
|
|
|
*/ |
|
|
|
@Log(title = "用户头像", businessType = BusinessType.UPDATE) |
|
|
|
@PostMapping("/avatar") |
|
|
|
public AjaxResult avatar(@RequestParam("avatarfile") MultipartFile file) |
|
|
|
{ |
|
|
|
if (!file.isEmpty()) |
|
|
|
{ |
|
|
|
public AjaxResult avatar(@RequestParam("avatarfile") MultipartFile file) { |
|
|
|
if (!file.isEmpty()) { |
|
|
|
LoginUser loginUser = SecurityUtils.getLoginUser(); |
|
|
|
String extension = FileTypeUtils.getExtension(file); |
|
|
|
if (!StringUtils.equalsAnyIgnoreCase(extension, MimeTypeUtils.IMAGE_EXTENSION)) |
|
|
|
{ |
|
|
|
if (!StringUtils.equalsAnyIgnoreCase(extension, MimeTypeUtils.IMAGE_EXTENSION)) { |
|
|
|
return error("文件格式不正确,请上传" + Arrays.toString(MimeTypeUtils.IMAGE_EXTENSION) + "格式"); |
|
|
|
} |
|
|
|
R<SysFile> fileResult = remoteFileService.upload(file); |
|
|
|
if (StringUtils.isNull(fileResult) || StringUtils.isNull(fileResult.getData())) |
|
|
|
{ |
|
|
|
if (StringUtils.isNull(fileResult) || StringUtils.isNull(fileResult.getData())) { |
|
|
|
return error("文件服务异常,请联系管理员"); |
|
|
|
} |
|
|
|
String url = fileResult.getData().getUrl(); |
|
|
|
if (userService.updateUserAvatar(loginUser.getUsername(), url)) |
|
|
|
{ |
|
|
|
if (userService.updateUserAvatar(loginUser.getUsername(), url)) { |
|
|
|
AjaxResult ajax = AjaxResult.success(); |
|
|
|
ajax.put("imgUrl", url); |
|
|
|
// 更新缓存用户头像 |
|
|
|
|