SysProfileController.java 10.2 KB
package com.ruoyi.web.controller.system;

import java.util.HashMap;
import java.util.Map;

import cn.hutool.http.HttpRequest;
import com.alibaba.fastjson2.JSON;
import com.alibaba.fastjson2.JSONObject;
import com.ruoyi.common.utils.sign.Base64;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
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.annotation.Log;
import com.ruoyi.common.config.RuoYiConfig;
import com.ruoyi.common.core.controller.BaseController;
import com.ruoyi.common.core.domain.AjaxResult;
import com.ruoyi.common.core.domain.entity.SysUser;
import com.ruoyi.common.core.domain.model.LoginUser;
import com.ruoyi.common.enums.BusinessType;
import com.ruoyi.common.utils.SecurityUtils;
import com.ruoyi.common.utils.StringUtils;
import com.ruoyi.common.utils.file.FileUploadUtils;
import com.ruoyi.common.utils.file.MimeTypeUtils;
import com.ruoyi.framework.web.service.TokenService;
import com.ruoyi.system.service.ISysUserService;

/**
 * 个人信息 业务处理
 * 
 * @author ruoyi
 */
@RestController
@RequestMapping("/system/user/profile")
public class SysProfileController extends BaseController
{
    @Autowired
    private ISysUserService userService;

    @Autowired
    private TokenService tokenService;

    @Value("${secret.url}")
    String secretUrl;

    @Value("${secret.appid}")
    String secretAppid;

    @Value("${secret.code}")
    String secretCode;

    @Value("${secret.encryptKeyCode}")
    String secretEncryptKeyCode;

    @Value("${secret.hmacKeyCode}")
    String secretHmacKeyCode;

    /**
     * 个人信息
     */
    @GetMapping
    public AjaxResult profile()
    {
        LoginUser loginUser = getLoginUser();
        SysUser user = loginUser.getUser();
        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 SysUser user)
    {
        LoginUser loginUser = getLoginUser();
        SysUser currentUser = loginUser.getUser();
        currentUser.setNickName(user.getNickName());
        currentUser.setEmail(user.getEmail());
        currentUser.setPhonenumber(user.getPhonenumber());
        currentUser.setSex(user.getSex());
        if (StringUtils.isNotEmpty(user.getPhonenumber()) && !userService.checkPhoneUnique(currentUser))
        {
            return error("修改用户'" + loginUser.getUsername() + "'失败,手机号码已存在");
        }
        if (StringUtils.isNotEmpty(user.getEmail()) && !userService.checkEmailUnique(currentUser))
        {
            return error("修改用户'" + loginUser.getUsername() + "'失败,邮箱账号已存在");
        }
        if (userService.updateUserProfile(currentUser) > 0)
        {
            // 更新缓存用户信息
            tokenService.setLoginUser(loginUser);
            return success();
        }
        return error("修改个人信息异常,请联系管理员");
    }

    /**
     * 重置密码
     */
    @Log(title = "个人信息", businessType = BusinessType.UPDATE)
    @PutMapping("/updatePwd")
    public AjaxResult updatePwd(@RequestBody Map<String, String> params) {
        String authorization= Base64.encode((secretAppid + ":" + secretCode).getBytes());
        String oldPassword = params.get("oldPassword");
        String newPassword = params.get("newPassword");
        LoginUser loginUser = getLoginUser();
        String userName = loginUser.getUsername();
        String password = loginUser.getPassword();

        // 调用加密机验证加密算法,进行加密算法,旧密码验证
        Map<String, String> oldParams = new HashMap<String, String>();
        String encryptoldPassword= Base64.encode(oldPassword.getBytes());
        oldParams.put("keyCode", secretEncryptKeyCode);
        oldParams.put("algorithmParam", "SM4/ECB/PKCS7Padding");
        oldParams.put("data", encryptoldPassword);
        String enoldBody = HttpRequest.post(secretUrl+"/api/v1/cipher/encrypt").header("Authorization","Basic "+authorization).body(JSON.toJSONString(oldParams)).execute().body();
        JSONObject enoldjsonObject = JSON.parseObject(enoldBody);
        String oldPasswordEnc="";
        if(enoldjsonObject!=null){
            String resCode=enoldjsonObject.getString("code");
            if(!resCode.equals("0")){
                return AjaxResult.error(enoldjsonObject.getString("message"));
            }else {
                JSONObject enData=JSONObject.parseObject(enoldjsonObject.getString("data"));
                oldPasswordEnc=enData.getString("encData");
            }
        }

        // 调用加密机验证加密算法,进行加密算法,旧密码验证
        Map<String, String> enNewParams = new HashMap<String, String>();
        String encryptNewPassword= Base64.encode(newPassword.getBytes());
        enNewParams.put("keyCode", secretEncryptKeyCode);
        enNewParams.put("algorithmParam", "SM4/ECB/PKCS7Padding");
        enNewParams.put("data", encryptNewPassword);
        String ennewBody = HttpRequest.post(secretUrl+"/api/v1/cipher/encrypt").header("Authorization","Basic "+authorization).body(JSON.toJSONString(enNewParams)).execute().body();
        JSONObject ennewjsonObject = JSON.parseObject(ennewBody);
        String newPasswordEnc="";
        if(ennewjsonObject!=null){
            String resCode=ennewjsonObject.getString("code");
            if(!resCode.equals("0")){
                return AjaxResult.error(ennewjsonObject.getString("message"));
            }else {
                JSONObject enData=JSONObject.parseObject(ennewjsonObject.getString("data"));
                newPasswordEnc=enData.getString("encData");
            }
        }

        if (!SecurityUtils.matchesPassword(oldPasswordEnc, password))
        {
            return error("修改密码失败,旧密码错误");
        }
        if (SecurityUtils.matchesPassword(newPasswordEnc, password))
        {
            return error("新密码不能与旧密码相同");
        }
        //调用加密机验证数据完整性校验
        String hmacData=Base64.encode((userName + ":" + newPassword).getBytes());
        Map<String, String> hmacParams = new HashMap<String, String>();
        hmacParams.put("keyCode", secretHmacKeyCode);
        hmacParams.put("algorithmParam", "HMAC_SM3");
        hmacParams.put("data", hmacData);
        String body = HttpRequest.post(secretUrl+"/api/v1/cipher/hmac").header("Authorization","Basic "+authorization).body(JSON.toJSONString(hmacParams)).execute().body();
        JSONObject jsonObject = JSON.parseObject(body);
        if(jsonObject!=null){
            String resCode=jsonObject.getString("code");
            if(!resCode.equals("0")){
                return AjaxResult.error(jsonObject.getString("message"));
            }else {
                //插入数据库
                JSONObject enData=JSONObject.parseObject(jsonObject.getString("data"));
                String resHmac=enData.getString("hmac");
                userService.resetUserHmac(userName,resHmac);
            }
        }

        // 调用加密机验证加密算法,进行加密算法
        Map<String, String> enParams = new HashMap<String, String>();

        String encryptData= Base64.encode(newPassword.getBytes());
        enParams.put("keyCode", secretEncryptKeyCode);
        enParams.put("algorithmParam", "SM4/ECB/PKCS7Padding");
        enParams.put("data", encryptData);
        String enBody = HttpRequest.post(secretUrl+"/api/v1/cipher/encrypt").header("Authorization","Basic "+authorization).body(JSON.toJSONString(enParams)).execute().body();
        JSONObject enjsonObject = JSON.parseObject(enBody);
        String encData="";
        if(enjsonObject!=null){
            String resCode=enjsonObject.getString("code");
            if(!resCode.equals("0")){
                return AjaxResult.error(enjsonObject.getString("message"));
            }else {
                JSONObject enData=JSONObject.parseObject(enjsonObject.getString("data"));
                encData=enData.getString("encData");
            }
        }

        newPassword = SecurityUtils.encryptPassword(encData);
        if (userService.resetUserPwd(userName, newPassword) > 0)
        {
            // 更新缓存用户密码
            loginUser.getUser().setPassword(newPassword);
            tokenService.setLoginUser(loginUser);
            return success();
        }
        return error("修改密码异常,请联系管理员");
    }

    /**
     * 头像上传
     */
    @Log(title = "用户头像", businessType = BusinessType.UPDATE)
    @PostMapping("/avatar")
    public AjaxResult avatar(@RequestParam("avatarfile") MultipartFile file) throws Exception
    {
        if (!file.isEmpty())
        {
            LoginUser loginUser = getLoginUser();
            String avatar = FileUploadUtils.upload(RuoYiConfig.getAvatarPath(), file, MimeTypeUtils.IMAGE_EXTENSION);
            if (userService.updateUserAvatar(loginUser.getUsername(), avatar))
            {
                AjaxResult ajax = AjaxResult.success();
                ajax.put("imgUrl", avatar);
                // 更新缓存用户头像
                loginUser.getUser().setAvatar(avatar);
                tokenService.setLoginUser(loginUser);
                return ajax;
            }
        }
        return error("上传图片异常,请联系管理员");
    }
}