5 changed files with 73 additions and 0 deletions
@ -0,0 +1,4 @@ |
|||
package app.annotations.exceptions; |
|||
|
|||
public class WaitRateLimit extends RuntimeException { |
|||
} |
@ -0,0 +1,50 @@ |
|||
package app.annotations.impl; |
|||
|
|||
import app.annotations.exceptions.NeedCookie; |
|||
import app.annotations.exceptions.WaitRateLimit; |
|||
import jakarta.servlet.http.HttpServletRequest; |
|||
import org.aspectj.lang.JoinPoint; |
|||
import org.aspectj.lang.annotation.After; |
|||
import org.aspectj.lang.annotation.Aspect; |
|||
import org.aspectj.lang.annotation.Before; |
|||
import org.springframework.context.annotation.Configuration; |
|||
|
|||
import java.util.HashSet; |
|||
|
|||
@Aspect |
|||
@Configuration |
|||
public class WaitAfterNextAspect { |
|||
HashSet<String> wait_steam64 = new HashSet<>(); |
|||
|
|||
@Before("@annotation(app.annotations.interfaces.WaitAfterNext) && args(request,..)") |
|||
public void before(HttpServletRequest request) { |
|||
String steam64 = getSteam64fromCookie(request); |
|||
|
|||
if (steam64.isEmpty()) return; |
|||
if (wait_steam64.contains(steam64)) throw new WaitRateLimit(); |
|||
wait_steam64.add(steam64); |
|||
} |
|||
|
|||
@After("@annotation(app.annotations.interfaces.WaitAfterNext) && args(request,..)") |
|||
public void after(HttpServletRequest request) { |
|||
String steam64 = getSteam64fromCookie(request); |
|||
if (steam64.isEmpty()) return; |
|||
if (wait_steam64.contains(steam64)) wait_steam64.remove(steam64); |
|||
} |
|||
|
|||
public String getSteam64fromCookie(HttpServletRequest request) { |
|||
if(request.getHeader("Cookie") == null) { |
|||
return ""; |
|||
} |
|||
|
|||
String[] rawCookieParams = request.getHeader("Cookie").split(";"); |
|||
String steam64 = ""; |
|||
for(String rawCookie: rawCookieParams) { |
|||
if(rawCookie.contains("steam64=")) { |
|||
steam64 = rawCookie.split("=")[1]; |
|||
continue; |
|||
} |
|||
} |
|||
return steam64; |
|||
} |
|||
} |
@ -0,0 +1,11 @@ |
|||
package app.annotations.interfaces; |
|||
|
|||
import java.lang.annotation.ElementType; |
|||
import java.lang.annotation.Retention; |
|||
import java.lang.annotation.RetentionPolicy; |
|||
import java.lang.annotation.Target; |
|||
|
|||
@Retention(RetentionPolicy.RUNTIME) |
|||
@Target(ElementType.METHOD) |
|||
public @interface WaitAfterNext { |
|||
} |
Loading…
Reference in new issue