@ -3,6 +3,7 @@ package app.services.db;
import app.entities.VipGiveMethod ;
import app.entities.db.Permition ;
import app.entities.other.SteamID ;
import app.services.ServerService ;
import jakarta.persistence.EntityManager ;
import jakarta.persistence.PersistenceContext ;
import org.springframework.beans.factory.annotation.Autowired ;
@ -27,11 +28,13 @@ public class VIPService {
String webhook_url ;
PermitionService permitionService ;
ServerService serverService ;
@Autowired
public VIPService ( PermitionService permitionService ) {
public VIPService ( PermitionService permitionService ,
ServerService serverService ) {
this . restTemplate = new RestTemplate ( ) ;
this . permitionService = permitionService ;
this . serverService = serverService ;
}
public List < Long > getUsersDiscordWithActiveVIP ( ) {
@ -56,25 +59,46 @@ public class VIPService {
. executeUpdate ( ) ;
}
@Transactional
public int regesterGiveVIP ( SteamID steamID , int amount , VipGiveMethod vipGiveMethod , String extra , boolean extend ) {
return entityManager . createNativeQuery ( "INSERT INTO `gived_vip` (`id`, `steam2`, `amount`, `timestamp`, `givemethod`, `reserved`, `extend`) VALUES (NULL, ?1, ?2, current_timestamp(), ?3, ?4, ?5)" )
. setParameter ( 1 , steamID . steam2 )
. setParameter ( 2 , amount )
. setParameter ( 3 , vipGiveMethod . ordinal ( ) )
. setParameter ( 4 , extra )
. setParameter ( 5 , extend )
. executeUpdate ( ) ;
}
public Permition CheckCurrentPermition ( SteamID steamID ) {
return permitionService . getPermition ( steamID ) ;
}
public void addVIP ( SteamID steamID , int amount , VipGiveMethod vipGiveMethod ) {
public void addVIP ( SteamID steamID , int amount , VipGiveMethod vipGiveMethod , String extra ) {
int result = 0 ;
switch ( vipGiveMethod ) {
case FREE - > {
permitionService . addFreeVIP ( steamID , amount ) ;
regesterGiveVIP ( steamID , amount , vipGiveMethod , extra , false ) ;
publishWebhook ( steamID , amount , "Free" , true ) ;
}
case QIWI - > {
permitionService . addVIP ( steamID , amount ) ;
result = permitionService . addVIP ( steamID , amount ) ;
regesterGiveVIP ( steamID , amount , vipGiveMethod , extra , result < 0 ) ;
publishWebhook ( steamID , amount , "Qiwi" , false ) ;
}
case STEAM - > {
permitionService . addVIP ( steamID , amount ) ;
result = permitionService . addVIP ( steamID , amount ) ;
regesterGiveVIP ( steamID , amount , vipGiveMethod , extra , result < 0 ) ;
publishWebhook ( steamID , amount , "Steam" , false ) ;
}
case MANUAL - > {
result = permitionService . addVIP ( steamID , amount ) ;
regesterGiveVIP ( steamID , amount , vipGiveMethod , extra , result < 0 ) ;
publishWebhook ( steamID , amount , "Admin" , false ) ;
}
}
serverService . executeRCONOnAllServers ( "sm_reloadadmins" ) ;
}
public void publishWebhook ( SteamID steamID , int amount , String status , boolean free ) {