|
|
@@ -1,181 +0,0 @@
|
|
|
-package easydo.technology.service.impl;
|
|
|
-
|
|
|
-import java.io.IOException;
|
|
|
-import java.lang.reflect.Method;
|
|
|
-import java.util.ArrayList;
|
|
|
-import java.util.Arrays;
|
|
|
-import java.util.LinkedHashMap;
|
|
|
-import java.util.List;
|
|
|
-import java.util.Map;
|
|
|
-
|
|
|
-import javax.servlet.http.HttpServletResponse;
|
|
|
-
|
|
|
-import com.alibaba.fastjson.JSONObject;
|
|
|
-import com.baomidou.mybatisplus.core.conditions.update.UpdateWrapper;
|
|
|
-import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
-
|
|
|
-import org.aspectj.lang.ProceedingJoinPoint;
|
|
|
-import org.aspectj.lang.reflect.MethodSignature;
|
|
|
-// 默认不使用缓存
|
|
|
-//import org.springframework.cache.annotation.CacheConfig;
|
|
|
-//import org.springframework.cache.annotation.CacheEvict;
|
|
|
-//import org.springframework.cache.annotation.Cacheable;
|
|
|
-import org.springframework.data.domain.Pageable;
|
|
|
-import org.springframework.stereotype.Service;
|
|
|
-import org.springframework.transaction.annotation.Propagation;
|
|
|
-import org.springframework.transaction.annotation.Transactional;
|
|
|
-
|
|
|
-import ch.qos.logback.core.util.FileUtil;
|
|
|
-import easydo.technology.base.PageInfo;
|
|
|
-import easydo.technology.base.QueryHelpMybatisPlus;
|
|
|
-import easydo.technology.base.impl.CommonServiceImpl;
|
|
|
-import easydo.technology.domain.Log;
|
|
|
-import easydo.technology.mapper.LogMapper;
|
|
|
-import easydo.technology.service.LogService;
|
|
|
-import easydo.technology.service.dto.LogErrorDTO;
|
|
|
-import easydo.technology.service.dto.LogQueryParam;
|
|
|
-import easydo.technology.service.dto.LogSmallDTO;
|
|
|
-import easydo.technology.utils.ConvertUtil;
|
|
|
-import easydo.technology.utils.PageUtil;
|
|
|
-import easydo.technology.utils.ValidationUtil;
|
|
|
-import io.netty.util.internal.ObjectUtil;
|
|
|
-import lombok.AllArgsConstructor;
|
|
|
-import lombok.extern.slf4j.Slf4j;
|
|
|
-
|
|
|
-/**
|
|
|
- * @author jinjin
|
|
|
- * @date 2020-09-27
|
|
|
- */
|
|
|
-@Slf4j
|
|
|
-@Service
|
|
|
-@AllArgsConstructor
|
|
|
-// @CacheConfig(cacheNames = LogService.CACHE_KEY)
|
|
|
-@Transactional(propagation = Propagation.SUPPORTS, readOnly = true, rollbackFor = Exception.class)
|
|
|
-public class LogServiceImpl extends CommonServiceImpl<Log> implements LogService {
|
|
|
-
|
|
|
- // private final RedisUtils redisUtils;
|
|
|
- private final LogMapper logMapper;
|
|
|
-
|
|
|
- @Override
|
|
|
- public Object queryAll(LogQueryParam query, Pageable pageable) {
|
|
|
- IPage<Log> page = PageUtil.toMybatisPage(pageable);
|
|
|
- IPage<Log> pageList = logMapper.selectPage(page, QueryHelpMybatisPlus.getPredicate(query));
|
|
|
- String status = "ERROR";
|
|
|
- if (status.equals(query.getLogType())) {
|
|
|
- return ConvertUtil.convertPage(pageList, LogErrorDTO.class);
|
|
|
- }
|
|
|
- return ConvertUtil.convertPage(pageList, Log.class);
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- public List<Log> queryAll(LogQueryParam query) {
|
|
|
- return logMapper.selectList(QueryHelpMybatisPlus.getPredicate(query));
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- public PageInfo<LogSmallDTO> queryAllByUser(LogQueryParam query, Pageable pageable) {
|
|
|
- IPage<Log> page = PageUtil.toMybatisPage(pageable);
|
|
|
- IPage<Log> pageList = logMapper.selectPage(page, QueryHelpMybatisPlus.getPredicate(query));
|
|
|
- return ConvertUtil.convertPage(pageList, LogSmallDTO.class);
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- // @Cacheable(key = "'id:' + #p0")
|
|
|
- public Log findById(Long id) {
|
|
|
- return logMapper.selectById(id);
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- @Transactional(rollbackFor = Exception.class)
|
|
|
- public boolean removeByLogType(String logType) {
|
|
|
- UpdateWrapper<Log> wrapper = new UpdateWrapper<>();
|
|
|
- wrapper.lambda().eq(Log::getLogType, logType);
|
|
|
- return logMapper.delete(wrapper) > 0;
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- @Transactional(rollbackFor = Exception.class)
|
|
|
- public void save(String username, String browser, String ip, ProceedingJoinPoint joinPoint, Log log) {
|
|
|
-
|
|
|
- MethodSignature signature = (MethodSignature) joinPoint.getSignature();
|
|
|
- Method method = signature.getMethod();
|
|
|
- easydo.technology.annotation.Log aopLog = method.getAnnotation(easydo.technology.annotation.Log.class);
|
|
|
-
|
|
|
- // 方法路径
|
|
|
- String methodName = joinPoint.getTarget().getClass().getName() + "." + signature.getName() + "()";
|
|
|
-
|
|
|
- StringBuilder params = new StringBuilder("{");
|
|
|
- // 参数值
|
|
|
- List<Object> argValues = new ArrayList<>(Arrays.asList(joinPoint.getArgs()));
|
|
|
- // 参数名称
|
|
|
- for (Object argValue : argValues) {
|
|
|
- params.append(argValue).append(" ");
|
|
|
- }
|
|
|
- // 描述
|
|
|
- if (log != null) {
|
|
|
- log.setDescription(aopLog.value());
|
|
|
- }
|
|
|
- assert log != null;
|
|
|
- log.setRequestIp(ip);
|
|
|
-
|
|
|
- String loginPath = "login";
|
|
|
- if (loginPath.equals(signature.getName())) {
|
|
|
- try {
|
|
|
- username = JSONObject.parseObject(JSONObject.toJSONString(argValues.get(0))).getString("username");
|
|
|
- } catch (Exception e) {
|
|
|
- LogServiceImpl.log.error(e.getMessage(), e);
|
|
|
- }
|
|
|
- }
|
|
|
- // log.setAddress(StringUtils.getCityInfo(log.getRequestIp()));
|
|
|
- log.setMethod(methodName);
|
|
|
- log.setUsername(username);
|
|
|
- log.setParams(params.toString() + " }");
|
|
|
- log.setBrowser(browser);
|
|
|
- if (log.getId() == null) {
|
|
|
- logMapper.insert(log);
|
|
|
- } else {
|
|
|
- logMapper.updateById(log);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- public Object findByErrDetail(Long id) {
|
|
|
- Log log = findById(id);
|
|
|
- ValidationUtil.isNull(log.getId(), "Log", "id", id);
|
|
|
- byte[] details = log.getExceptionDetail();
|
|
|
- // return Dict.create().set("exception", new String(details != null ? details :
|
|
|
- // "".getBytes()));
|
|
|
- return new String(details != null ? details : "".getBytes());
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- public void download(List<Log> logs, HttpServletResponse response) throws IOException {
|
|
|
- List<Map<String, Object>> list = new ArrayList<>();
|
|
|
- for (Log log : logs) {
|
|
|
- Map<String, Object> map = new LinkedHashMap<>();
|
|
|
- map.put("用户名", log.getUsername());
|
|
|
- map.put("IP", log.getRequestIp());
|
|
|
- map.put("IP来源", log.getAddress());
|
|
|
- map.put("描述", log.getDescription());
|
|
|
- map.put("浏览器", log.getBrowser());
|
|
|
- map.put("请求耗时/毫秒", log.getTime());
|
|
|
- map.put("异常详情", new String(
|
|
|
- log.getExceptionDetail() != null ? log.getExceptionDetail() : "".getBytes()));
|
|
|
- map.put("创建日期", log.getCreateTime());
|
|
|
- list.add(map);
|
|
|
- }
|
|
|
- // FileUtil.downloadExcel(list, response);
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- @Transactional(rollbackFor = Exception.class)
|
|
|
- public void delAllByError() {
|
|
|
- this.removeByLogType("ERROR");
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- @Transactional(rollbackFor = Exception.class)
|
|
|
- public void delAllByInfo() {
|
|
|
- this.removeByLogType("INFO");
|
|
|
- }
|
|
|
-}
|