|
|
@ -8,6 +8,9 @@ import org.aspectj.lang.annotation.After; |
|
|
|
import org.aspectj.lang.annotation.Aspect; |
|
|
|
import org.aspectj.lang.annotation.Before; |
|
|
|
import org.aspectj.lang.reflect.MethodSignature; |
|
|
|
import org.slf4j.Logger; |
|
|
|
import org.slf4j.LoggerFactory; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
import org.springframework.context.annotation.Configuration; |
|
|
|
|
|
|
|
import java.util.HashSet; |
|
|
@ -18,24 +21,34 @@ import java.util.HashSet; |
|
|
|
@Aspect |
|
|
|
@Configuration |
|
|
|
public class WaitAfterNextAspect { |
|
|
|
HashSet<String> wait_order = new HashSet<>(); |
|
|
|
private final HashSet<String> wait_order = new HashSet<>(); |
|
|
|
private final Logger logger = LoggerFactory.getLogger(getClass()); |
|
|
|
|
|
|
|
@Before("@annotation(app.annotations.interfaces.WaitAfterNext) && args(request,..)") |
|
|
|
public void before(JoinPoint joinPoint, HttpServletRequest request) { |
|
|
|
@Autowired |
|
|
|
private HttpServletRequest request; |
|
|
|
|
|
|
|
@Before("@annotation(app.annotations.interfaces.WaitAfterNext)") |
|
|
|
public void before(JoinPoint joinPoint) { |
|
|
|
final String order = ((MethodSignature) joinPoint.getSignature()).getMethod().getAnnotation(WaitAfterNext.class).order(); |
|
|
|
final String hash = new StringBuilder().append(getSteam64fromCookie(request)).append(getIp(request)).append(order).toString(); |
|
|
|
|
|
|
|
if (hash.isEmpty()) return; |
|
|
|
if (wait_order.contains(hash)) throw new WaitRateLimit(); |
|
|
|
if (wait_order.contains(hash)) { |
|
|
|
logger.error(hash); |
|
|
|
throw new WaitRateLimit(); |
|
|
|
} |
|
|
|
logger.info(hash); |
|
|
|
wait_order.add(hash); |
|
|
|
} |
|
|
|
|
|
|
|
@After("@annotation(app.annotations.interfaces.WaitAfterNext) && args(request,..)") |
|
|
|
public void after(JoinPoint joinPoint, HttpServletRequest request) { |
|
|
|
@After("@annotation(app.annotations.interfaces.WaitAfterNext)") |
|
|
|
public void after(JoinPoint joinPoint) { |
|
|
|
final String order = ((MethodSignature) joinPoint.getSignature()).getMethod().getAnnotation(WaitAfterNext.class).order(); |
|
|
|
final String hash = new StringBuilder().append(getSteam64fromCookie(request)).append(getIp(request)).append(order).toString(); |
|
|
|
if (hash.isEmpty()) return; |
|
|
|
if (wait_order.contains(hash)) wait_order.remove(hash); |
|
|
|
if (wait_order.contains(hash)) { |
|
|
|
logger.warn(hash); |
|
|
|
wait_order.remove(hash); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public String getSteam64fromCookie(HttpServletRequest request) { |
|
|
|