疯狂的狮子li
2021-10-11 aaf9f574596e997f1428db3c678319c5eb68f030
ruoyi-framework/src/main/java/com/ruoyi/framework/mybatisplus/CreateAndUpdateMetaObjectHandler.java
@@ -1,11 +1,11 @@
package com.ruoyi.framework.mybatisplus;
import cn.hutool.core.lang.Validator;
import cn.hutool.http.HttpStatus;
import com.baomidou.mybatisplus.core.handlers.MetaObjectHandler;
import com.ruoyi.common.core.domain.model.LoginUser;
import com.ruoyi.common.exception.CustomException;
import com.ruoyi.common.exception.ServiceException;
import com.ruoyi.common.utils.SecurityUtils;
import lombok.extern.slf4j.Slf4j;
import org.apache.ibatis.reflection.MetaObject;
import java.util.Date;
@@ -16,6 +16,7 @@
 * @author Lion Li
 * @date 2021/4/25
 */
@Slf4j
public class CreateAndUpdateMetaObjectHandler implements MetaObjectHandler {
   @Override
@@ -23,35 +24,32 @@
      try {
         //根据属性名字设置要填充的值
         if (metaObject.hasGetter("createTime")) {
            if (Validator.isEmpty(metaObject.getValue("createTime"))) {
               this.setFieldValByName("createTime", new Date(), metaObject);
            }
            this.setFieldValByName("createTime", new Date(), metaObject);
         }
         if (metaObject.hasGetter("createBy")) {
            if (Validator.isEmpty(metaObject.getValue("createBy"))) {
            if (metaObject.getValue("createBy") == null) {
               this.setFieldValByName("createBy", getLoginUsername(), metaObject);
            }
         }
      } catch (Exception e) {
         throw new CustomException("自动注入异常 => " + e.getMessage(), HttpStatus.HTTP_UNAUTHORIZED);
         throw new ServiceException("自动注入异常 => " + e.getMessage(), HttpStatus.HTTP_UNAUTHORIZED);
      }
      updateFill(metaObject);
   }
   @Override
   public void updateFill(MetaObject metaObject) {
      try {
         if (metaObject.hasGetter("updateBy")) {
            if (Validator.isEmpty(metaObject.getValue("updateBy"))) {
            if (metaObject.getValue("updateBy") == null) {
               this.setFieldValByName("updateBy", getLoginUsername(), metaObject);
            }
         }
         if (metaObject.hasGetter("updateTime")) {
            if (Validator.isEmpty(metaObject.getValue("updateTime"))) {
               this.setFieldValByName("updateTime", new Date(), metaObject);
            }
            this.setFieldValByName("updateTime", new Date(), metaObject);
         }
      } catch (Exception e) {
         throw new CustomException("自动注入异常 => " + e.getMessage(), HttpStatus.HTTP_UNAUTHORIZED);
         throw new ServiceException("自动注入异常 => " + e.getMessage(), HttpStatus.HTTP_UNAUTHORIZED);
      }
   }
@@ -59,9 +57,12 @@
    * 获取登录用户名
    */
   private String getLoginUsername() {
      LoginUser loginUser = SecurityUtils.getLoginUser();
      if (Validator.isEmpty(loginUser)) {
         throw new CustomException("用户未登录 => 无法获取用户信息");
      LoginUser loginUser;
      try {
         loginUser = SecurityUtils.getLoginUser();
      } catch (Exception e) {
         log.warn("自动注入警告 => 用户未登录");
         return null;
      }
      return loginUser.getUsername();
   }