package com.zc.business.interfaces; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONObject; import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; import com.ruoyi.common.core.domain.entity.SysDept; import com.ruoyi.common.core.domain.model.LoginUser; import com.ruoyi.common.utils.SecurityUtils; import com.ruoyi.common.utils.ServletUtils; import com.ruoyi.common.utils.ip.IpUtils; import com.ruoyi.common.utils.spring.SpringUtils; import com.ruoyi.system.service.ISysDeptService; import com.zc.business.domain.DcDevice; import com.zc.business.domain.DcOperLog; import com.zc.business.service.IDcDeviceService; import com.zc.business.service.IDcOperLogService; import org.aspectj.lang.JoinPoint; import org.aspectj.lang.ProceedingJoinPoint; import org.aspectj.lang.annotation.*; import org.springframework.stereotype.Component; import javax.servlet.http.HttpServletRequest; import java.text.SimpleDateFormat; import java.util.*; @Aspect @Component public class OperationLogAspect { private final static Map DEVICEFUNCTIONNAME = new HashMap() {{ put("1", new HashMap() {{ }}); put("2", new HashMap() {{ put("11", "文件名发送"); put("13", "文件发送"); put("1B", "指定当前需要播放的清单"); }}); put("3", new HashMap() {{ }}); put("4", new HashMap() {{ }}); put("5", new HashMap() {{ put("", "发布语音广播"); }}); put("6", new HashMap() {{ }}); put("7", new HashMap() {{ }}); put("8", new HashMap() {{ put("01", "通信连接检查"); put("0b", "配置装置参数"); put("0d", "读取装置参数"); put("0f", "读取装置状态数据"); }}); put("9", new HashMap() {{ }}); put("10", new HashMap() {{ put("SETMD", "模式设定命令"); put("ASKMD", "模式查询命令"); put("SETTM", "工作时间设定命令"); put("ASKTM", "工作时间查询命令"); put("SETDF", "自定义模式设置"); put("ASKDF", "自定义模式查询命令"); }}); put("11", new HashMap() {{ }}); put("12", new HashMap() {{ put("51", "设备控制模式"); put("52", "读取设备控制模式"); put("30", "设置自动控制模式工作状态"); put("3D", "读取自动控制模式工作状态"); put("3C", "读取当前设备工作状态"); }}); put("13", new HashMap() {{ }}); put("14", new HashMap() {{ }}); put("15", new HashMap() {{ put("A1", "查询数据"); put("A2", "查询数据"); put("A3", "查询数据"); put("A4", "查询数据"); put("A5", "查询数据"); put("A6", "查询数据"); }}); put("16", new HashMap() {{ }}); }}; @AfterReturning(pointcut = "@annotation(operationLog)", returning = "jsonResult") public void AfterReturning(JoinPoint joinPoint, OperationLog operationLog, Object jsonResult) throws Throwable { System.out.println("运行成功"); around((ProceedingJoinPoint) joinPoint, operationLog, "0", jsonResult, null); } @AfterThrowing(value = "@annotation(operationLog)", throwing = "e") public void AfterThrowing(JoinPoint joinPoint, OperationLog operationLog, Exception e) throws Throwable { System.out.println("运行失败"); around((ProceedingJoinPoint) joinPoint, operationLog, "1", null, e); } public void around(ProceedingJoinPoint joinPoint, OperationLog operationLog, String state, Object jsonResult, Exception exception) throws Throwable { ISysDeptService deptService = SpringUtils.getBean(ISysDeptService.class); IDcOperLogService dcOperLogService = SpringUtils.getBean(IDcOperLogService.class); IDcDeviceService dcDeviceService = SpringUtils.getBean(IDcDeviceService.class); try { DcOperLog dcOperLog = new DcOperLog(); String operUrl = operationLog.operUrl(); LoginUser loginUser; try { loginUser = SecurityUtils.getLoginUser(); } catch (Exception e) { loginUser = null; } Object[] pointArgs = joinPoint.getArgs(); HttpServletRequest request; try { request = ServletUtils.getRequest(); } catch (Exception e) { request = null; } //Object proceed = joinPoint.proceed(pointArgs); //String jsonResultString = ""; //JSONArray jsonArray = (JSONArray) proceed; //for (Object o : jsonArray) { // JSONObject jsonObject = (JSONObject) o; // if (Objects.equals(jsonObject.getString("code"), "200")) { // JSONArray data = jsonObject.getJSONArray("data"); // for (Object datum : data) { // JSONObject results = (JSONObject) datum; // JSONObject result = results.getJSONObject("result"); // if (Objects.equals(result.getString("code"), "200")) { // jsonResultString = "设备"+d+""; // } // } // } //} SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); String date = df.format(new Date()); String sta = ""; if (Objects.equals(state, "0")) { dcOperLog.setStatus(0); sta = "成功"; } else { dcOperLog.setStatus(1); sta = "失败"; } if (operUrl.contains("batchFunctions")) { if (loginUser != null) { SysDept sysDept = deptService.selectDeptById(loginUser.getDeptId()); dcOperLog.setOperName(loginUser.getUsername()); dcOperLog.setDeptName(sysDept.getDeptName()); dcOperLog.setOperLocation(loginUser.getLoginLocation()); dcOperLog.setOperType("2"); } else { dcOperLog.setOperType("1"); } dcOperLog.setOperIp(IpUtils.getIpAddr(request)); dcOperLog.setOperTime(new Date()); HashMap> pointArg = (HashMap>) pointArgs[0]; ArrayList devices = pointArg.get("devices"); ArrayList functions = pointArg.get("functions"); //ArrayList deviceIds = new ArrayList<>(); //ArrayList functionIds = new ArrayList<>(); String deviceType = ""; for (Object dev : devices) { JSONObject device = (JSONObject) JSON.toJSON(dev); LambdaQueryWrapper lambdaQueryWrapper = new LambdaQueryWrapper<>(); lambdaQueryWrapper.eq(DcDevice::getId, device.get("id")); List list = dcDeviceService.list(lambdaQueryWrapper); if (list.size() > 0) { DcDevice dcDevice = list.get(0); dcOperLog.setDcDeviceId(String.valueOf(dcDevice.getId())); dcOperLog.setDcDeviceName(dcDevice.getDeviceName()); deviceType = dcDevice.getDeviceType(); dcOperLog.setDcDeviceType(deviceType); //deviceIds.add(String.valueOf(dcDevice.getId())); for (Object fun : functions) { JSONObject function = (JSONObject) JSON.toJSON(fun); dcOperLog.setOperParam(function.getString("params")); String functionId = function.getString("functionId"); //functionIds.add(functionId); String hashMap = Objects.equals(deviceType, "5") ?"发布语音广播":String.valueOf(((HashMap) (DEVICEFUNCTIONNAME.get(deviceType))).get(functionId)); dcOperLog.setJsonResult("设备" + dcDevice.getDeviceName() + "在" + date + "调用了" + hashMap + "功能并且调用" + sta + "了"); dcOperLogService.addDcOperLog(dcOperLog); } } } //String jsonResult1 = "设备在" + date + "调用" + sta + "ID为" + deviceIds + "的设备功能标识为" + functionIds + "的方法"; //System.out.println(jsonResult1); //System.out.println(deviceIds.toString()); //System.out.println(functionIds.toString()); //DcOperLog operLog = new DcOperLog(); //SysDept sysDept = deptService.selectDeptById(loginUser.getDeptId()); //operLog.setOperParam((Arrays.toString(pointArgs))); //operLog.setOperLocation(loginUser.getLoginLocation()); //operLog.setOperName(loginUser.getUsername()); //operLog.setDeptName(sysDept.getDeptName()); //operLog.setDcDeviceId(deviceIds.toString()); //operLog.setOperType("2"); //operLog.setOperIp(IpUtils.getIpAddr(request)); //operLog.setOperTime(new Date()); //operLog.setDcDeviceType(deviceType); //operLog.setJsonResult(jsonResult1); //if (Objects.equals(state, "0")) { // operLog.setStatus(0); //} else { // operLog.setStatus(1); //} //dcOperLogService.addDcOperLog(operLog); } else if (operUrl.contains("functions")) { LambdaQueryWrapper lambdaQueryWrapper = new LambdaQueryWrapper<>(); lambdaQueryWrapper.eq(DcDevice::getIotDeviceId, pointArgs[0]); List list = dcDeviceService.list(lambdaQueryWrapper); if (list.size() > 0) { DcDevice dcDevice = list.get(0); dcOperLog.setDcDeviceId(String.valueOf(dcDevice.getId())); dcOperLog.setDcDeviceName(dcDevice.getDeviceName()); dcOperLog.setDcDeviceType(dcDevice.getDeviceType()); if (loginUser != null) { SysDept sysDept = deptService.selectDeptById(loginUser.getDeptId()); dcOperLog.setOperName(loginUser.getUsername()); dcOperLog.setDeptName(sysDept.getDeptName()); dcOperLog.setOperLocation(loginUser.getLoginLocation()); dcOperLog.setOperType("0"); } else { dcOperLog.setOperType("1"); } dcOperLog.setOperIp(IpUtils.getIpAddr(request)); dcOperLog.setOperParam(Arrays.toString(pointArgs)); dcOperLog.setJsonResult(dcDevice.getDeviceName() + "设备在" + date + "调用" + sta + "ID为" + dcDevice.getId() + "的设备功能标识为" + pointArgs[1].toString() + "的方法"); dcOperLog.setOperTime(new Date()); dcOperLogService.addDcOperLog(dcOperLog); } } } catch (Exception e) { throw e; } } }