123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- package com.ruoyi.web.controller.system;
- import org.apache.shiro.crypto.hash.Md5Hash;
- import org.slf4j.Logger;
- import org.slf4j.LoggerFactory;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.stereotype.Controller;
- import org.springframework.ui.ModelMap;
- import org.springframework.web.bind.annotation.GetMapping;
- import org.springframework.web.bind.annotation.PathVariable;
- import org.springframework.web.bind.annotation.PostMapping;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RequestParam;
- import org.springframework.web.bind.annotation.ResponseBody;
- import org.springframework.web.multipart.MultipartFile;
- import com.ruoyi.common.annotation.Log;
- import com.ruoyi.common.base.AjaxResult;
- import com.ruoyi.common.config.Global;
- import com.ruoyi.common.enums.BusinessType;
- import com.ruoyi.framework.util.FileUploadUtils;
- import com.ruoyi.system.domain.SysUser;
- import com.ruoyi.system.service.ISysDictDataService;
- import com.ruoyi.system.service.ISysUserService;
- import com.ruoyi.web.core.base.BaseController;
- /**
- * 个人信息 业务处理
- *
- * @author ruoyi
- */
- @Controller
- @RequestMapping("/system/user/profile")
- public class SysProfileController extends BaseController
- {
- private static final Logger log = LoggerFactory.getLogger(SysProfileController.class);
- private String prefix = "system/user/profile";
- @Autowired
- private ISysUserService userService;
- @Autowired
- private ISysDictDataService dictDataService;
- /**
- * 个人信息
- */
- @GetMapping()
- public String profile(ModelMap mmap)
- {
- SysUser user = getUser();
- user.setSex(dictDataService.selectDictLabel("sys_user_sex", user.getSex()));
- mmap.put("user", user);
- mmap.put("roleGroup", userService.selectUserRoleGroup(user.getUserId()));
- mmap.put("postGroup", userService.selectUserPostGroup(user.getUserId()));
- return prefix + "/profile";
- }
- @GetMapping("/checkPassword")
- @ResponseBody
- public boolean checkPassword(String password)
- {
- SysUser user = getUser();
- String encrypt = new Md5Hash(user.getLoginName() + password + user.getSalt()).toHex().toString();
- if (user.getPassword().equals(encrypt))
- {
- return true;
- }
- return false;
- }
- @GetMapping("/resetPwd/{userId}")
- public String resetPwd(@PathVariable("userId") Long userId, ModelMap mmap)
- {
- mmap.put("user", userService.selectUserById(userId));
- return prefix + "/resetPwd";
- }
- @Log(title = "重置密码", businessType = BusinessType.UPDATE)
- @PostMapping("/resetPwd")
- @ResponseBody
- public AjaxResult resetPwd(SysUser user)
- {
- int rows = userService.resetUserPwd(user);
- if (rows > 0)
- {
- setUser(userService.selectUserById(user.getUserId()));
- return success();
- }
- return error();
- }
- /**
- * 修改用户
- */
- @GetMapping("/edit/{userId}")
- public String edit(@PathVariable("userId") Long userId, ModelMap mmap)
- {
- mmap.put("user", userService.selectUserById(userId));
- return prefix + "/edit";
- }
- /**
- * 修改头像
- */
- @GetMapping("/avatar/{userId}")
- public String avatar(@PathVariable("userId") Long userId, ModelMap mmap)
- {
- mmap.put("user", userService.selectUserById(userId));
- return prefix + "/avatar";
- }
- /**
- * 修改用户
- */
- @Log(title = "个人信息", businessType = BusinessType.UPDATE)
- @PostMapping("/update")
- @ResponseBody
- public AjaxResult update(SysUser user)
- {
- if (userService.updateUserInfo(user) > 0)
- {
- setUser(userService.selectUserById(user.getUserId()));
- return success();
- }
- return error();
- }
- /**
- * 保存头像
- */
- @Log(title = "个人信息", businessType = BusinessType.UPDATE)
- @PostMapping("/updateAvatar")
- @ResponseBody
- public AjaxResult updateAvatar(SysUser user, @RequestParam("avatarfile") MultipartFile file)
- {
- try
- {
- if (!file.isEmpty())
- {
- String avatar = FileUploadUtils.upload(Global.getAvatarPath(), file);
- user.setAvatar(avatar);
- if (userService.updateUserInfo(user) > 0)
- {
- setUser(userService.selectUserById(user.getUserId()));
- return success();
- }
- }
- return error();
- }
- catch (Exception e)
- {
- log.error("修改头像失败!", e);
- return error(e.getMessage());
- }
- }
- }
|