Commit d1f3e7bf authored by zhangc's avatar zhangc

修复api日志收集bug

parent 03a1b37f
...@@ -140,10 +140,10 @@ CREATE TABLE `t_api_req_log` ( ...@@ -140,10 +140,10 @@ CREATE TABLE `t_api_req_log` (
`response_params`text COMMENT '返回参数', `response_params`text COMMENT '返回参数',
`request_url` varchar(64) DEFAULT NULL COMMENT '请求路径', `request_url` varchar(64) DEFAULT NULL COMMENT '请求路径',
`request_method` varchar(100) DEFAULT NULL COMMENT '请求方法', `request_method` varchar(100) DEFAULT NULL COMMENT '请求方法',
`request_type` varchar(20) DEFAULT NULL COMMENT '请求类型(方式)',
`encry_mode` varchar(20) DEFAULT NULL COMMENT '加密方式:MD5,RSA', `encry_mode` varchar(20) DEFAULT NULL COMMENT '加密方式:MD5,RSA',
`trans_mode` varchar(20) DEFAULT NULL COMMENT '传输方式:POST,GET', `trans_mode` varchar(20) DEFAULT NULL COMMENT '传输方式:POST,GET',
`request_token` varchar(64) DEFAULT NULL COMMENT '客户请求token', `request_token` varchar(64) DEFAULT NULL COMMENT '客户请求token',
`handler_status` varchar(20) NOT NULL DEFAULT '0' COMMENT '处理状态: 0未处理,1已处理'
`request_consuming` varchar(64) DEFAULT NULL COMMENT '请求总耗时', `request_consuming` varchar(64) DEFAULT NULL COMMENT '请求总耗时',
`request_start_time` datetime DEFAULT NULL COMMENT '请求开始时间', `request_start_time` datetime DEFAULT NULL COMMENT '请求开始时间',
`request_end_time` datetime DEFAULT NULL COMMENT '请求结束时间', `request_end_time` datetime DEFAULT NULL COMMENT '请求结束时间',
......
...@@ -21,29 +21,37 @@ public enum OpenApiResultCode implements ResultCode { ...@@ -21,29 +21,37 @@ public enum OpenApiResultCode implements ResultCode {
/** 无效参数 */ /** 无效参数 */
ILLEGAL_ARGUMENT("ILLEGAL_ARGUMENT", "无效参数"), ILLEGAL_ARGUMENT("ILLEGAL_ARGUMENT", "无效参数"),
/** 请求数据异常 */
REQUEST_DATA_EXCEPTION("REQUEST_DATA_EXCEPTION", "请求数据异常"),
/** 名类型不支持 */ /** 名类型不支持 */
SIGN_TYPE_NOT_SUPPORT("SIGN_TYPE_NOT_SUPPORT", "签名类型不支持"), SIGN_TYPE_NOT_SUPPORT("SIGN_TYPE_NOT_SUPPORT", "签名类型不支持"),
/** 数据签名错误 */ /** 数据签名错误 */
DATA_SIGN_ERROR("DATA_SIGN_ERROR", "数据签名错误"), DATA_SIGN_ERROR("DATA_SIGN_ERROR", "数据签名错误"),
/** 公钥格式错误 */ /* *//** 公钥格式错误 *//*
PUBLIC_KEY_FORMAT_ERROR("PUBLIC_KEY_FORMAT_ERROR", "公钥格式错误"), PUBLIC_KEY_FORMAT_ERROR("PUBLIC_KEY_FORMAT_ERROR", "公钥格式错误"),
/** 私钥格式错误 */ *//** 私钥格式错误 *//*
PRIVATE_KEY_FORMAT_ERROR("PRIVATE_KEY_FORMAT_ERROR", "私钥格式错误"), PRIVATE_KEY_FORMAT_ERROR("PRIVATE_KEY_FORMAT_ERROR", "私钥格式错误"),*/
/** 响应数据格式错误 */ /** 响应数据格式错误 */
RESPONSE_DATA_FORMAT_ERROR("RESPONSE_DATA_FORMAT_ERROR", "响应数据格式错误"), RESPONSE_DATA_FORMAT_ERROR("RESPONSE_DATA_FORMAT_ERROR", "响应数据格式错误"),
/** 签名校验错误 */ /** 签名校验错误 */
SIGN_VERIFY_ERROR("SIGN_VERIFY_ERROR", "签名校验错误"), SIGN_VERIFY_ERROR("SIGN_VERIFY_ERROR", "签名校验错误"),
/*
*//** 不支持该信息摘要算法 *//*
NO_SUCH_MD_ALGORITHM("NO_SUCH_MD_ALGORITHM", "不支持该信息摘要算法"),*/
/** 不支持该信息摘要算法 */ /*
NO_SUCH_MD_ALGORITHM("NO_SUCH_MD_ALGORITHM", "不支持该信息摘要算法"), */
/** 信息摘要错误 *//*
/** 信息摘要错误 */
MESSAGE_DIGEST_ERROR("MESSAGE_DIGEST_ERROR", "信息摘要错误"), MESSAGE_DIGEST_ERROR("MESSAGE_DIGEST_ERROR", "信息摘要错误"),
*/
/** 数据加密错误 */ /** 数据加密错误 */
DATA_ENCRYPTION_ERROR("DATA_ENCRYPTION_ERROR", "数据加密错误"),; DATA_ENCRYPTION_ERROR("DATA_ENCRYPTION_ERROR", "数据加密错误"),;
......
package com.jz.dm.config; package com.jz.dm.config;
import com.jz.dm.web.interceptor.AccessLimitInterceptor; import com.jz.dm.web.interceptor.AccessLimitInterceptor;
import com.jz.dm.web.request.ApiGatewayRequestInterceptor;
import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.InterceptorRegistry; import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
......
...@@ -79,7 +79,7 @@ public class AuthFilter extends AbstractFilter { ...@@ -79,7 +79,7 @@ public class AuthFilter extends AbstractFilter {
try { try {
ApiInterface apiInterface = apiInterfaceService.getApiInfo(request.getApiKey()); ApiInterface apiInterface = apiInterfaceService.getApiInfo(request.getApiKey());
if (null == apiInterface) { if (null == apiInterface) {
throw new GatewayException(GatewayResultCode.ILLEGAL_REQUEST); throw new GatewayException(GatewayResultCode.REQUEST_INFO_UNEXIST);
} }
//下架状态$$ 检查是否有有效调用的api,如果有就放行,没有就置为无效 //下架状态$$ 检查是否有有效调用的api,如果有就放行,没有就置为无效
if (ApiStatusEnum.SOLDOUT.name().equals(apiInterface.getStatus())) { if (ApiStatusEnum.SOLDOUT.name().equals(apiInterface.getStatus())) {
......
...@@ -42,7 +42,7 @@ public class CheckArgsFilter extends AbstractFilter { ...@@ -42,7 +42,7 @@ public class CheckArgsFilter extends AbstractFilter {
request.setFormat(Format.JSON.name()); request.setFormat(Format.JSON.name());
} }
try { try {
request.setVersion("v1.0.0"); request.setVersion("1.0.0");
//格式,目前仅支持JSON //格式,目前仅支持JSON
Format.valueOf(request.getFormat()); Format.valueOf(request.getFormat());
//请求使用的编码格式,如UTF-8,GBK,GB2312等 //请求使用的编码格式,如UTF-8,GBK,GB2312等
......
package com.jz.dm.filter; package com.jz.dm.filter;
import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONException;
import com.alibaba.fastjson.JSONObject; import com.alibaba.fastjson.JSONObject;
import com.jz.dm.common.constant.Constants; import com.jz.dm.common.constant.Constants;
import com.jz.dm.common.constant.LoggingConstants; import com.jz.dm.common.constant.LoggingConstants;
...@@ -9,6 +10,7 @@ import com.jz.dm.gateway.DefaultOpenApiDispatcher; ...@@ -9,6 +10,7 @@ import com.jz.dm.gateway.DefaultOpenApiDispatcher;
import com.jz.dm.models.enity.DispatchContext; import com.jz.dm.models.enity.DispatchContext;
import com.jz.dm.models.enity.GatewayRequest; import com.jz.dm.models.enity.GatewayRequest;
import com.jz.dm.models.enity.GatewayResponse; import com.jz.dm.models.enity.GatewayResponse;
import lombok.extern.slf4j.Slf4j;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component; import org.springframework.stereotype.Component;
...@@ -19,6 +21,7 @@ import org.springframework.stereotype.Component; ...@@ -19,6 +21,7 @@ import org.springframework.stereotype.Component;
* @author key * @author key
*/ */
@Component("invokeRouteFilter") @Component("invokeRouteFilter")
@Slf4j
public class InvokeRouteFilter extends AbstractFilter { public class InvokeRouteFilter extends AbstractFilter {
/** openapi dispatcher logger */ /** openapi dispatcher logger */
...@@ -41,14 +44,13 @@ public class InvokeRouteFilter extends AbstractFilter { ...@@ -41,14 +44,13 @@ public class InvokeRouteFilter extends AbstractFilter {
protected void internalDoFilter(GatewayRequest request, GatewayResponse response, protected void internalDoFilter(GatewayRequest request, GatewayResponse response,
FilterChain chain) { FilterChain chain) {
String openApiResponse = null; String openApiResponse = null;
//当前系统时间戳
long startTime = System.currentTimeMillis(); long startTime = System.currentTimeMillis();
try { try {
DispatchContext context = new DispatchContext(); DispatchContext context = new DispatchContext();
context.setApiKey(request.getApiKey());//apiKey context.setApiKey(request.getApiKey());
context.setOpenApiMethod(request.getMethod()); //方法 例如:tradd.add context.setOpenApiMethod(request.getMethod());
context.setOpenApiParams(request.getParams());//入参 context.setOpenApiParams(request.getParams());
context.setOpenApiVersion(request.getVersion()); //版本号 context.setOpenApiVersion(request.getVersion());
//扩展参数 //扩展参数
for (GatewayRequest.Attribute attribute : request.getExtAttributes().values()) { for (GatewayRequest.Attribute attribute : request.getExtAttributes().values()) {
if (attribute != null && attribute.isPass) { if (attribute != null && attribute.isPass) {
...@@ -56,10 +58,11 @@ public class InvokeRouteFilter extends AbstractFilter { ...@@ -56,10 +58,11 @@ public class InvokeRouteFilter extends AbstractFilter {
} }
} }
openApiResponse = defaultOpenApiDispatcher.doDispatch(context); openApiResponse = defaultOpenApiDispatcher.doDispatch(context);
JSONObject jsonObject = (JSONObject) JSON.parse(openApiResponse); JSONObject jsonObject = (JSONObject) JSON.parse(openApiResponse);
response.setAttribute(jsonObject); response.setAttribute(jsonObject);
} finally { }catch (JSONException ex){
log.error("json exchange exception =",ex.getMessage());
}finally {
long elapseTime = System.currentTimeMillis() - startTime; long elapseTime = System.currentTimeMillis() - startTime;
LogUtil.info(DISPATCHER_LOGGER, LogUtil.info(DISPATCHER_LOGGER,
"gateway do default dispatch,request=" + request + ",response=" + openApiResponse "gateway do default dispatch,request=" + request + ",response=" + openApiResponse
......
...@@ -5,7 +5,6 @@ import com.jz.common.utils.Md5; ...@@ -5,7 +5,6 @@ import com.jz.common.utils.Md5;
import com.jz.dm.common.constant.Constants; import com.jz.dm.common.constant.Constants;
import com.jz.dm.common.enums.GatewayResultCode; import com.jz.dm.common.enums.GatewayResultCode;
import com.jz.dm.common.exception.GatewayException; import com.jz.dm.common.exception.GatewayException;
import com.jz.dm.common.exception.SignatureException;
import com.jz.dm.common.util.LogUtil; import com.jz.dm.common.util.LogUtil;
import com.jz.dm.common.util.MapUtil; import com.jz.dm.common.util.MapUtil;
import com.jz.dm.models.domian.ApiAuth; import com.jz.dm.models.domian.ApiAuth;
...@@ -52,7 +51,7 @@ public class VerifySignFilter extends AbstractFilter { ...@@ -52,7 +51,7 @@ public class VerifySignFilter extends AbstractFilter {
//需要传入授权码 //需要传入授权码
ApiAuth apiAuthInfo = apiInterfaceService.getApiAuthInfo(request.getApiKey(), authCode); ApiAuth apiAuthInfo = apiInterfaceService.getApiAuthInfo(request.getApiKey(), authCode);
if (null == apiAuthInfo) { if (null == apiAuthInfo) {
throw new GatewayException(GatewayResultCode.ILLEGAL_REQUEST); throw new GatewayException(GatewayResultCode.REQUEST_NOT_AUTH);
} }
String sign = Md5.encrypt(signParams, apiAuthInfo.getSalt()); String sign = Md5.encrypt(signParams, apiAuthInfo.getSalt());
if (!request.getSign().equals(sign)) { if (!request.getSign().equals(sign)) {
...@@ -63,9 +62,8 @@ public class VerifySignFilter extends AbstractFilter { ...@@ -63,9 +62,8 @@ public class VerifySignFilter extends AbstractFilter {
} }
} }
chain.doFilter(request, response); chain.doFilter(request, response);
} catch (SignatureException ex) { } catch (GatewayException ex) {
LogUtil.error(LOGGER, ex, LogUtil.error(LOGGER, ex,"sign response error. response=" + response.getResponse());
"sign response error. response=" + response.getResponse());
response.clearAttributes(); response.clearAttributes();
response.setCode(ex.getResultCode().getCode()); response.setCode(ex.getResultCode().getCode());
response.setMsg(ex.getResultCode().getMsg()); response.setMsg(ex.getResultCode().getMsg());
...@@ -73,11 +71,6 @@ public class VerifySignFilter extends AbstractFilter { ...@@ -73,11 +71,6 @@ public class VerifySignFilter extends AbstractFilter {
if (ex instanceof GatewayException) { if (ex instanceof GatewayException) {
throw (GatewayException) ex; throw (GatewayException) ex;
} }
LogUtil.error(LOGGER, ex,
"signatureFilter doFilter error. response=" + response.getResponse());
response.clearAttributes();
response.setCode(GatewayResultCode.UNKNOWN_EXCEPTION.getCode());
response.setMsg(GatewayResultCode.UNKNOWN_EXCEPTION.getMsg());
} }
} }
......
...@@ -85,8 +85,8 @@ public class DefaultOpenApiDispatcher implements OpenApiDispatcher { ...@@ -85,8 +85,8 @@ public class DefaultOpenApiDispatcher implements OpenApiDispatcher {
return JSON.toJSONString(response.getAttributes()); return JSON.toJSONString(response.getAttributes());
} }
if (StringUtil.isEmpty(response.getCode())) { if (StringUtil.isEmpty(response.getCode())) {
response.setCode(OpenApiResultCode.UNKNOWN_EXCEPTION.getCode()); response.setCode(OpenApiResultCode.REQUEST_DATA_EXCEPTION.getCode());
response.setMsg(OpenApiResultCode.UNKNOWN_EXCEPTION.getMsg()); response.setMsg(OpenApiResultCode.REQUEST_DATA_EXCEPTION.getMsg());
} }
return JSON.toJSONString(response.getAttributes()); return JSON.toJSONString(response.getAttributes());
} }
......
...@@ -149,4 +149,15 @@ public class ApiInterface extends BaseObject implements Serializable { ...@@ -149,4 +149,15 @@ public class ApiInterface extends BaseObject implements Serializable {
@TableField(exist = false) @TableField(exist = false)
private String respCode; private String respCode;
/*---------------------------------日志查询--------------------------------*/
/**
* 日志id
* */
@TableField(exist = false)
private Long logId;
/**
* 是否测试
* */
@TableField(exist = false)
private Boolean isTest;
} }
...@@ -105,7 +105,4 @@ public class ApiInterfaceCustom extends BaseObject implements Serializable { ...@@ -105,7 +105,4 @@ public class ApiInterfaceCustom extends BaseObject implements Serializable {
@TableField("page_row") @TableField("page_row")
private Long pageRow; private Long pageRow;
} }
...@@ -88,13 +88,17 @@ public class ApiReqLog implements Serializable { ...@@ -88,13 +88,17 @@ public class ApiReqLog implements Serializable {
*/ */
@TableField("request_token") @TableField("request_token")
private String requestToken; private String requestToken;
/**
* 处理状态 默认为0 未处理
*/
@TableField("handler_status")
private String handlerStatus;
/** /**
* 请求总耗时 * 请求总耗时
*/ */
@ApiModelProperty("请求总耗时") @ApiModelProperty("请求总耗时")
@TableField("request_consuming") @TableField("request_consuming")
private Double requestConsuming; private String requestConsuming;
/** /**
* 请求开始时间 * 请求开始时间
*/ */
......
package com.jz.dm.service; package com.jz.dm.service;
import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.core.metadata.IPage;
import com.jz.common.bean.PageInfoResponse;
import com.jz.common.utils.Result; import com.jz.common.utils.Result;
import com.jz.dm.models.domian.ApiReqLog; import com.jz.dm.models.domian.ApiReqLog;
import com.jz.dm.models.dto.DataBankNumberErrorDto; import com.jz.dm.models.dto.DataBankNumberErrorDto;
import com.jz.dm.models.req.DataBankNumberErrorReq; import com.jz.dm.models.req.DataBankNumberErrorReq;
import com.jz.dm.models.req.LogInfoDetailReq; import com.jz.dm.models.req.LogInfoDetailReq;
import com.jz.dm.models.req.LogInfoListReq; import com.jz.dm.models.req.LogInfoListReq;
import net.sf.json.JSONObject;
import java.util.List;
/** /**
* @author ZC * @author ZC
...@@ -45,9 +41,9 @@ public interface ApiLogService { ...@@ -45,9 +41,9 @@ public interface ApiLogService {
/** /**
* 根据id更新日志 * 根据id更新日志
* @param id * @param id
* @param jsonObject * @param response
*/ */
void updateLog(Long id, JSONObject jsonObject); void updateLog(Long id,String response);
/** /**
* 统计API调用数据 * 统计API调用数据
...@@ -63,4 +59,10 @@ public interface ApiLogService { ...@@ -63,4 +59,10 @@ public interface ApiLogService {
*/ */
Result<DataBankNumberErrorDto> queryNumberAndError(DataBankNumberErrorReq req); Result<DataBankNumberErrorDto> queryNumberAndError(DataBankNumberErrorReq req);
/**
* 根据apikey查询日志信息
* @param apiKey
* @return
*/
Long getReqLogging(String apiKey);
} }
package com.jz.dm.service.impl; package com.jz.dm.service.impl;
import com.alibaba.fastjson.JSON;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.conditions.update.UpdateWrapper; import com.baomidou.mybatisplus.core.conditions.update.UpdateWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.core.metadata.IPage;
...@@ -16,12 +15,12 @@ import com.jz.dm.models.req.LogInfoDetailReq; ...@@ -16,12 +15,12 @@ import com.jz.dm.models.req.LogInfoDetailReq;
import com.jz.dm.models.req.LogInfoListReq; import com.jz.dm.models.req.LogInfoListReq;
import com.jz.dm.service.ApiLogService; import com.jz.dm.service.ApiLogService;
import lombok.extern.slf4j.Slf4j; import lombok.extern.slf4j.Slf4j;
import net.sf.json.JSONArray; import net.sf.json.JSONArray;
import net.sf.json.JSONObject; import net.sf.json.JSONObject;
import org.apache.commons.lang3.StringUtils; import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import org.springframework.util.CollectionUtils;
import javax.annotation.Resource; import javax.annotation.Resource;
import java.text.SimpleDateFormat; import java.text.SimpleDateFormat;
...@@ -46,8 +45,10 @@ public class ApiLogServiceImpl implements ApiLogService { ...@@ -46,8 +45,10 @@ public class ApiLogServiceImpl implements ApiLogService {
// 加锁 // 加锁
@Autowired @Autowired
private ReentrantRedisLock lock; private ReentrantRedisLock lock;
/** /**
* 日志信息列表 * 日志信息列表
*
* @param req * @param req
* @return * @return
*/ */
...@@ -55,26 +56,26 @@ public class ApiLogServiceImpl implements ApiLogService { ...@@ -55,26 +56,26 @@ public class ApiLogServiceImpl implements ApiLogService {
public IPage<ApiReqLog> listApiLog(LogInfoListReq req) { public IPage<ApiReqLog> listApiLog(LogInfoListReq req) {
IPage<ApiReqLog> page = new Page<>(req.getPageNum(), req.getPageSize()); IPage<ApiReqLog> page = new Page<>(req.getPageNum(), req.getPageSize());
QueryWrapper<ApiReqLog> query = new QueryWrapper<>(); QueryWrapper<ApiReqLog> query = new QueryWrapper<>();
if (StringUtils.isNotBlank(req.getApiKey())){ if (StringUtils.isNotBlank(req.getApiKey())) {
query.eq("api_key",req.getApiKey()); query.eq("api_key", req.getApiKey());
} }
if (StringUtils.isNotBlank(req.getStatus())){ if (StringUtils.isNotBlank(req.getStatus())) {
query.eq("status",req.getStatus()); query.eq("status", req.getStatus());
} }
if (StringUtils.isNotBlank(req.getRequestToken())){ if (StringUtils.isNotBlank(req.getRequestToken())) {
query.eq("request_token",req.getRequestToken()); query.eq("request_token", req.getRequestToken());
} }
if (StringUtils.isNotBlank(req.getCreateDate())){ if (StringUtils.isNotBlank(req.getCreateDate())) {
String startTime = req.getCreateDate().substring(0, 10) + " 00:00:00"; String startTime = req.getCreateDate().substring(0, 10) + " 00:00:00";
String endTime = req.getCreateDate().substring(11, 21) + " 23:59:59"; String endTime = req.getCreateDate().substring(11, 21) + " 23:59:59";
query.between("create_date",startTime, endTime); query.between("create_date", startTime, endTime);
} }
query.eq("is_deleted",0); query.eq("is_deleted", 0);
query.orderByDesc("create_date"); query.orderByDesc("create_date");
IPage<ApiReqLog> apiReqLogIPage = apiReqLogMapper.selectPage(page, query); IPage<ApiReqLog> apiReqLogIPage = apiReqLogMapper.selectPage(page, query);
// 数据银行-历史查询返回参数 // 数据银行-历史查询返回参数
if (req.getHistoryQuery().equals("01") && req.getHistoryQuery() != null){ if (req.getHistoryQuery().equals("01") && req.getHistoryQuery() != null) {
for (ApiReqLog record : apiReqLogIPage.getRecords()) { for (ApiReqLog record : apiReqLogIPage.getRecords()) {
DataBankNumberErrorReq errorReq = new DataBankNumberErrorReq(); DataBankNumberErrorReq errorReq = new DataBankNumberErrorReq();
List<Map<String, String>> reqList = new ArrayList<>(); List<Map<String, String>> reqList = new ArrayList<>();
...@@ -97,6 +98,7 @@ public class ApiLogServiceImpl implements ApiLogService { ...@@ -97,6 +98,7 @@ public class ApiLogServiceImpl implements ApiLogService {
/** /**
* 查询日志详情 * 查询日志详情
*
* @param req * @param req
* @return * @return
*/ */
...@@ -107,27 +109,30 @@ public class ApiLogServiceImpl implements ApiLogService { ...@@ -107,27 +109,30 @@ public class ApiLogServiceImpl implements ApiLogService {
/** /**
* 保存日志 * 保存日志
*
* @param reqLog * @param reqLog
*/ */
@Override @Override
public void insetLogInfo(ApiReqLog reqLog) { public void insetLogInfo(ApiReqLog reqLog) {
apiReqLogMapper.insert(reqLog); apiReqLogMapper.insert(reqLog);
} }
/** /**
* api计量统计 * api计量统计
*
* @param date * @param date
* @return * @return
*/ */
@Override @Override
public Result countAPiCallStat(String date ) { public Result countAPiCallStat(String date) {
Date dateParam =null; Date dateParam = null;
try { try {
SimpleDateFormat dateFormat = new SimpleDateFormat("YYYY-MM"); SimpleDateFormat dateFormat = new SimpleDateFormat("YYYY-MM");
dateParam = dateFormat.parse(date); dateParam = dateFormat.parse(date);
}catch (Exception ex){ } catch (Exception ex) {
log.error("时间转换异常:{}",ex.getMessage()); log.error("时间转换异常:{}", ex.getMessage());
} }
return Result.of_success(apiReqLogMapper.countApiCallMonthData(dateParam)); return Result.of_success(apiReqLogMapper.countApiCallMonthData(dateParam));
} }
/** /**
...@@ -150,43 +155,70 @@ public class ApiLogServiceImpl implements ApiLogService { ...@@ -150,43 +155,70 @@ public class ApiLogServiceImpl implements ApiLogService {
} }
/** /**
* 根据id更新日志 * 根据id更新日志
*
* @param id * @param id
* @param jsonObject * @param response
*/ */
@Override @Override
public void updateLog(Long id, JSONObject jsonObject) { public void updateLog(Long id,String response) {
com.alibaba.fastjson.JSONObject jsonObject = null;
if (StringUtils.isNotBlank(response)) {
jsonObject = com.alibaba.fastjson.JSONObject.parseObject(response);
}
try { try {
/*ApiReqLog apiReqLog = apiReqLogMapper.maxId(id);*/ /*ApiReqLog apiReqLog = apiReqLogMapper.maxId(id);*/
ApiReqLog apiReqLog = apiReqLogMapper.selectById(id); ApiReqLog apiReqLog = apiReqLogMapper.selectById(id);
if (null != apiReqLog){ if (null != apiReqLog) {
UpdateWrapper<ApiReqLog> update = new UpdateWrapper<>(); UpdateWrapper<ApiReqLog> update = new UpdateWrapper<>();
if (200 == jsonObject.getInt("code")){ if (null != response){
update.set("status", GeneralStatusTypeEnum.SUCCEED); if (jsonObject.getString("return_code").equals("ESC00000") &&
}else { jsonObject.getString("return_message").equals("SUCCESS")) {
update.set("status", GeneralStatusTypeEnum.FAIL); update.set("status", GeneralStatusTypeEnum.SUCCEED);
} } else {
update.set("response_params",jsonObject.toString()); update.set("status", GeneralStatusTypeEnum.FAIL);
update.set("update_date",new Date()); }
update.set("request_end_time",new Date()); }else {
update.set("status", GeneralStatusTypeEnum.SUCCEED);
}
update.set("response_params", response);
update.set("update_date", new Date());
update.set("request_end_time", new Date());
update.set("handler_status", "1");
Calendar calendar = Calendar.getInstance(); Calendar calendar = Calendar.getInstance();
calendar.setTime(apiReqLog.getRequestStartTime()); calendar.setTime(apiReqLog.getRequestStartTime());
Long time = System.currentTimeMillis() - calendar.getTimeInMillis() / 1000; Long time = (System.currentTimeMillis() - calendar.getTimeInMillis());
double timeConsuming = time.doubleValue(); update.set("request_consuming", time.toString() + "ms");
update.set("request_consuming",timeConsuming); update.eq("id", id);
update.eq("id",id); if (apiReqLogMapper.update(null, update) == 0) {
if (apiReqLogMapper.update(null,update) == 0){
log.info("~~~~~~~~~~~更新日志信息失败~~~~~~~~"); log.info("~~~~~~~~~~~更新日志信息失败~~~~~~~~");
} }
}else { } else {
log.info("id为:{}",id+"--------------日志信息不存在"); log.info("id为:{}", id + "--------------日志信息不存在");
} }
}catch (Exception ex){ } catch (Exception ex) {
log.error("更新日志返回信息异常:{}",ex.getMessage()); log.error("更新日志返回信息异常:{}", ex.getMessage());
} }
} }
/**
* 根据apiKey查询日志
*
* @param apiKey
* @return
*/
@Override
public Long getReqLogging(String apiKey) {
QueryWrapper<ApiReqLog> queryWra = new QueryWrapper<>();
queryWra.select("id");
queryWra.eq("api_key", apiKey);
queryWra.eq("handler_status", 0);
queryWra.isNull("status");
List<ApiReqLog> apiReqLogs = apiReqLogMapper.selectList(queryWra);
if (!CollectionUtils.isEmpty(apiReqLogs)) {
return apiReqLogs.get(apiReqLogs.size() - 1).getId();
}
return null;
}
} }
package com.jz.dm.web.aspect; package com.jz.dm.web.aspect;
import com.jz.common.utils.IpUtils; import com.jz.common.utils.IpUtils;
import com.jz.common.utils.JsonUtils; import com.jz.common.utils.JsonUtils;
import com.jz.common.utils.UrlUtil; import com.jz.common.utils.UrlUtil;
...@@ -17,10 +16,8 @@ import lombok.extern.slf4j.Slf4j; ...@@ -17,10 +16,8 @@ import lombok.extern.slf4j.Slf4j;
import net.sf.json.JSONObject; import net.sf.json.JSONObject;
import org.apache.commons.lang3.StringUtils; import org.apache.commons.lang3.StringUtils;
import org.aspectj.lang.JoinPoint; import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.AfterReturning;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect; import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
import org.aspectj.lang.annotation.Pointcut; import org.aspectj.lang.annotation.Pointcut;
import org.springframework.stereotype.Component; import org.springframework.stereotype.Component;
import org.springframework.web.context.request.RequestContextHolder; import org.springframework.web.context.request.RequestContextHolder;
...@@ -54,25 +51,26 @@ public class SystemLogAspect { ...@@ -54,25 +51,26 @@ public class SystemLogAspect {
@Resource @Resource
private ApiReqLogMapper apiReqLogMapper; private ApiReqLogMapper apiReqLogMapper;
/* //前置通知切入点 //前置通知切入点
@Pointcut("@annotation(com.jz.dm.web.annotation.ApiLogAspect)") @Pointcut("@annotation(com.jz.dm.web.annotation.ApiLogAspect)")
public void beforeAspect() { public void beforeAspect() {
}*/ }
//最终通知切入点 //最终通知切入点
@Pointcut("@annotation(com.jz.dm.web.annotation.ApiLogAspect)") /* @Pointcut("@annotation(com.jz.dm.web.annotation.ApiLogAspect)")
public void lastAspect() { public void lastAspect() {
} }*/
//环绕通知切入点 //环绕通知切入点
@Pointcut("@annotation(com.jz.dm.web.annotation.ApiLogAspect)") /* @Pointcut("@annotation(com.jz.dm.web.annotation.ApiLogAspect)")
public void aroundAspect() { public void aroundAspect() {
} }*/
@Around("aroundAspect()") /*@Around("aroundAspect()")
public void doAround(ProceedingJoinPoint joinPoint) { public void doAround(ProceedingJoinPoint joinPoint) {
HttpServletRequest request = ((ServletRequestAttributes) RequestContextHolder.getRequestAttributes()).getRequest(); HttpServletRequest request = ((ServletRequestAttributes) RequestContextHolder.getRequestAttributes()).getRequest();
HttpServletResponse response = ((ServletRequestAttributes) RequestContextHolder.getRequestAttributes()).getResponse();
String ip = IpUtils.getIpAddr(request); String ip = IpUtils.getIpAddr(request);
//获取用户请求方法的参数并序列化为JSON格式字符串 //获取用户请求方法的参数并序列化为JSON格式字符串
String params = ""; String params = "";
...@@ -103,11 +101,9 @@ public class SystemLogAspect { ...@@ -103,11 +101,9 @@ public class SystemLogAspect {
reqLog.setRequestIp(ip); reqLog.setRequestIp(ip);
reqLog.setApiKey(jsonObject.getString("apiKey")); reqLog.setApiKey(jsonObject.getString("apiKey"));
reqLog.setRequestParams(params); reqLog.setRequestParams(params);
reqLog.setResponseParams("");//响应参数
reqLog.setRequestUrl(url); reqLog.setRequestUrl(url);
reqLog.setRequestMethod(contextPath); reqLog.setRequestMethod(contextPath);
reqLog.setEncryMode(jsonObject.getString("signType")); //加密方式:MD5,RSA reqLog.setEncryMode(jsonObject.getString("signType")); //加密方式:MD5,RSA
//reqLog.setEncryMode("MD5"); //加密方式暂时写死MD5
reqLog.setTransMode(request.getMethod());//传输方式 GET POST reqLog.setTransMode(request.getMethod());//传输方式 GET POST
reqLog.setRequestToken(jsonParamsList.getString("authCode")); reqLog.setRequestToken(jsonParamsList.getString("authCode"));
reqLog.setRequestStartTime(new Date()); reqLog.setRequestStartTime(new Date());
...@@ -116,10 +112,12 @@ public class SystemLogAspect { ...@@ -116,10 +112,12 @@ public class SystemLogAspect {
if (null != reqLog) { if (null != reqLog) {
apiReqLogMapper.insert(reqLog); apiReqLogMapper.insert(reqLog);
} }
/* Object result = joinPoint.proceed(joinPoint.getArgs()); Object proceed = joinPoint.proceed();
System.out.println("proceed"+proceed);
Object result = joinPoint.proceed(joinPoint.getArgs());
jsonResult = JSONObject.fromObject(result); jsonResult = JSONObject.fromObject(result);
log.info("around响应结果为{}", jsonResult); log.info("around响应结果为{}", jsonResult);
apiLogService.updateLog(reqLog.getId(), jsonResult);*/ apiLogService.updateLog(reqLog.getId(), jsonResult);
} catch (GatewayException ex) { } catch (GatewayException ex) {
log.info("切面处理保存异常信息:{}", ex.getMessage()); log.info("切面处理保存异常信息:{}", ex.getMessage());
apiLogService.updateLog(reqLog.getId(), jsonResult); apiLogService.updateLog(reqLog.getId(), jsonResult);
...@@ -127,10 +125,9 @@ public class SystemLogAspect { ...@@ -127,10 +125,9 @@ public class SystemLogAspect {
throwable.printStackTrace(); throwable.printStackTrace();
} }
} }
} }*/
/*@Before("beforeAspect()") @Before("beforeAspect()")
public void doBefore(JoinPoint joinPoint) { public void doBefore(JoinPoint joinPoint) {
//日志信息收集切面
HttpServletRequest request = ((ServletRequestAttributes) RequestContextHolder.getRequestAttributes()).getRequest(); HttpServletRequest request = ((ServletRequestAttributes) RequestContextHolder.getRequestAttributes()).getRequest();
String ip = IpUtils.getIpAddr(request); String ip = IpUtils.getIpAddr(request);
//获取用户请求方法的参数并序列化为JSON格式字符串 //获取用户请求方法的参数并序列化为JSON格式字符串
...@@ -140,47 +137,55 @@ public class SystemLogAspect { ...@@ -140,47 +137,55 @@ public class SystemLogAspect {
params += JsonUtils.objectToJson(joinPoint.getArgs()[i]) + ";"; params += JsonUtils.objectToJson(joinPoint.getArgs()[i]) + ";";
} }
} }
if (StringUtils.isNotBlank(params)) {
params = params.substring(0, params.length() - 1).split(";")[0];
}
//获取请求路径 //获取请求路径
String url = UrlUtil.getServerUrl(request); String url = UrlUtil.getServerUrl(request);
// 访问项目名 // 访问项目名
String contextPath = request.getContextPath(); String contextPath = request.getContextPath();
//JSONObject jsonObject = JSONObject.parseObject(params); log.info("around请求参数为{}", params);
//String param = jsonObject.getString("params"); //动态修改其参数
//JSONObject object = JSONObject.parseObject(param); //注意,如果调用joinPoint.proceed()方法,则修改的参数值不会生效,必须调用joinPoint.proceed(Object[] args)
//String token = object.getString("token"); com.alibaba.fastjson.JSONObject jsonObject = com.alibaba.fastjson.JSONObject.parseObject(params);
try { String paramsList = jsonObject.getString("openApiParams");
log.info("~~~~~~~~~~~~~~~~~~~~~~~前置通知记录请求信息~~~~~~~~~~~~~~~~"); com.alibaba.fastjson.JSONObject jsonParamsList = com.alibaba.fastjson.JSONObject.parseObject(paramsList);
ApiReqLog reqLog = new ApiReqLog(); ApiReqLog reqLog = new ApiReqLog();
reqLog.setRequestIp(ip); JSONObject jsonResult = null;
// reqLog.setApiKey(jsonObject.getString("apiKey")); Boolean isTest = jsonParamsList.getBoolean("isTest");
reqLog.setRequestParams(params); //不保存测试数据
reqLog.setResponseParams("");//响应参数 if (!isTest) {
reqLog.setRequestUrl(url); try {
reqLog.setRequestMethod(contextPath); reqLog.setRequestIp(ip);
reqLog.setEncryMode(SignType.MD5.name()); //加密方式:MD5,RSA reqLog.setApiKey(jsonObject.getString("apiKey"));
reqLog.setTransMode(request.getMethod());//传输方式 GET POST reqLog.setRequestParams(params);
// reqLog.setRequestToken(token); reqLog.setRequestUrl(url);
reqLog.setRequestTime(new Date()); reqLog.setEncryMode("MD5");
reqLog.setRemark(getServiceMethodDescription(joinPoint)); reqLog.setTransMode(request.getMethod());
System.out.println(reqLog); reqLog.setRequestToken(jsonParamsList.getString("authCode"));
if (null != reqLog) { reqLog.setRequestStartTime(new Date());
apiLogService.insetLogInfo(reqLog); reqLog.setRemark(getServiceMethodDescription(joinPoint));
log.info("请求参数:", reqLog);
if (null != reqLog) {
apiReqLogMapper.insert(reqLog);
}
} catch (GatewayException ex) {
log.error("切面处理保存异常信息:{}", ex.getMessage());
/* apiLogService.updateLog(reqLog.getId(), jsonResult);*/
} catch (Throwable throwable) {
throwable.printStackTrace();
} }
} catch (Exception e) {
log.error("~~~~~~~~~~~~~~~~~~~~~~~前置通知异常~~~~~~~~~~~~~~~~~~~~~~~");
log.error("异常信息{}", e.getMessage());
} }
}*/ }
/** /* *//**
* 返回异常通知,返回抛出异常的时候执行的通知,可以获得返回的异常 * 返回异常通知,返回抛出异常的时候执行的通知,可以获得返回的异常
* 可以访问到异常对象,且可以指定在出现特定异常的时候再执行通知代码 * 可以访问到异常对象,且可以指定在出现特定异常的时候再执行通知代码
*/ *//*
@AfterReturning(value = "lastAspect()", returning = "result") @AfterReturning(value = "lastAspect()", returning = "result")
public void afterReturn(JoinPoint joinPoint, Object result) { public void afterReturn(JoinPoint joinPoint, Object result) {
HttpServletRequest request = ((ServletRequestAttributes) RequestContextHolder.getRequestAttributes()) HttpServletRequest request = ((ServletRequestAttributes) RequestContextHolder.getRequestAttributes())
.getRequest(); .getRequest();
log.info("~~~~~~~~~~~~~~~~~~~~~~最终通知执行~~~~~~~~~~~~~~~~~~~~~~~~");
String classType = joinPoint.getTarget().getClass().getName(); String classType = joinPoint.getTarget().getClass().getName();
try { try {
Class<?> clazz = Class.forName(classType); Class<?> clazz = Class.forName(classType);
...@@ -199,8 +204,8 @@ public class SystemLogAspect { ...@@ -199,8 +204,8 @@ public class SystemLogAspect {
JSONObject jsonObject = JSONObject.fromObject(args[1]); JSONObject jsonObject = JSONObject.fromObject(args[1]);
Map mapResult = (Map) jsonObject; Map mapResult = (Map) jsonObject;
//将返回的result参数取出 //将返回的result参数取出
/* Map<String, Object> res = (Map<String, Object>) mapResult.get("data"); Map<String, Object> res = (Map<String, Object>) mapResult.get("attributes");
Integer id = (Integer) res.get("id");*/ Integer id = (Integer) res.get("id");
JSONObject data = jsonObject.getJSONObject("attributes"); JSONObject data = jsonObject.getJSONObject("attributes");
log.info("最终通知得到结果:{}",jsonObject); log.info("最终通知得到结果:{}",jsonObject);
// apiLogService.updateLog(reqLog.getId(), jsonResult); // apiLogService.updateLog(reqLog.getId(), jsonResult);
...@@ -210,7 +215,7 @@ public class SystemLogAspect { ...@@ -210,7 +215,7 @@ public class SystemLogAspect {
log.error("异常信息{}", e.getMessage()); log.error("异常信息{}", e.getMessage());
} }
} }*/
/** /**
* 获取注解中对方法的描述信息 用于service层注解 * 获取注解中对方法的描述信息 用于service层注解
......
...@@ -24,12 +24,14 @@ public class UrlUtil { ...@@ -24,12 +24,14 @@ public class UrlUtil {
int port = request.getServerPort(); int port = request.getServerPort();
// 访问项目名 // 访问项目名
String contextPath = request.getContextPath(); String contextPath = request.getContextPath();
String url = "%s://%s%s%s"; //接口路径
String requestURI = request.getRequestURI();
String url = "%s://%s%s%s%s";
String portStr = ""; String portStr = "";
if (port != 80) { if (port != 80) {
portStr += ":" + port; portStr += ":" + port;
} }
return String.format(url, agreement, serverName, portStr, contextPath); return String.format(url, agreement, serverName, portStr, contextPath,requestURI);
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment