|
|
@ -14,8 +14,10 @@ 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.domain.DcPublishManage; |
|
|
|
import com.zc.business.service.IDcDeviceService; |
|
|
|
import com.zc.business.service.IDcOperLogService; |
|
|
|
import com.zc.business.service.IDcPublishManageService; |
|
|
|
import org.aspectj.lang.JoinPoint; |
|
|
|
import org.aspectj.lang.ProceedingJoinPoint; |
|
|
|
import org.aspectj.lang.annotation.*; |
|
|
@ -24,6 +26,7 @@ import org.springframework.stereotype.Component; |
|
|
|
import javax.servlet.http.HttpServletRequest; |
|
|
|
import java.text.SimpleDateFormat; |
|
|
|
import java.util.*; |
|
|
|
import java.util.stream.Collectors; |
|
|
|
|
|
|
|
@Aspect |
|
|
|
@Component |
|
|
@ -108,6 +111,7 @@ public class OperationLogAspect { |
|
|
|
ISysDeptService deptService = SpringUtils.getBean(ISysDeptService.class); |
|
|
|
IDcOperLogService dcOperLogService = SpringUtils.getBean(IDcOperLogService.class); |
|
|
|
IDcDeviceService dcDeviceService = SpringUtils.getBean(IDcDeviceService.class); |
|
|
|
IDcPublishManageService dcPublishManageService = SpringUtils.getBean(IDcPublishManageService.class); |
|
|
|
|
|
|
|
try { |
|
|
|
DcOperLog operLog = new DcOperLog(); |
|
|
@ -121,6 +125,11 @@ public class OperationLogAspect { |
|
|
|
} |
|
|
|
Object[] pointArgs = joinPoint.getArgs(); |
|
|
|
|
|
|
|
|
|
|
|
//String operType = String.valueOf(pointArgs[pointArgs.length - 1]);
|
|
|
|
//operLog.setOperType(operType);
|
|
|
|
|
|
|
|
|
|
|
|
HttpServletRequest request; |
|
|
|
try { |
|
|
|
|
|
|
@ -129,34 +138,13 @@ public class OperationLogAspect { |
|
|
|
request = null; |
|
|
|
} |
|
|
|
|
|
|
|
AjaxResult proceed = (AjaxResult) 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")&&Objects.equals(String.valueOf(proceed.get("code")), "200")) { |
|
|
|
//if (Objects.equals(String.valueOf(proceed.get("code")), "200")) {
|
|
|
|
operLog.setStatus(0); |
|
|
|
sta = "成功"; |
|
|
|
//} else {
|
|
|
|
// operLog.setStatus(1);
|
|
|
|
// sta = "失败";
|
|
|
|
//}
|
|
|
|
if (Objects.equals(state, "0") && Objects.equals(String.valueOf(((AjaxResult) jsonResult).get("code")), "200") && !Objects.equals(String.valueOf(((AjaxResult) jsonResult).get("msg")), "500") ) { |
|
|
|
operLog.setStatus(0); |
|
|
|
sta = "成功"; |
|
|
|
} else { |
|
|
|
operLog.setStatus(1); |
|
|
|
sta = "失败"; |
|
|
@ -164,26 +152,18 @@ public class OperationLogAspect { |
|
|
|
|
|
|
|
ArrayList<String> deviceIds = new ArrayList<>(); |
|
|
|
ArrayList<String> deviceNames = new ArrayList<>(); |
|
|
|
//ArrayList<String> functionIds = new ArrayList<>();
|
|
|
|
String deviceType = ""; |
|
|
|
StringBuilder remark = new StringBuilder("在" + date + "调用"); |
|
|
|
if (operUrl.contains("batchFunctions")) { |
|
|
|
//批量调用
|
|
|
|
JSONObject pointArg = null; |
|
|
|
if (pointArgs[0] instanceof JSONObject) { |
|
|
|
pointArg = (JSONObject) pointArgs[0]; |
|
|
|
} else { |
|
|
|
pointArg = (JSONObject) JSON.toJSON(pointArgs[0]); |
|
|
|
} |
|
|
|
String contentDetails = ""; |
|
|
|
|
|
|
|
//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());
|
|
|
|
|
|
|
|
JSONObject pointArg = (JSONObject) pointArgs[0]; |
|
|
|
JSONArray devices = pointArg.getJSONArray("devices"); |
|
|
|
JSONArray functions = pointArg.getJSONArray("functions"); |
|
|
|
|
|
|
@ -201,6 +181,7 @@ public class OperationLogAspect { |
|
|
|
|
|
|
|
deviceType = dcDevice.getDeviceType(); |
|
|
|
|
|
|
|
|
|
|
|
deviceIds.add(String.valueOf(deviceId)); |
|
|
|
deviceNames.add(deviceName); |
|
|
|
|
|
|
@ -214,13 +195,29 @@ public class OperationLogAspect { |
|
|
|
"发布语音广播" : |
|
|
|
String.valueOf( |
|
|
|
((HashMap<String, Object>) (DEVICEFUNCTIONNAME.get(deviceType))) |
|
|
|
.get(function.getString("functionId"))); |
|
|
|
.get(function.getString("functionId")) == null ? |
|
|
|
"未知方法" : |
|
|
|
((HashMap<String, Object>) (DEVICEFUNCTIONNAME.get(deviceType))) |
|
|
|
.get(function.getString("functionId"))); |
|
|
|
|
|
|
|
remark.append("调用").append(hashMap).append("功能").append(sta); |
|
|
|
|
|
|
|
if (i1 < functions.size() - 1) { |
|
|
|
remark.append("、"); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (Objects.equals(function.getString("functionId"), "13")&&Objects.equals(deviceType,"2")){ |
|
|
|
JSONArray parameters = function.getJSONObject("params").getJSONArray("parameters"); |
|
|
|
List<String> content = parameters.stream().map(item->((JSONObject)item).getString("CONTENT")).collect(Collectors.toList()); |
|
|
|
contentDetails = content.toString().replace("[", "").replace("]", ""); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if (Objects.equals(deviceType,"5")){ |
|
|
|
contentDetails = function.getJSONObject("params").getString("text"); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
if (i < (devices.size() - 1)) { |
|
|
@ -230,7 +227,6 @@ public class OperationLogAspect { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if (loginUser != null) { |
|
|
|
SysDept sysDept = deptService.selectDeptById(loginUser.getDeptId()); |
|
|
|
|
|
|
@ -241,21 +237,56 @@ public class OperationLogAspect { |
|
|
|
} else { |
|
|
|
operLog.setOperType("1"); |
|
|
|
} |
|
|
|
operLog.setOperParam((Arrays.toString(pointArgs))); |
|
|
|
|
|
|
|
JSONArray jsonArray = (JSONArray) JSON.toJSON(pointArgs); |
|
|
|
|
|
|
|
operLog.setOperParam(String.valueOf(jsonArray)); |
|
|
|
operLog.setDcDeviceId(deviceIds.toString()); |
|
|
|
operLog.setDcDeviceName(deviceNames.toString()); |
|
|
|
operLog.setOperIp(IpUtils.getIpAddr(request)); |
|
|
|
operLog.setOperTime(new Date()); |
|
|
|
operLog.setDcDeviceType(deviceType); |
|
|
|
operLog.setRemark(remark.toString()); |
|
|
|
operLog.setJsonResult(String.valueOf(proceed)); |
|
|
|
dcOperLogService.addDcOperLog(operLog); |
|
|
|
operLog.setJsonResult(jsonResult.toString()); |
|
|
|
dcOperLogService.save(operLog); |
|
|
|
|
|
|
|
|
|
|
|
if ((Objects.equals(deviceType, "2") || Objects.equals(deviceType, "5")) && Objects.nonNull(operLog.getId())) { |
|
|
|
DcPublishManage dcPublishManage = new DcPublishManage(); |
|
|
|
|
|
|
|
if (Objects.equals(state, "0") && Objects.equals(String.valueOf(((AjaxResult) jsonResult).get("code")), "200")) { |
|
|
|
dcPublishManage.setPublishStatus(1);//发布状态1-成功2-失败
|
|
|
|
} else { |
|
|
|
dcPublishManage.setPublishStatus(2);//发布状态1-成功2-失败
|
|
|
|
} |
|
|
|
|
|
|
|
if (loginUser != null) { |
|
|
|
dcPublishManage.setPublisher(loginUser.getUsername());//发布人
|
|
|
|
} else { |
|
|
|
dcPublishManage.setPublisher("系统定时调用");//发布人
|
|
|
|
} |
|
|
|
dcPublishManage.setPublishTime(new Date());//发布时间
|
|
|
|
dcPublishManage.setCreateTime(new Date());//创建时间
|
|
|
|
|
|
|
|
dcPublishManage.setLogId(Long.valueOf(operLog.getId()));//发布的如果的情报板传对应id
|
|
|
|
if (Objects.equals(deviceType, "2")) { |
|
|
|
dcPublishManage.setPublishChannels(4); |
|
|
|
} else { |
|
|
|
dcPublishManage.setPublishChannels(7); |
|
|
|
} |
|
|
|
|
|
|
|
dcPublishManage.setContentDetails(contentDetails); |
|
|
|
dcPublishManageService.insertDcPublishManage(dcPublishManage); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} else if (operUrl.contains("functions")) { |
|
|
|
|
|
|
|
LambdaQueryWrapper<DcDevice> lambdaQueryWrapper = new LambdaQueryWrapper<>(); |
|
|
|
lambdaQueryWrapper.eq(DcDevice::getIotDeviceId, pointArgs[0]); |
|
|
|
DcDevice dcDevice = dcDeviceService.getById(Long.valueOf(String.valueOf(pointArgs[0]))); |
|
|
|
List<DcDevice> list = dcDeviceService.list(lambdaQueryWrapper); |
|
|
|
DcDevice dcDevice = list.get(0); |
|
|
|
|
|
|
|
if (!Objects.isNull(dcDevice)) { |
|
|
|
|
|
|
|
Long deviceId = dcDevice.getId(); |
|
|
@ -271,73 +302,56 @@ public class OperationLogAspect { |
|
|
|
|
|
|
|
remark.append(deviceName).append("的").append(hashMap).append("功能并且调用").append(sta).append("了"); |
|
|
|
|
|
|
|
|
|
|
|
if (loginUser != null) { |
|
|
|
SysDept sysDept = deptService.selectDeptById(loginUser.getDeptId()); |
|
|
|
operLog.setOperName(loginUser.getUsername()); |
|
|
|
operLog.setDeptName(sysDept.getDeptName()); |
|
|
|
operLog.setOperLocation(loginUser.getLoginLocation()); |
|
|
|
operLog.setOperType("2"); |
|
|
|
operLog.setOperType("0"); |
|
|
|
} else { |
|
|
|
operLog.setOperType("1"); |
|
|
|
} |
|
|
|
operLog.setOperParam((Arrays.toString(pointArgs))); |
|
|
|
|
|
|
|
JSONArray jsonArray = (JSONArray) JSON.toJSON(pointArgs); |
|
|
|
|
|
|
|
operLog.setOperParam(String.valueOf(jsonArray)); |
|
|
|
operLog.setDcDeviceId(deviceIds.toString()); |
|
|
|
operLog.setDcDeviceName(deviceNames.toString()); |
|
|
|
operLog.setOperIp(IpUtils.getIpAddr(request)); |
|
|
|
operLog.setOperTime(new Date()); |
|
|
|
operLog.setDcDeviceType(deviceType); |
|
|
|
operLog.setJsonResult(remark.toString()); |
|
|
|
dcOperLogService.addDcOperLog(operLog); |
|
|
|
operLog.setRemark(remark.toString()); |
|
|
|
operLog.setJsonResult(jsonResult.toString()); |
|
|
|
dcOperLogService.save(operLog); |
|
|
|
|
|
|
|
|
|
|
|
//if ((Objects.equals(deviceType, "2") || Objects.equals(deviceType, "5")) && Objects.nonNull(operLog.getId())) {
|
|
|
|
// DcPublishManage dcPublishManage = new DcPublishManage();
|
|
|
|
//
|
|
|
|
////DcDevice dcDevice = list.get(0);
|
|
|
|
//operLog.setDcDeviceId(String.valueOf(dcDevice.getId()));
|
|
|
|
//operLog.setDcDeviceName(dcDevice.getDeviceName());
|
|
|
|
//deviceType = dcDevice.getDeviceType();
|
|
|
|
//operLog.setDcDeviceType(deviceType);
|
|
|
|
//if (loginUser != null) {
|
|
|
|
// SysDept sysDept = deptService.selectDeptById(loginUser.getDeptId());
|
|
|
|
// if (Objects.equals(state, "0") && Objects.equals(String.valueOf(((AjaxResult) jsonResult).get("code")), "200")) {
|
|
|
|
// dcPublishManage.setPublishStatus(1);//发布状态1-成功2-失败
|
|
|
|
// } else {
|
|
|
|
// dcPublishManage.setPublishStatus(2);//发布状态1-成功2-失败
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// 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 + "调用了" + hashMap + "功能并且调用" + sta + "了");
|
|
|
|
////dcOperLog.setJsonResult(dcDevice.getDeviceName() + "设备在" + date + "调用" + sta + "ID为" + dcDevice.getId() + "的设备功能标识为" + pointArgs[1].toString() + "的方法");
|
|
|
|
//dcOperLog.setOperTime(new Date());
|
|
|
|
//dcOperLogService.addDcOperLog(dcOperLog);
|
|
|
|
// if (loginUser != null) {
|
|
|
|
// dcPublishManage.setPublisher(loginUser.getUsername());//发布人
|
|
|
|
// } else {
|
|
|
|
// dcPublishManage.setPublisher("系统定时调用");//发布人
|
|
|
|
// }
|
|
|
|
// dcPublishManage.setPublishTime(new Date());//发布时间
|
|
|
|
// dcPublishManage.setCreateTime(new Date());//创建时间
|
|
|
|
//
|
|
|
|
// dcPublishManage.setLogId(Long.valueOf(operLog.getId()));//发布的如果的情报板传对应id
|
|
|
|
// if (Objects.equals(deviceType, "2")) {
|
|
|
|
// dcPublishManage.setPublishChannels(4);
|
|
|
|
// } else {
|
|
|
|
// dcPublishManage.setPublishChannels(7);
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
//String remark = "设备在" + date + "调用" + sta + "ID为" + deviceIds + "的设备功能标识为" + functionIds + "的方法";
|
|
|
|
//System.out.println(remark);
|
|
|
|
//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(remark);
|
|
|
|
//if (Objects.equals(state, "0")) {
|
|
|
|
// operLog.setStatus(0);
|
|
|
|
//} else {
|
|
|
|
// operLog.setStatus(1);
|
|
|
|
// dcPublishManage.setContentDetails(remark.toString());
|
|
|
|
// dcPublishManageService.insertDcPublishManage(dcPublishManage);
|
|
|
|
//}
|
|
|
|
//dcOperLogService.addDcOperLog(operLog);
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|