13 changed files with 102 additions and 41 deletions
@ -0,0 +1,6 @@ |
|||||
|
package app.annotations.enums; |
||||
|
|
||||
|
public enum CollectStages { |
||||
|
COMBINED, BEFORE, AFTER; |
||||
|
|
||||
|
} |
@ -1,39 +1,60 @@ |
|||||
package app.annotations.impl; |
package app.annotations.impl; |
||||
|
|
||||
|
import app.annotations.enums.CollectStages; |
||||
|
import app.annotations.interfaces.CollectStatistic; |
||||
import app.entities.db.CollectableStatistic; |
import app.entities.db.CollectableStatistic; |
||||
import app.services.db.CollectStatisticService; |
import app.services.db.CollectStatisticService; |
||||
import jakarta.servlet.http.HttpServletRequest; |
import jakarta.servlet.http.HttpServletRequest; |
||||
import jakarta.servlet.http.HttpServletResponse; |
import jakarta.servlet.http.HttpServletResponse; |
||||
import org.aspectj.lang.JoinPoint; |
import org.aspectj.lang.JoinPoint; |
||||
import org.aspectj.lang.annotation.After; |
import org.aspectj.lang.annotation.After; |
||||
import org.aspectj.lang.annotation.AfterReturning; |
|
||||
import org.aspectj.lang.annotation.Aspect; |
import org.aspectj.lang.annotation.Aspect; |
||||
import org.aspectj.lang.annotation.Before; |
import org.aspectj.lang.annotation.Before; |
||||
|
import org.aspectj.lang.reflect.MethodSignature; |
||||
import org.slf4j.Logger; |
import org.slf4j.Logger; |
||||
import org.slf4j.LoggerFactory; |
import org.slf4j.LoggerFactory; |
||||
import org.springframework.beans.factory.annotation.Autowired; |
import org.springframework.beans.factory.annotation.Autowired; |
||||
import org.springframework.context.annotation.Configuration; |
import org.springframework.context.annotation.Configuration; |
||||
|
|
||||
import java.util.Arrays; |
import java.sql.Timestamp; |
||||
|
import java.time.Instant; |
||||
|
|
||||
|
|
||||
@Aspect |
@Aspect |
||||
@Configuration |
@Configuration |
||||
public class CollectStatisticAspect { |
public class CollectStatisticAspect { |
||||
|
|
||||
private final Logger logger = LoggerFactory.getLogger(this.getClass()); |
private final Logger logger = LoggerFactory.getLogger(this.getClass()); |
||||
|
|
||||
private CollectStatisticService collectStatisticService; |
private CollectStatisticService collectStatisticService; |
||||
|
|
||||
private HttpServletRequest request; |
private HttpServletRequest request; |
||||
|
private HttpServletResponse response; |
||||
|
|
||||
@Autowired |
@Autowired |
||||
public CollectStatisticAspect(CollectStatisticService collectStatisticService, HttpServletRequest request) { |
public CollectStatisticAspect(CollectStatisticService collectStatisticService, |
||||
|
HttpServletRequest request, |
||||
|
HttpServletResponse response) { |
||||
this.collectStatisticService = collectStatisticService; |
this.collectStatisticService = collectStatisticService; |
||||
this.request = request; |
this.request = request; |
||||
|
this.response = response; |
||||
} |
} |
||||
|
|
||||
@Before("@annotation(app.annotations.interfaces.CollectStatistic)") |
@Before("@annotation(app.annotations.interfaces.CollectStatistic)") |
||||
public void before() { |
public void before(JoinPoint joinPoint) { |
||||
collectStatisticService.add(new CollectableStatistic(request)); |
CollectStages collectStages = ((MethodSignature) joinPoint.getSignature()).getMethod().getAnnotation(CollectStatistic.class).stage(); |
||||
|
if (collectStages.equals(CollectStages.COMBINED) || collectStages.equals(CollectStages.BEFORE)) |
||||
|
if (request != null) |
||||
|
collectStatisticService.add(new CollectableStatistic(request)); |
||||
|
else return; |
||||
|
} |
||||
|
|
||||
|
@After("@annotation(app.annotations.interfaces.CollectStatistic)") |
||||
|
public void after(JoinPoint joinPoint) { |
||||
|
CollectStages collectStages = ((MethodSignature) joinPoint.getSignature()).getMethod().getAnnotation(CollectStatistic.class).stage(); |
||||
|
if (collectStages.equals(CollectStages.COMBINED) || collectStages.equals(CollectStages.AFTER)) |
||||
|
if (response != null) |
||||
|
logger.info("[RES] [{}] {}", Timestamp.from(Instant.now()).toString(), response.getStatus()); |
||||
|
else |
||||
|
logger.warn("[RES] [{}] response in null", Timestamp.from(Instant.now()).toString()); |
||||
|
else return; |
||||
} |
} |
||||
} |
} |
||||
|
Loading…
Reference in new issue