From 3bad6dd7a256154b13e28f2b26a7283f3b899372 Mon Sep 17 00:00:00 2001 From: gsd Date: Tue, 18 Apr 2023 18:40:32 +0300 Subject: [PATCH] =?UTF-8?q?=D1=83=D0=BD=D0=B8=D0=BA=D0=B0=D0=BB=D1=8C?= =?UTF-8?q?=D0=BD=D0=BE=D0=B5=20=D0=BF=D0=BE=D0=BB=D0=B5=20=D1=87=D1=82?= =?UTF-8?q?=D0=BE=D0=B1=20=D0=BF=D1=80=D0=B5=D1=81=D0=B5=D1=87=D1=8C=20?= =?UTF-8?q?=D0=B4=D0=B2=D0=BE=D0=B9=D0=BD=D0=BE=D0=B5=20=D0=B4=D0=BE=D0=B1?= =?UTF-8?q?=D0=B0=D0=B2=D0=BB=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=B2=D0=B8=D0=BF?= =?UTF-8?q?=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../controllers/other/ExternalVIPController.java | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/src/main/java/app/controllers/other/ExternalVIPController.java b/src/main/java/app/controllers/other/ExternalVIPController.java index 0fa6bc2..0549342 100644 --- a/src/main/java/app/controllers/other/ExternalVIPController.java +++ b/src/main/java/app/controllers/other/ExternalVIPController.java @@ -14,14 +14,19 @@ import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; +import java.util.HashSet; + @RestController @RequestMapping("api/external/vip") public class ExternalVIPController { VIPService vipService; + HashSet unique_set; + @Autowired public ExternalVIPController(VIPService vipService) { this.vipService = vipService; + this.unique_set = new HashSet(); } @PostMapping @@ -30,7 +35,14 @@ public class ExternalVIPController { @RequestParam String steam, @RequestParam int amount, @RequestParam String service, - @RequestParam(required = false, defaultValue = "") String extra) { + @RequestParam(required = false, defaultValue = "") String extra, + @RequestParam(required = false, defaultValue = "") String unique) { + + if (!unique.isEmpty()) { + if (unique_set.contains(unique)) return new ResponseEntity(HttpStatus.NOT_ACCEPTABLE); + else unique_set.add(unique); + } + int result = vipService.addVIP( SteamIDConverter.getSteamID(steam), amount,