Browse Source

кайф

master
gsd 2 years ago
parent
commit
78bc94abab
  1. 19
      src/main/java/app/services/db/FreeVIPService.java
  2. 2
      src/main/resources/application.yaml

19
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<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);
}
}

2
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:

Loading…
Cancel
Save