package com.fs.company.controller; import com.fs.common.annotation.Log; import com.fs.common.config.FSConfig; import com.fs.common.core.controller.BaseController; import com.fs.common.core.domain.AjaxResult; import com.fs.common.enums.BusinessType; import com.fs.common.utils.PatternUtils; import com.fs.common.utils.ServletUtils; import com.fs.common.utils.file.FileUploadUtils; import com.fs.company.domain.CompanyUser; import com.fs.company.domain.CompanyVoiceCaller; import com.fs.company.param.CompanyUserEditParam; import com.fs.company.service.ICompanyUserService; import com.fs.company.service.ICompanyVoiceCallerService; import com.fs.core.security.LoginUser; import com.fs.core.security.SecurityUtils; import com.fs.core.web.service.TokenService; import org.springframework.beans.BeanUtils; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.*; import org.springframework.web.multipart.MultipartFile; import java.io.IOException; /** * 个人信息 */ @RestController @RequestMapping("company/user/profile") public class CompanyProfileController extends BaseController { @Autowired private ICompanyUserService userService; @Autowired private TokenService tokenService; @Autowired private ICompanyVoiceCallerService callerService; /** * 个人信息 */ @GetMapping public AjaxResult profile() { LoginUser loginUser = tokenService.getLoginUser(ServletUtils.getRequest()); CompanyUser user = loginUser.getUser(); CompanyVoiceCaller companyVoiceCaller = callerService.selectCompanyVoiceCallerByUserId(user.getCompanyId(), user.getUserId()); if (companyVoiceCaller != null) { user.setCallerNo(companyVoiceCaller.getCallerNo()); } AjaxResult ajax = AjaxResult.success(user); ajax.put("roleGroup", userService.selectUserRoleGroup(loginUser.getUsername())); ajax.put("postGroup", userService.selectUserPostGroup(loginUser.getUsername())); return ajax; } /** * 修改用户 */ @Log(title = "个人信息", businessType = BusinessType.UPDATE) @PutMapping public AjaxResult updateProfile(@RequestBody CompanyUserEditParam param) { CompanyUser user=new CompanyUser(); BeanUtils.copyProperties(param,user); if (userService.updateUserProfile(user) > 0) { LoginUser loginUser = tokenService.getLoginUser(ServletUtils.getRequest()); // 更新缓存用户信息 loginUser.getUser().setNickName(user.getNickName()); loginUser.getUser().setPhonenumber(user.getPhonenumber()); loginUser.getUser().setEmail(user.getEmail()); loginUser.getUser().setSex(user.getSex()); tokenService.setLoginUser(loginUser); return AjaxResult.success(); } return AjaxResult.error("修改个人信息异常,请联系管理员"); } /** * 重置密码 */ @Log(title = "个人信息", businessType = BusinessType.UPDATE) @PutMapping("/updatePwd") public AjaxResult updatePwd(String oldPassword, String newPassword) { LoginUser loginUser = tokenService.getLoginUser(ServletUtils.getRequest()); String userName = loginUser.getUsername(); String password = loginUser.getPassword(); if (!SecurityUtils.matchesPassword(oldPassword, password)) { return AjaxResult.error("修改密码失败,旧密码错误"); } if (SecurityUtils.matchesPassword(newPassword, password)) { return AjaxResult.error("新密码不能与旧密码相同"); } if (!PatternUtils.checkPassword(newPassword)) { return AjaxResult.error("新密码格式不正确,需包含字母、数字和特殊字符,长度为 8-20 位"); } if (userService.resetUserPwd(userName, SecurityUtils.encryptPassword(newPassword)) > 0) { // 更新缓存用户密码 loginUser.getUser().setPassword(SecurityUtils.encryptPassword(newPassword)); tokenService.setLoginUser(loginUser); return AjaxResult.success(); } return AjaxResult.error("修改密码异常,请联系管理员"); } /** * 头像上传 */ @Log(title = "用户头像", businessType = BusinessType.UPDATE) @PostMapping("/avatar") public AjaxResult avatar(@RequestParam("avatarfile") MultipartFile file) throws IOException { if (!file.isEmpty()) { LoginUser loginUser = tokenService.getLoginUser(ServletUtils.getRequest()); String avatar = FileUploadUtils.upload(FSConfig.getAvatarPath(), file); if (userService.updateUserAvatar(loginUser.getUsername(), avatar)>0) { AjaxResult ajax = AjaxResult.success(); ajax.put("imgUrl", avatar); // 更新缓存用户头像 loginUser.getUser().setAvatar(avatar); tokenService.setLoginUser(loginUser); return ajax; } } return AjaxResult.error("上传图片异常,请联系管理员"); } }