@ -1,6 +1,8 @@
package app.updates ;
package app.updates ;
import app.entities.Stats ;
import app.entities.Stats ;
import app.services.ServerService ;
import app.services.db.VIPService ;
import jakarta.annotation.PostConstruct ;
import jakarta.annotation.PostConstruct ;
import jakarta.persistence.EntityManager ;
import jakarta.persistence.EntityManager ;
import jakarta.persistence.PersistenceContext ;
import jakarta.persistence.PersistenceContext ;
@ -19,6 +21,9 @@ public class VipCountUpdater extends BaseUpdater{
@PersistenceContext
@PersistenceContext
EntityManager entityManager ;
EntityManager entityManager ;
private VIPService vipService ;
private ServerService serverService ;
private final Logger logger = LoggerFactory . getLogger ( VipCountUpdater . class ) ;
private final Logger logger = LoggerFactory . getLogger ( VipCountUpdater . class ) ;
@Value ( "${backend.updates.vip_count}" )
@Value ( "${backend.updates.vip_count}" )
@ -26,8 +31,12 @@ public class VipCountUpdater extends BaseUpdater{
private int timeout = 5 * 60 * 1000 ;
private int timeout = 5 * 60 * 1000 ;
@Autowired
@Autowired
public VipCountUpdater ( Stats stats ) {
public VipCountUpdater ( Stats stats ,
VIPService vipService ,
ServerService serverService ) {
this . stats = stats ;
this . stats = stats ;
this . vipService = vipService ;
this . serverService = serverService ;
}
}
@PostConstruct
@PostConstruct
@ -36,6 +45,7 @@ public class VipCountUpdater extends BaseUpdater{
logger . warn ( "Updater enabled" ) ;
logger . warn ( "Updater enabled" ) ;
CreateTaskUpdater ( this : : UpdateVIPCount , timeout ) ;
CreateTaskUpdater ( this : : UpdateVIPCount , timeout ) ;
CreateTaskUpdater ( this : : UpdateFreeVIPCount , timeout ) ;
CreateTaskUpdater ( this : : UpdateFreeVIPCount , timeout ) ;
CreateTaskUpdater ( this : : CheckEndedVIPs , 60 * 1000 ) ;
}
}
}
}
@ -56,4 +66,14 @@ public class VipCountUpdater extends BaseUpdater{
stats . getUpdates ( ) . merge ( "freevip_count" , Instant . now ( ) . getEpochSecond ( ) , ( x , y ) - > y ) ;
stats . getUpdates ( ) . merge ( "freevip_count" , Instant . now ( ) . getEpochSecond ( ) , ( x , y ) - > y ) ;
return true ;
return true ;
}
}
public boolean CheckEndedVIPs ( ) {
int count = vipService . removeEndedVIPs ( ) ;
if ( count > 0 ) {
logger . info ( "Found {} ended vips" , count ) ;
serverService . executeRCONOnAllServers ( "sm_reloadadmins" ) ;
return true ;
}
return false ;
}
}
}