|
|
@ -7,7 +7,9 @@ import app.entities.server.Server; |
|
|
|
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.web.client.RestTemplate; |
|
|
|
|
|
|
|
import java.math.BigDecimal; |
|
|
|
import java.util.HashMap; |
|
|
@ -22,11 +24,16 @@ public class FreeVIPService { |
|
|
|
PermitionService permitionService; |
|
|
|
UsertimeService usertimeService; |
|
|
|
|
|
|
|
@Value("${backend.vip.discord}") |
|
|
|
String webhook_url; |
|
|
|
RestTemplate restTemplate; |
|
|
|
|
|
|
|
@Autowired |
|
|
|
public FreeVIPService(PermitionService permitionService, |
|
|
|
UsertimeService usertimeService) { |
|
|
|
this.permitionService = permitionService; |
|
|
|
this.usertimeService = usertimeService; |
|
|
|
this.restTemplate = new RestTemplate(); |
|
|
|
} |
|
|
|
|
|
|
|
public Long getDBServerUTime() { |
|
|
@ -96,6 +103,18 @@ public class FreeVIPService { |
|
|
|
return -1 * (need_usertime - total_usertime.longValue()); |
|
|
|
} |
|
|
|
permitionService.addFreeVIP(steamID, 86400); |
|
|
|
publishWebhook(steamID, 86400, "Free"); |
|
|
|
return 1L; |
|
|
|
} |
|
|
|
|
|
|
|
public void publishWebhook(SteamID steamID, int amount, String status) { |
|
|
|
HashMap<String, Object> payload = new HashMap<>(); |
|
|
|
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); |
|
|
|
} |
|
|
|
} |
|
|
|