@ -1,11 +1,19 @@
package app.services.db ;
import app.entities.VipGiveMethod ;
import app.entities.db.Permition ;
import app.entities.other.SteamID ;
import jakarta.persistence.EntityManager ;
import jakarta.persistence.PersistenceContext ;
import org.springframework.beans.factory.annotation.Autowired ;
import org.springframework.beans.factory.annotation.Value ;
import org.springframework.stereotype.Service ;
import org.springframework.transaction.annotation.Transactional ;
import org.springframework.web.client.RestTemplate ;
import java.util.HashMap ;
import java.util.List ;
import java.util.Map ;
@Service
@Transactional
@ -13,6 +21,19 @@ public class VIPService {
@PersistenceContext
EntityManager entityManager ;
RestTemplate restTemplate ;
@Value ( "${backend.vip.discord}" )
String webhook_url ;
PermitionService permitionService ;
@Autowired
public VIPService ( PermitionService permitionService ) {
this . restTemplate = new RestTemplate ( ) ;
this . permitionService = permitionService ;
}
public List < Long > getUsersDiscordWithActiveVIP ( ) {
return entityManager . createNativeQuery ( "SELECT `discord_id` FROM `sm_admins` INNER JOIN `steam2discord` ON `sm_admins`.`status` LIKE ?1 AND (`sm_admins`.`comment` LIKE ?2 OR `sm_admins`.`comment` LIKE ?3) AND `sm_admins`.`identity` = `steam2discord`.`steam_id`" )
. setParameter ( 1 , "VIP" )
@ -34,4 +55,42 @@ public class VIPService {
. setParameter ( 1 , "VIP" )
. executeUpdate ( ) ;
}
public Permition CheckCurrentPermition ( SteamID steamID ) {
return permitionService . getPermition ( steamID ) ;
}
public void addVIP ( SteamID steamID , int amount , VipGiveMethod vipGiveMethod ) {
switch ( vipGiveMethod ) {
case FREE - > {
permitionService . addFreeVIP ( steamID , amount ) ;
publishWebhook ( steamID , amount , "Free" , true ) ;
}
case QIWI - > {
permitionService . addVIP ( steamID , amount ) ;
publishWebhook ( steamID , amount , "Qiwi" , false ) ;
}
case STEAM - > {
permitionService . addVIP ( steamID , amount ) ;
publishWebhook ( steamID , amount , "Steam" , false ) ;
}
}
}
public void publishWebhook ( SteamID steamID , int amount , String status , boolean free ) {
HashMap < String , Object > payload = new HashMap < > ( ) ;
//МДА БЛЯТЬ НЕ СМОТРИТЕ ЧТО НИЖЕ
if ( free = = true ) {
payload . put ( "content" , "Схватил бесплатно!!!" ) ;
} else {
payload . put ( "content" , "Делать деньги, делать деньги блять вот так..." ) ;
//тут надо еще добавить
}
payload . put ( "embeds" , List . of ( Map . of ( "fields" , List . of (
Map . of ( "name" , "Ссылка на игрока:" , "value" , steamID . community_url , "inline" , true ) ,
Map . of ( "name" , "Количество дней" , "value" , "%d" . formatted ( amount / 60 / 60 / 24 ) , "inline" , true ) ,
Map . of ( "name" , "Оплата" , "value" , status , "inline" , true )
) ) ) ) ;
restTemplate . postForEntity ( webhook_url , payload , String . class ) ;
}
}