Browse Source

extra more

master
gsd 1 year ago
parent
commit
4f4f35f97e
  1. 9
      src/main/java/app/controllers/user/ProfileController.java
  2. 5
      src/main/java/app/services/ProfileService.java

9
src/main/java/app/controllers/user/ProfileController.java

@ -1,6 +1,7 @@
package app.controllers.user; package app.controllers.user;
import app.annotations.enums.AuthMethod; import app.annotations.enums.AuthMethod;
import app.annotations.enums.CollectStages;
import app.annotations.interfaces.*; import app.annotations.interfaces.*;
import app.entities.SocialAuth; import app.entities.SocialAuth;
import app.services.ProfileService; import app.services.ProfileService;
@ -40,7 +41,7 @@ public class ProfileController {
@BurstUpdatePlayers @BurstUpdatePlayers
@WaitAfterNext(order = "currentuser") @WaitAfterNext(order = "currentuser")
@ShowClientIP @ShowClientIP
@CollectStatistic @CollectStatistic(stage = CollectStages.COMBINED)
public ResponseEntity GetCurrentUser(HttpServletRequest request, public ResponseEntity GetCurrentUser(HttpServletRequest request,
@CookieValue(value = "steam64", defaultValue = "") String steam64, @CookieValue(value = "steam64", defaultValue = "") String steam64,
@RequestParam(value = "requests", defaultValue = "") String requests @RequestParam(value = "requests", defaultValue = "") String requests
@ -55,7 +56,7 @@ public class ProfileController {
@PostMapping("/freevip") @PostMapping("/freevip")
@CheckWebAccess @CheckWebAccess
@WaitAfterNext(order = "freevip") @WaitAfterNext(order = "freevip")
@CollectStatistic @CollectStatistic(stage = CollectStages.COMBINED)
public ResponseEntity GetFreeVIP(HttpServletRequest request, public ResponseEntity GetFreeVIP(HttpServletRequest request,
@CookieValue(value = "steam64", defaultValue = "") String steam64, @CookieValue(value = "steam64", defaultValue = "") String steam64,
@RequestBody(required = false) SocialAuth socialAuth, @RequestBody(required = false) SocialAuth socialAuth,
@ -71,7 +72,7 @@ public class ProfileController {
@CheckWebAccess @CheckWebAccess
@BurstUpdatePlayers @BurstUpdatePlayers
@WaitAfterNext(order = "report") @WaitAfterNext(order = "report")
@CollectStatistic @CollectStatistic(stage = CollectStages.COMBINED)
public ResponseEntity<Long> ReportUser(HttpServletRequest request, public ResponseEntity<Long> ReportUser(HttpServletRequest request,
@CookieValue(value = "steam64", defaultValue = "") String steam64, @CookieValue(value = "steam64", defaultValue = "") String steam64,
@RequestParam(value = "steam64", defaultValue = "") String reported_steam64, @RequestParam(value = "steam64", defaultValue = "") String reported_steam64,
@ -87,7 +88,7 @@ public class ProfileController {
} }
@GetMapping("/buyvip") @GetMapping("/buyvip")
@CollectStatistic @CollectStatistic(stage = CollectStages.COMBINED)
public ResponseEntity BuyVIP(HttpServletRequest request, public ResponseEntity BuyVIP(HttpServletRequest request,
@RequestParam(value = "steam64", defaultValue = "") String steam64, @RequestParam(value = "steam64", defaultValue = "") String steam64,
@RequestParam String buy_type, @RequestParam String buy_type,

5
src/main/java/app/services/ProfileService.java

@ -69,7 +69,7 @@ public class ProfileService {
} }
public PlayerProfile GetProfile(String steam64, List<String> requests) { public PlayerProfile GetProfile(String steam64, List<String> requests) {
final int requests_pool = 16; final int requests_pool = 4;
ExecutorService executor = Executors.newFixedThreadPool(requests_pool); ExecutorService executor = Executors.newFixedThreadPool(requests_pool);
Set<Callable<Supplier>> callables = new HashSet<>(requests_pool); Set<Callable<Supplier>> callables = new HashSet<>(requests_pool);
@ -77,7 +77,6 @@ public class ProfileService {
profile.setResponse_time(new HashMap<>()); profile.setResponse_time(new HashMap<>());
SteamID steamID = SteamIDConverter.getSteamID(steam64); SteamID steamID = SteamIDConverter.getSteamID(steam64);
profile.setSteamids(steamID); profile.setSteamids(steamID);
Long start_time_total = Instant.now().toEpochMilli();
callables.add(() -> { callables.add(() -> {
@ -192,7 +191,9 @@ public class ProfileService {
return null; return null;
}); });
//} //}
long start_time_total = 0;
try { try {
start_time_total = Instant.now().toEpochMilli();
executor.invokeAll(callables); executor.invokeAll(callables);
} catch (InterruptedException ie) {} } catch (InterruptedException ie) {}
finally { finally {

Loading…
Cancel
Save