@ -3,20 +3,28 @@ package app.services;
import app.entities.PlayerProfile ;
import app.entities.Stats ;
import app.entities.server.PlayOn ;
import app.updates.SocialUpdater ;
import org.slf4j.Logger ;
import org.slf4j.LoggerFactory ;
import org.springframework.beans.factory.annotation.Autowired ;
import org.springframework.context.ApplicationContext ;
import org.springframework.stereotype.Service ;
import java.util.ArrayList ;
import java.util.List ;
import java.util.concurrent.Callable ;
import java.util.concurrent.ExecutorService ;
import java.util.concurrent.Executors ;
@Service
public class ServerService {
Stats stats ;
ApplicationContext applicationContext ;
private final Logger logger = LoggerFactory . getLogger ( ServerService . class ) ;
@Autowired
public ServerService ( Stats stats ,
ApplicationContext applicationContext ) {
public ServerService ( Stats stats ) {
this . stats = stats ;
this . applicationContext = applicationContext ;
}
public boolean kickPlayer ( PlayerProfile playerProfile , String reason ) {
@ -24,4 +32,22 @@ public class ServerService {
return stats . getServers ( ) . get ( playerProfile . getPlay_on ( ) . getServer_id ( ) )
. ExecuteRCON ( "sm_kick #%d %s" . formatted ( playerProfile . getPlay_on ( ) . getPlayer_id ( ) , reason ) ) . contains ( "kicked" ) ;
}
public void executeRCONOnAllServers ( String command ) {
ExecutorService executor = Executors . newCachedThreadPool ( ) ;
List tasks = new ArrayList < > ( ) ;
stats . getServers ( ) . forEach ( ( server_name , server ) - > {
tasks . add ( ( Callable < Void > ) ( ) - > {
server . ExecuteRCON ( command ) ;
return null ;
} ) ;
} ) ;
try {
executor . invokeAll ( tasks ) ;
executor . shutdown ( ) ;
} catch ( InterruptedException err ) {
logger . error ( "Cancel burst execute rcon command: {}" , command ) ;
}
}
}