|
|
@ -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(); |
|
|
|
} |
|
|
|
} |
|
|
|