4 changed files with 97 additions and 1 deletions
@ -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 ""; |
|||
} |
|||
} |
|||
} |
@ -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<String, Integer> getDonateStatistic(StatisticRange statisticRange) { |
|||
HashMap<String, Integer> map = new HashMap<>(); |
|||
List<Object[]> 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<Object> 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)); |
|||
} |
|||
} |
Loading…
Reference in new issue