|
@ -1,62 +1,61 @@ |
|
|
package app.updates; |
|
|
package app.updates; |
|
|
|
|
|
|
|
|
import app.entities.Stats; |
|
|
import app.entities.Stats; |
|
|
|
|
|
import app.websocket.handlers.ServersHandler; |
|
|
import jakarta.annotation.PostConstruct; |
|
|
import jakarta.annotation.PostConstruct; |
|
|
import org.slf4j.Logger; |
|
|
import org.slf4j.Logger; |
|
|
import org.slf4j.LoggerFactory; |
|
|
import org.slf4j.LoggerFactory; |
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
import org.springframework.beans.factory.annotation.Value; |
|
|
import org.springframework.beans.factory.annotation.Value; |
|
|
import org.springframework.context.ApplicationContext; |
|
|
|
|
|
import org.springframework.core.annotation.Order; |
|
|
|
|
|
import org.springframework.stereotype.Component; |
|
|
import org.springframework.stereotype.Component; |
|
|
|
|
|
|
|
|
import java.io.IOException; |
|
|
|
|
|
import java.time.Instant; |
|
|
|
|
|
import java.util.ArrayList; |
|
|
import java.util.ArrayList; |
|
|
import java.util.List; |
|
|
import java.util.List; |
|
|
import java.util.concurrent.Callable; |
|
|
import java.util.concurrent.Callable; |
|
|
import java.util.concurrent.CompletableFuture; |
|
|
|
|
|
import java.util.concurrent.ExecutorService; |
|
|
import java.util.concurrent.ExecutorService; |
|
|
import java.util.concurrent.Executors; |
|
|
import java.util.concurrent.Executors; |
|
|
|
|
|
|
|
|
@Component |
|
|
@Component |
|
|
public class PlayersUpdater extends BaseUpdater{ |
|
|
public class PlayersUpdater extends BaseUpdater{ |
|
|
Stats stats; |
|
|
private Stats stats; |
|
|
|
|
|
private ServersHandler serversHandler; |
|
|
|
|
|
|
|
|
@Value("${backend.updates.a2s}") |
|
|
@Value("${backend.updates.a2s}") |
|
|
private boolean update = false; |
|
|
private boolean update = false; |
|
|
private int timeout = 60 * 1000; |
|
|
private int timeout = 60 * 1000; |
|
|
private final Logger logger = LoggerFactory.getLogger(PlayersUpdater.class); |
|
|
private final Logger logger = LoggerFactory.getLogger(PlayersUpdater.class); |
|
|
@Autowired |
|
|
@Autowired |
|
|
public PlayersUpdater(Stats stats) { |
|
|
public PlayersUpdater(Stats stats, ServersHandler serversHandler) { |
|
|
this.stats = stats; |
|
|
this.stats = stats; |
|
|
|
|
|
this.serversHandler = serversHandler; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/* |
|
|
@PostConstruct |
|
|
public void updateValues() { |
|
|
public void updateValuesInit() { |
|
|
if (update) { |
|
|
logger.info("Players update: a2s = {}", System.getenv("A2S")); |
|
|
logger.warn("Updater enabled"); |
|
|
stats.getServers().forEach((server_name, server) -> { |
|
|
if (stats.getServers().size()==0) logger.error("Not found servers to update"); |
|
|
if (System.getenv("A2S") != null && System.getenv("A2S").equals("false")) { |
|
|
stats.getServers().forEach((server_name, server) -> { |
|
|
logger.warn("Create cache last time updater: {} server", server_name); |
|
|
CreateTaskUpdater(() -> { |
|
|
CreateTaskUpdater(() -> { |
|
|
logger.info("Update players from: {} server", server_name); |
|
|
//logger.info("Update players cache from: {} server", server_name);
|
|
|
server.RefreshServerA2SData(); |
|
|
if (server.RefreshLastCheck(60)) { |
|
|
stats.getUpdates().merge(server_name, Instant.now().getEpochSecond(), (x, y) -> y); |
|
|
serversHandler.pushServer(server_name, server); |
|
|
|
|
|
} |
|
|
return null; |
|
|
return null; |
|
|
}, timeout); |
|
|
}, 15000); |
|
|
}); |
|
|
} else if (System.getenv("A2S") != null && System.getenv("A2S").equals("true")) { |
|
|
} else { |
|
|
logger.warn("Create a2s updater: {} server", server_name); |
|
|
logger.warn("A2S Refresh disabled! Enable last timecheck"); |
|
|
|
|
|
if (stats.getServers().size()==0) logger.error("Not found servers to update"); |
|
|
|
|
|
stats.getServers().forEach((server_name, server) -> { |
|
|
|
|
|
CreateTaskUpdater(() -> { |
|
|
CreateTaskUpdater(() -> { |
|
|
logger.info("Update players from: {} server", server_name); |
|
|
logger.info("Update players from: {} server", server_name); |
|
|
server.RefreshLastCheck(60); |
|
|
server.RefreshServerA2SData(); |
|
|
return null; |
|
|
return null; |
|
|
}, 15000); |
|
|
}, 60000); |
|
|
}); |
|
|
} else { |
|
|
} |
|
|
logger.warn("{} server not be update", server_name); |
|
|
}*/ |
|
|
} |
|
|
|
|
|
}); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void burstUpdater() { |
|
|
public void burstUpdater() { |
|
|
if (!update) return; |
|
|
if (!update) return; |
|
|