Browse Source

donatelo

master
gsd 2 years ago
parent
commit
af2e763ebb
  1. 14
      src/main/java/app/entities/StatisticRange.java
  2. 1
      src/main/java/app/entities/Stats.java
  3. 73
      src/main/java/app/services/db/DonateService.java
  4. 10
      src/main/java/app/services/db/VIPService.java

14
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 "";
}
}
}

1
src/main/java/app/entities/Stats.java

@ -25,6 +25,7 @@ public class Stats {
HashMap<String, Long> updates = new HashMap<>();
Statistic statistic = new Statistic();
String builddate = "";
HashMap<String, HashMap> donate = new HashMap<>();
public Stats(){
try {

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

10
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;
}

Loading…
Cancel
Save