|
|
@ -2,8 +2,10 @@ package app.controllers; |
|
|
|
|
|
|
|
import app.annotations.enums.CollectStages; |
|
|
|
import app.annotations.interfaces.*; |
|
|
|
import app.entities.StatisticRange; |
|
|
|
import app.entities.Stats; |
|
|
|
import app.services.ExternalServices; |
|
|
|
import app.services.db.DonateService; |
|
|
|
import app.services.io.readers.ServersReader; |
|
|
|
import app.updates.OnlineUpdater; |
|
|
|
import app.utils.RealIPService; |
|
|
@ -30,14 +32,17 @@ public class StatsController { |
|
|
|
private HashMap<Map<Integer, String>, HashMap<List<OnlineUpdater.StatsOfPeakOfDay>, Long>> cache = new HashMap<>(); |
|
|
|
private ServersReader serversReader; |
|
|
|
private RealIPService realIPService; |
|
|
|
private DonateService donateService; |
|
|
|
|
|
|
|
@Autowired |
|
|
|
public StatsController(Stats stats, ExternalServices externalServices, OnlineUpdater onlineUpdater, ServersReader serversReader){ |
|
|
|
public StatsController(Stats stats, ExternalServices externalServices, OnlineUpdater onlineUpdater, ServersReader serversReader, |
|
|
|
DonateService donateService){ |
|
|
|
this.stats = stats; |
|
|
|
this.externalServices = externalServices; |
|
|
|
this.onlineUpdater = onlineUpdater; |
|
|
|
this.serversReader = serversReader; |
|
|
|
this.realIPService = new RealIPService(); |
|
|
|
this.donateService = donateService; |
|
|
|
} |
|
|
|
|
|
|
|
@GetMapping |
|
|
@ -120,4 +125,15 @@ public class StatsController { |
|
|
|
"connect " + route, "steam://connect/" + route |
|
|
|
), HttpStatus.OK); |
|
|
|
} |
|
|
|
|
|
|
|
@GetMapping("/goty") |
|
|
|
@WaitAfterNext(order = "goty") |
|
|
|
public Map getGoty() { |
|
|
|
//select message, count(*) as c from user_messages group by message order by c desc limit 15 - топ сообщений
|
|
|
|
//select weapon_name, count(*) as c from user_killfeed group by weapon_name order by c desc limit 10 - топ пушек
|
|
|
|
//select count(*) as c from user_killfeed where attacker_id != user_killfeed.victim_id - скок умерло карликов
|
|
|
|
return Map.of( |
|
|
|
"topdonate", donateService.getTopSteamSheikh(StatisticRange.YEAR) |
|
|
|
); |
|
|
|
} |
|
|
|
} |
|
|
|