|
|
@ -8,6 +8,7 @@ import app.entities.report.ReportType; |
|
|
|
import app.entities.server.request.ServerRequestBody; |
|
|
|
import app.services.ProfileService; |
|
|
|
import app.services.db.ReportService; |
|
|
|
import app.utils.RealIPService; |
|
|
|
import app.websocket.handlers.ServersHandler; |
|
|
|
import jakarta.servlet.http.HttpServletRequest; |
|
|
|
import lombok.Data; |
|
|
@ -28,6 +29,7 @@ public class ServerUpdaterController { |
|
|
|
private ServersHandler serversHandler; |
|
|
|
private ReportService reportService; |
|
|
|
private ProfileService profileService; |
|
|
|
private RealIPService realIPService; |
|
|
|
|
|
|
|
@Autowired |
|
|
|
public ServerUpdaterController(Stats stats, |
|
|
@ -38,6 +40,7 @@ public class ServerUpdaterController { |
|
|
|
this.serversHandler = serversHandler; |
|
|
|
this.reportService = reportService; |
|
|
|
this.profileService = profileService; |
|
|
|
realIPService = new RealIPService(); |
|
|
|
} |
|
|
|
|
|
|
|
@PostMapping(value = "/{srv}") |
|
|
@ -45,6 +48,7 @@ public class ServerUpdaterController { |
|
|
|
public ResponseEntity updateServer(HttpServletRequest request, @PathVariable String srv, @RequestBody ServerRequestBody serverRequestBody) { |
|
|
|
if (!stats.getServers().containsKey(srv)) return new ResponseEntity<>(HttpStatus.NOT_FOUND); |
|
|
|
stats.getServers().get(srv).RefreshServerFromRequest(serverRequestBody); |
|
|
|
stats.getServers().get(srv).setIp(realIPService.getIP()); |
|
|
|
serversHandler.pushServer(srv, stats.getServers().get(srv)); |
|
|
|
return new ResponseEntity(HttpStatus.OK); |
|
|
|
} |
|
|
|