Browse Source

ratelimits

master
gsd 5 months ago
parent
commit
e1005876cb
  1. 11
      src/main/java/app/annotations/impl/WaitAfterNextAspect.java
  2. 21
      src/main/java/app/controllers/other/PulseController.java

11
src/main/java/app/annotations/impl/WaitAfterNextAspect.java

@ -1,6 +1,5 @@
package app.annotations.impl;
import app.annotations.exceptions.NeedCookie;
import app.annotations.exceptions.WaitRateLimit;
import app.annotations.interfaces.WaitAfterNext;
import jakarta.servlet.http.HttpServletRequest;
@ -57,9 +56,17 @@ public class WaitAfterNextAspect {
public String getIp(HttpServletRequest request) {
if (request.getHeader("X-Forwarded-For") == null) {
return "";
return request.getRemoteAddr();
}
return request.getHeader("X-Forwarded-For").split(",")[0];
}
public HashSet<String> getRateLimits() {
return wait_order;
}
public void clearRateLimits() {
wait_order.clear();
}
}

21
src/main/java/app/controllers/other/PulseController.java

@ -1,16 +1,22 @@
package app.controllers.other;
import app.annotations.impl.WaitAfterNextAspect;
import app.annotations.interfaces.CheckPermitionFlag;
import app.annotations.interfaces.CheckWebAccess;
import app.services.StatsService;
import app.services.db.DBService;
import app.updates.OnlineUpdater;
import jakarta.servlet.http.HttpServletRequest;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import java.util.HashMap;
import java.util.HashSet;
/**
* контролллер для проверки жива ли эта хуйня и че там по бд
@ -22,14 +28,17 @@ public class PulseController {
DBService dbService;
OnlineUpdater onlineUpdater;
StatsService statsService;
WaitAfterNextAspect waitAfterNextAspect;
@Autowired
public PulseController(DBService dbService,
OnlineUpdater onlineUpdater,
StatsService statsService) {
StatsService statsService,
WaitAfterNextAspect waitAfterNextAspect) {
this.dbService = dbService;
this.onlineUpdater = onlineUpdater;
this.statsService = statsService;
this.waitAfterNextAspect = waitAfterNextAspect;
}
@GetMapping("/db")
@ -50,4 +59,14 @@ public class PulseController {
public ResponseEntity<HashMap<String, Long>> getServices() {
return new ResponseEntity<>(statsService.getServices(), HttpStatus.OK);
}
@GetMapping("/ratelimit")
@CheckWebAccess
@CheckPermitionFlag(flag = "z")
public HashSet<String> getRateLimitOrder(HttpServletRequest request, @RequestParam(defaultValue = "false") boolean clear) {
if (clear) {
waitAfterNextAspect.clearRateLimits();
}
return waitAfterNextAspect.getRateLimits();
}
}

Loading…
Cancel
Save