|
|
@ -1,11 +1,12 @@ |
|
|
|
package app.controllers; |
|
|
|
|
|
|
|
import app.annotations.enums.CollectStages; |
|
|
|
import app.annotations.interfaces.BurstUpdatePlayers; |
|
|
|
import app.annotations.interfaces.CollectStatistic; |
|
|
|
import app.annotations.interfaces.*; |
|
|
|
import app.entities.Stats; |
|
|
|
import app.services.ExternalServices; |
|
|
|
import app.services.io.readers.ServersReader; |
|
|
|
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; |
|
|
@ -25,12 +26,14 @@ public class StatsController { |
|
|
|
private ExternalServices externalServices; |
|
|
|
private OnlineUpdater onlineUpdater; |
|
|
|
private HashMap<Integer, HashMap<List<OnlineUpdater.StatsOfPeakOfDay>, Long>> cache = new HashMap<>(); |
|
|
|
private ServersReader serversReader; |
|
|
|
|
|
|
|
@Autowired |
|
|
|
public StatsController(Stats stats, ExternalServices externalServices, OnlineUpdater onlineUpdater){ |
|
|
|
public StatsController(Stats stats, ExternalServices externalServices, OnlineUpdater onlineUpdater, ServersReader serversReader){ |
|
|
|
this.stats = stats; |
|
|
|
this.externalServices = externalServices; |
|
|
|
this.onlineUpdater = onlineUpdater; |
|
|
|
this.serversReader = serversReader; |
|
|
|
} |
|
|
|
|
|
|
|
@GetMapping |
|
|
@ -61,4 +64,13 @@ public class StatsController { |
|
|
|
|
|
|
|
return new ResponseEntity<>(cache.get(limit).keySet().stream().findFirst().orElse(null), HttpStatus.OK); |
|
|
|
} |
|
|
|
|
|
|
|
@GetMapping("/reload") |
|
|
|
@CheckWebAccess |
|
|
|
@CheckPermitionFlag(flag = "z") |
|
|
|
@WaitAfterNext(order = "reload_config") |
|
|
|
@CollectStatistic(stage = CollectStages.COMBINED) |
|
|
|
public ResponseEntity<Boolean> reloadConfig(HttpServletRequest request) { |
|
|
|
return new ResponseEntity<>(serversReader.call(false), HttpStatus.OK); |
|
|
|
} |
|
|
|
} |
|
|
|