diff --git a/src/main/java/app/entities/StatisticRange.java b/src/main/java/app/entities/StatisticRange.java new file mode 100644 index 0000000..5b98901 --- /dev/null +++ b/src/main/java/app/entities/StatisticRange.java @@ -0,0 +1,14 @@ +package app.entities; + +public enum StatisticRange { + DAY, MONTH, YEAR; + + public static String cast(StatisticRange statisticRange) { + switch (statisticRange) { + case DAY: return "%Y-%m-%d"; + case MONTH: return "%Y-%m-01"; + case YEAR: return "%Y-01-01"; + default: return ""; + } + } +} diff --git a/src/main/java/app/entities/Stats.java b/src/main/java/app/entities/Stats.java index d1106da..ea405fb 100644 --- a/src/main/java/app/entities/Stats.java +++ b/src/main/java/app/entities/Stats.java @@ -25,6 +25,7 @@ public class Stats { HashMap updates = new HashMap<>(); Statistic statistic = new Statistic(); String builddate = ""; + HashMap donate = new HashMap<>(); public Stats(){ try { diff --git a/src/main/java/app/services/db/DonateService.java b/src/main/java/app/services/db/DonateService.java new file mode 100644 index 0000000..46160f7 --- /dev/null +++ b/src/main/java/app/services/db/DonateService.java @@ -0,0 +1,73 @@ +package app.services.db; + +import app.entities.StatisticRange; +import app.entities.Stats; +import app.entities.VipGiveMethod; +import jakarta.annotation.PostConstruct; +import jakarta.persistence.EntityManager; +import jakarta.persistence.PersistenceContext; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Component; +import org.springframework.stereotype.Service; + +import java.util.HashMap; +import java.util.List; +import java.util.Optional; + +@Component +public class DonateService { + + @PersistenceContext + EntityManager entityManager; + + Stats stats; + + @Autowired + public DonateService(Stats stats) { + this.stats = stats; + } + + public HashMap getDonateStatistic(StatisticRange statisticRange) { + HashMap map = new HashMap<>(); + List steam = entityManager.createNativeQuery( + "SELECT SUM(REPLACE(REPLACE(substring_index(`reserved`,';',-2), 'metal=',''), ';','')) as r," + + " SUM(REPLACE(REPLACE(substring_index(`reserved`,';',1), 'keys=',''), ';','')) as k " + + "FROM `gived_vip` WHERE `givemethod` = ?1 AND `timestamp` > CAST(DATE_FORMAT(NOW() ,?2) as DATE)") + .setParameter(1, VipGiveMethod.STEAM.ordinal()) + .setParameter(2, StatisticRange.cast(statisticRange)) + .getResultList(); + + if(!steam.isEmpty()) { + //За то что ниже мне стыдно + map.put("metal", steam.get(0)[0]==null?0:Integer.parseInt(steam.get(0)[0].toString().replace(".0",""))); + map.put("key", steam.get(0)[1]==null?0:Integer.parseInt(steam.get(0)[1].toString().replace(".0",""))); + } else { + map.put("metal", 0); + map.put("key", 0); + } + + List qiwi = entityManager.createNativeQuery( + "SELECT SUM(REPLACE(REPLACE(substring_index(`reserved`,';',1), 'rub=',''), ';','')) as k " + + "FROM `gived_vip` WHERE `givemethod` = ?1 AND `timestamp` > CAST(DATE_FORMAT(NOW() ,?2) as DATE)") + .setParameter(1, VipGiveMethod.QIWI.ordinal()) + .setParameter(2, StatisticRange.cast(statisticRange)) + .getResultList(); + if(!qiwi.isEmpty()) map.put("rub", qiwi.get(0)==null?0:Integer.parseInt(qiwi.get(0).toString().replace(".0",""))); + else map.put("rub", 0); + + Long count = (Long) entityManager.createNativeQuery("SELECT COUNT(*) as count FROM `gived_vip` WHERE `givemethod` = ?1 AND `timestamp` > CAST(DATE_FORMAT(NOW() ,?2) as DATE)") + .setParameter(1, VipGiveMethod.FREE.ordinal()) + .setParameter(2, StatisticRange.cast(statisticRange)) + .getSingleResult(); + map.put("free", count.intValue()); + + return map; + } + + @PostConstruct + public void UpdateStatistic() { + stats.getDonate().put("day", getDonateStatistic(StatisticRange.DAY)); + stats.getDonate().put("month", getDonateStatistic(StatisticRange.MONTH)); + stats.getDonate().put("year", getDonateStatistic(StatisticRange.YEAR)); + } +} diff --git a/src/main/java/app/services/db/VIPService.java b/src/main/java/app/services/db/VIPService.java index 9d6d92c..7ace1f3 100644 --- a/src/main/java/app/services/db/VIPService.java +++ b/src/main/java/app/services/db/VIPService.java @@ -30,12 +30,15 @@ public class VIPService { PermitionService permitionService; ServerService serverService; + DonateService donateService; @Autowired public VIPService(PermitionService permitionService, - ServerService serverService) { + ServerService serverService, + DonateService donateService) { this.restTemplate = new RestTemplate(); this.permitionService = permitionService; this.serverService = serverService; + this.donateService = donateService; } // Список ид из дискорда кто имеет платную випку @@ -129,6 +132,11 @@ public class VIPService { if (result != 0) { serverService.executeRCONOnAllServers("sm_reloadadmins"); } + + try { + donateService.UpdateStatistic(); + } catch (Exception err) {} + return result; }