LogAspect.java 9.13 KB
package com.lhcredit.framework.aspectj;

import java.lang.reflect.Method;
import java.util.Date;
import java.util.Map;

import com.lhcredit.common.constant.Constants;
import com.lhcredit.common.utils.IpUtils;
import com.lhcredit.common.utils.http.HttpUtils;
import com.lhcredit.framework.aspectj.lang.enums.OperatorType;
import com.lhcredit.framework.web.domain.AjaxResult;
import com.lhcredit.project.business.frontLoginInfo.domain.FrontLoginInfo;
import com.lhcredit.project.business.frontLoginInfo.service.FrontLoginInfoServiceImpl;
import com.lhcredit.project.business.frontUser.domain.FrontUserMon;
import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.Signature;
import org.aspectj.lang.annotation.*;
import org.aspectj.lang.reflect.MethodSignature;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.core.annotation.Order;
import org.springframework.stereotype.Component;
import com.alibaba.fastjson.JSONObject;
import com.lhcredit.common.utils.ServletUtils;
import com.lhcredit.common.utils.StringUtils;
import com.lhcredit.common.utils.security.ShiroUtils;
import com.lhcredit.framework.aspectj.lang.annotation.Log;
import com.lhcredit.framework.aspectj.lang.enums.BusinessStatus;
import com.lhcredit.framework.manager.AsyncManager;
import com.lhcredit.framework.manager.factory.AsyncFactory;
import com.lhcredit.project.monitor.operlog.domain.OperLog;
import com.lhcredit.project.system.user.domain.User;

import javax.servlet.http.HttpServletRequest;

/**
 * 操作日志记录处理
 */
@Aspect
@Component
@Order(2)
public class LogAspect {


    @Autowired
    private FrontLoginInfoServiceImpl frontLoginInfoService;

    private static final Logger log = LoggerFactory.getLogger(LogAspect.class);

    // 配置织入点
    @Pointcut("@annotation(com.lhcredit.framework.aspectj.lang.annotation.Log)")
    public void logPointCut() {
    }



    /**
     * 处理完请求后执行
     *
     * @param joinPoint 切点
     */
    @AfterReturning(pointcut = "logPointCut()")
    public void doAfterReturning(JoinPoint joinPoint) {
        handleLog(joinPoint, null);
    }

    /**
     * 拦截异常操作
     *
     * @param joinPoint 切点
     * @param e         异常
     */
    @AfterThrowing(value = "logPointCut()", throwing = "e")
    public void doAfterThrowing(JoinPoint joinPoint, Exception e) {
        handleLog(joinPoint, e);
    }

    protected void handleLog(final JoinPoint joinPoint, final Exception e) {
        try {
            // 获得注解
            Log controllerLog = getAnnotationLog(joinPoint);
            if (controllerLog == null) {
                return;
            }
            //如果是后台
            if (OperatorType.MANAGE.equals(controllerLog.operatorType())) {
                // 获取当前的用户
                User currentUser = ShiroUtils.getSysUser();

                // *========数据库日志=========*//
                OperLog operLog = new OperLog();
                operLog.setStatus(BusinessStatus.SUCCESS.ordinal());
                // 请求的地址
                String ip = ShiroUtils.getIp();
                operLog.setOperIp(ip);

                operLog.setOperUrl(ServletUtils.getRequest().getRequestURI());
                if (currentUser != null) {
                    operLog.setOperName(currentUser.getLoginName());
                    if (StringUtils.isNotNull(currentUser.getDept())
                            && StringUtils.isNotEmpty(currentUser.getDept().getDeptName())) {
                        operLog.setDeptName(currentUser.getDept().getDeptName());
                    }
                }

                if (e != null) {
                    operLog.setStatus(BusinessStatus.FAIL.ordinal());
                    operLog.setErrorMsg(StringUtils.substring(e.getMessage(), 0, 2000));
                }
                // 设置方法名称
                String className = joinPoint.getTarget().getClass().getName();
                String methodName = joinPoint.getSignature().getName();
                operLog.setMethod(className + "." + methodName + "()");
                // 处理设置注解上的参数
                getControllerMethodDescription(controllerLog, operLog);
                // 保存数据库
                AsyncManager.me().execute(AsyncFactory.recordOper(operLog));
                //如果是前台
            } else if (OperatorType.WEB.equals(controllerLog.operatorType())) {
                // *========数据库日志=========*//
                OperLog operLog = new OperLog();
                operLog.setStatus(BusinessStatus.SUCCESS.ordinal());
                // 请求的地址
                String ip = IpUtils.getIpAddr(ServletUtils.getRequest());
                operLog.setOperIp(ip);

                operLog.setOperUrl(ServletUtils.getRequest().getRequestURI());
                //对外接口当前的用户赋值
                operLog.setOperName("默认用户");
                operLog.setDeptName("默认部门");

                if (e != null) {
                    operLog.setStatus(BusinessStatus.FAIL.ordinal());
                    operLog.setErrorMsg(StringUtils.substring(e.getMessage(), 0, 2000));
                }
                // 设置方法名称
                String className = joinPoint.getTarget().getClass().getName();
                String methodName = joinPoint.getSignature().getName();
                operLog.setMethod(className + "." + methodName + "()");
                // 处理设置注解上的参数
                getControllerMethodDescription(controllerLog, operLog);
                // 保存数据库
                AsyncManager.me().execute(AsyncFactory.recordOper(operLog));
            }

        } catch (Exception exp) {
            // 记录本地异常日志
            log.error("==前置通知异常==");
            log.error("异常信息:{}", exp.getMessage());
            exp.printStackTrace();
        }
    }

    /**
     * 获取注解中对方法的描述信息 用于Controller层注解
     *
     * @param log     日志
     * @param operLog 操作日志
     * @throws Exception
     */
    public void getControllerMethodDescription(Log log, OperLog operLog) throws Exception {
        // 设置action动作
        operLog.setBusinessType(log.businessType().ordinal());
        // 设置标题
        operLog.setTitle(log.title());
        // 设置操作人类别
        operLog.setOperatorType(log.operatorType().ordinal());
        // 是否需要保存request,参数和值
        if (log.isSaveRequestData()) {
            // 获取参数的信息,传入到数据库中。
            setRequestValue(operLog);
        }
    }

    /**
     * 获取请求的参数,放到log中
     *
     * @param operLog
     */
    private void setRequestValue(OperLog operLog) {
        Map<String, String[]> map = ServletUtils.getRequest().getParameterMap();
        String params = JSONObject.toJSONString(map);
        operLog.setOperParam(StringUtils.substring(params, 0, 2000));
    }

    /**
     * 是否存在注解,如果存在就获取
     */
    private Log getAnnotationLog(JoinPoint joinPoint) throws Exception {
        Signature signature = joinPoint.getSignature();
        MethodSignature methodSignature = (MethodSignature) signature;
        Method method = methodSignature.getMethod();

        if (method != null) {
            return method.getAnnotation(Log.class);
        }
        return null;
    }


    /**
     * 记录前台用户登录日志
     * @param joinPoint
     * @return
     * @throws Throwable
     */
    @Around("execution(* com.lhcredit.project.webbusiness.controller.WebFrontUserController.webLogin(..))")
    public Object aroundFrontUserLoginInfoAdvice(ProceedingJoinPoint joinPoint) throws Throwable {
        System.out.println("记录前台用户登录日志!======================================");
        //获取 登录接口的参数
        Object[] args = joinPoint.getArgs();
        HttpServletRequest request = (HttpServletRequest)args[0];
        FrontUserMon frontUserMon = (FrontUserMon)args[1];
        //调用目标方法:前台用户的登录接口
        AjaxResult result = (AjaxResult)joinPoint.proceed();

        //定义 日志记录对象
        FrontLoginInfo frontLoginInfo = new FrontLoginInfo();
        //获取登录的ip地址
        String ipAddr = IpUtils.getIpAddr(request);
        frontLoginInfo.setLoginIp(ipAddr);
        //设置 用户登录名
        frontLoginInfo.setLoginName(frontUserMon.getLoginName());

        Object code =  result.get(AjaxResult.CODE_TAG);
        //方法返回 2000 则登录成功,记录成功日志
        if (code.equals(AjaxResult.Type.SUCCESS.value())){
            frontLoginInfo.setStatus(Constants.SUCCESS);
            frontLoginInfo.setMsg("登录成功");
        }else {
            frontLoginInfo.setStatus(Constants.FAIL);
            frontLoginInfo.setMsg(result.get(AjaxResult.MSG_TAG).toString());
        }
        //登录时间
        frontLoginInfo.setLoginTime(new Date());
        //插入日志表
        frontLoginInfoService.addFrontLoginInfo(frontLoginInfo);

        return result;
    }
}