inleft
2022-02-21 c5e66af68d7eded8bcc55e0fe26d034d30735c16
commit | author | age
9bcb19 1 /*
I 2 Copyright [2020] [https://www.xiaonuo.vip]
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8   http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15
16 Snowy采用APACHE LICENSE 2.0开源协议,您在使用过程中,需要注意以下几点:
17
18 1.请不要删除和修改根目录下的LICENSE文件。
19 2.请不要删除和修改Snowy源码头部的版权声明。
20 3.请保留源码和相关描述文件的项目出处,作者声明等。
21 4.分发源码时候,请注明软件出处 https://gitee.com/xiaonuobase/snowy
22 5.在修改包名,模块名称,项目代码等时,请注明软件出处 https://gitee.com/xiaonuobase/snowy
23 6.若您的项目无法满足以上几点,可申请商业授权,获取Snowy商业授权许可,请在官网购买授权,地址为 https://www.xiaonuo.vip
24  */
25 package vip.xiaonuo.sys.core.mybatis.fieldfill;
26
27 import cn.hutool.core.util.ObjectUtil;
28 import cn.hutool.log.Log;
29 import com.baomidou.mybatisplus.core.handlers.MetaObjectHandler;
30 import org.apache.ibatis.reflection.MetaObject;
31 import org.apache.ibatis.reflection.ReflectionException;
32 import vip.xiaonuo.core.context.login.LoginContextHolder;
33 import vip.xiaonuo.core.pojo.login.SysLoginUser;
34
35 import java.util.Date;
36
37 /**
38  * 自定义sql字段填充器,自动填充创建修改相关字段
39  *
40  * @author xuyuxiang
41  * @date 2020/3/30 15:21
42  */
43 public class CustomMetaObjectHandler implements MetaObjectHandler {
44
45     private static final Log log = Log.get();
46
47     private static final String CREATE_USER = "createUser";
48
49     private static final String CREATE_TIME = "createTime";
50
51     private static final String UPDATE_USER = "updateUser";
52
53     private static final String UPDATE_TIME = "updateTime";
54
91dc6c 55
I 56     //自定义
57     private static final String CREATE_DATE = "createDate";
58
59     private static final String UPDATE_DATE = "updateDate";
60
9bcb19 61     @Override
I 62     public void insertFill(MetaObject metaObject) {
63         try {
91dc6c 64
I 65             Object updateDate = metaObject.getValue(UPDATE_DATE);
66             if(ObjectUtil.isNull(updateDate)) {
67                 setFieldValByName(UPDATE_DATE, new Date(), metaObject);
68             }
69
70             Object createDate = metaObject.getValue(CREATE_DATE);
71             if(ObjectUtil.isNull(createDate)) {
72                 setFieldValByName(CREATE_DATE, new Date(), metaObject);
73             }
74
9bcb19 75             //为空则设置createUser(BaseEntity)
I 76             Object createUser = metaObject.getValue(CREATE_USER);
77             if(ObjectUtil.isNull(createUser)) {
78                 setFieldValByName(CREATE_USER, this.getUserUniqueId(), metaObject);
79             }
80
81             //为空则设置createTime(BaseEntity)
82             Object createTime = metaObject.getValue(CREATE_TIME);
83             if(ObjectUtil.isNull(createTime)) {
84                 setFieldValByName(CREATE_TIME, new Date(), metaObject);
85             }
91dc6c 86
9bcb19 87         } catch (ReflectionException e) {
I 88             log.warn(">>> CustomMetaObjectHandler处理过程中无相关字段,不做处理");
89         }
90     }
91
92     @Override
93     public void updateFill(MetaObject metaObject) {
94         try {
91dc6c 95             setFieldValByName(UPDATE_DATE, new Date(), metaObject);
I 96
9bcb19 97             //设置updateUser(BaseEntity)
I 98             setFieldValByName(UPDATE_USER, this.getUserUniqueId(), metaObject);
99             //设置updateTime(BaseEntity)
100             setFieldValByName(UPDATE_TIME, new Date(), metaObject);
91dc6c 101
9bcb19 102         } catch (ReflectionException e) {
I 103             log.warn(">>> CustomMetaObjectHandler处理过程中无相关字段,不做处理");
104         }
105     }
106
107     /**
108      * 获取用户唯一id
109      */
110     private Long getUserUniqueId() {
111         try {
112             SysLoginUser sysLoginUser = LoginContextHolder.me().getSysLoginUserWithoutException();
113             if(ObjectUtil.isNotNull(sysLoginUser)) {
114                 return sysLoginUser.getId();
115             } else {
116                 return -1L;
117             }
118         } catch (Exception e) {
119             //如果获取不到就返回-1
120             return -1L;
121         }
122     }
123 }