From 78bc94abab061414f75f8c54949670f04db7c033 Mon Sep 17 00:00:00 2001 From: gsd Date: Thu, 16 Feb 2023 19:54:22 +0300 Subject: [PATCH] =?UTF-8?q?=D0=BA=D0=B0=D0=B9=D1=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/app/services/db/FreeVIPService.java | 19 +++++++++++++++++++ src/main/resources/application.yaml | 2 ++ 2 files changed, 21 insertions(+) diff --git a/src/main/java/app/services/db/FreeVIPService.java b/src/main/java/app/services/db/FreeVIPService.java index eb912dc..19b97c9 100644 --- a/src/main/java/app/services/db/FreeVIPService.java +++ b/src/main/java/app/services/db/FreeVIPService.java @@ -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 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); + } } diff --git a/src/main/resources/application.yaml b/src/main/resources/application.yaml index edd26e9..4d05b5b 100644 --- a/src/main/resources/application.yaml +++ b/src/main/resources/application.yaml @@ -41,6 +41,8 @@ backend: report: webhook_url: ${REPORT_DISCORD_WEBHOOK} kd: 300 + vip: + discord: ${VIP_DISCORD_WEBHOOK} logging: level: