|
|
@ -9,6 +9,7 @@ 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.math.BigDecimal; |
|
|
@ -67,6 +68,16 @@ public class FreeVIPService { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
@Transactional |
|
|
|
public boolean setGivedFreeVip(SteamID steamID, SocialAuth socialAuth) { |
|
|
|
if (!socialAuth.haveAny()) return false; |
|
|
|
return entityManager.createNativeQuery("INSERT INTO `free_vip` (`id`, `steam3`, `vk_id`, `discord_id`, `date`) VALUES (NULL, ?1, ?2, ?3, current_timestamp())") |
|
|
|
.setParameter(1, steamID.steam2) |
|
|
|
.setParameter(2, socialAuth.getVk_id()) |
|
|
|
.setParameter(3, socialAuth.getDiscord_id()) |
|
|
|
.executeUpdate() > 0; |
|
|
|
} |
|
|
|
|
|
|
|
public Long addFreeVIP(SteamID steamID, SocialAuth socialAuth) { |
|
|
|
/* |
|
|
|
0 - права уже есть |
|
|
@ -102,6 +113,7 @@ public class FreeVIPService { |
|
|
|
//4.недостаточно наиграл
|
|
|
|
return -1 * (need_usertime - total_usertime.longValue()); |
|
|
|
} |
|
|
|
setGivedFreeVip(steamID, socialAuth); |
|
|
|
permitionService.addFreeVIP(steamID, 86400); |
|
|
|
publishWebhook(steamID, 86400, "Free"); |
|
|
|
return 1L; |
|
|
|