|
@@ -0,0 +1,104 @@
|
|
|
+package com.zhongzheng.modules.user.service.impl;
|
|
|
+
|
|
|
+import cn.hutool.core.bean.BeanUtil;
|
|
|
+import cn.hutool.core.util.StrUtil;
|
|
|
+import com.zhongzheng.common.utils.DateUtils;
|
|
|
+import com.zhongzheng.common.utils.ServletUtils;
|
|
|
+import com.zhongzheng.common.utils.ip.IpUtils;
|
|
|
+import com.zhongzheng.modules.user.bo.UserVisitLogAddBo;
|
|
|
+import com.zhongzheng.modules.user.bo.UserVisitLogEditBo;
|
|
|
+import com.zhongzheng.modules.user.bo.UserVisitLogQueryBo;
|
|
|
+import com.zhongzheng.modules.user.domain.UserVisitLog;
|
|
|
+import com.zhongzheng.modules.user.mapper.UserVisitLogMapper;
|
|
|
+import com.zhongzheng.modules.user.service.IUserVisitLogService;
|
|
|
+import com.zhongzheng.modules.user.vo.UserVisitLogVo;
|
|
|
+import org.springframework.stereotype.Service;
|
|
|
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
+import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
|
|
+import com.baomidou.mybatisplus.core.toolkit.Wrappers;
|
|
|
+import com.github.pagehelper.Page;
|
|
|
+
|
|
|
+import java.util.Collection;
|
|
|
+import java.util.Collections;
|
|
|
+import java.util.List;
|
|
|
+import java.util.stream.Collectors;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 用户访问日志Service业务层处理
|
|
|
+ *
|
|
|
+ * @author hjl
|
|
|
+ * @date 2022-08-17
|
|
|
+ */
|
|
|
+@Service
|
|
|
+public class UserVisitLogServiceImpl extends ServiceImpl<UserVisitLogMapper, UserVisitLog> implements IUserVisitLogService {
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public UserVisitLogVo queryById(Long id){
|
|
|
+ UserVisitLog db = this.baseMapper.selectById(id);
|
|
|
+ return BeanUtil.toBean(db, UserVisitLogVo.class);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public List<UserVisitLogVo> queryList(UserVisitLogQueryBo bo) {
|
|
|
+ LambdaQueryWrapper<UserVisitLog> lqw = Wrappers.lambdaQuery();
|
|
|
+ lqw.eq(bo.getUserId() != null, UserVisitLog::getUserId, bo.getUserId());
|
|
|
+ lqw.eq(StrUtil.isNotBlank(bo.getFromPlat()), UserVisitLog::getFromPlat, bo.getFromPlat());
|
|
|
+ lqw.eq(StrUtil.isNotBlank(bo.getIp()), UserVisitLog::getIp, bo.getIp());
|
|
|
+ return entity2Vo(this.list(lqw));
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 实体类转化成视图对象
|
|
|
+ *
|
|
|
+ * @param collection 实体类集合
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ private List<UserVisitLogVo> entity2Vo(Collection<UserVisitLog> collection) {
|
|
|
+ List<UserVisitLogVo> voList = collection.stream()
|
|
|
+ .map(any -> BeanUtil.toBean(any, UserVisitLogVo.class))
|
|
|
+ .collect(Collectors.toList());
|
|
|
+ if (collection instanceof Page) {
|
|
|
+ Page<UserVisitLog> page = (Page<UserVisitLog>)collection;
|
|
|
+ Page<UserVisitLogVo> pageVo = new Page<>();
|
|
|
+ BeanUtil.copyProperties(page,pageVo);
|
|
|
+ pageVo.addAll(voList);
|
|
|
+ voList = pageVo;
|
|
|
+ }
|
|
|
+ return voList;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public Boolean insertByAddBo(UserVisitLogAddBo bo) {
|
|
|
+ UserVisitLog add = BeanUtil.toBean(bo, UserVisitLog.class);
|
|
|
+ validEntityBeforeSave(add);
|
|
|
+ add.setIp(IpUtils.getIpAddr(ServletUtils.getRequest()));
|
|
|
+ add.setCreateTime(DateUtils.getNowTime());
|
|
|
+ add.setUpdateTime(DateUtils.getNowTime());
|
|
|
+ return this.save(add);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public Boolean updateByEditBo(UserVisitLogEditBo bo) {
|
|
|
+ UserVisitLog update = BeanUtil.toBean(bo, UserVisitLog.class);
|
|
|
+ validEntityBeforeSave(update);
|
|
|
+ update.setUpdateTime(DateUtils.getNowTime());
|
|
|
+ return this.updateById(update);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 保存前的数据校验
|
|
|
+ *
|
|
|
+ * @param entity 实体类数据
|
|
|
+ */
|
|
|
+ private void validEntityBeforeSave(UserVisitLog entity){
|
|
|
+ //TODO 做一些数据校验,如唯一约束
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public Boolean deleteWithValidByIds(Collection<Long> ids, Boolean isValid) {
|
|
|
+ if(isValid){
|
|
|
+ //TODO 做一些业务上的校验,判断是否需要校验
|
|
|
+ }
|
|
|
+ return this.removeByIds(ids);
|
|
|
+ }
|
|
|
+}
|