From 076e445a06f34f5494a09a06706305199ac7d4e5 Mon Sep 17 00:00:00 2001 From: gsd Date: Wed, 15 Mar 2023 19:44:06 +0300 Subject: [PATCH] =?UTF-8?q?=D0=B4=D0=B5=D0=BB=D0=B0=D1=8E=20=D0=B1=D0=B5?= =?UTF-8?q?=D0=BA=D0=B5=D0=BD=D0=B4=20=D0=BF=D0=BE=D0=B4=20=D0=B1=D0=BE?= =?UTF-8?q?=D1=82=D0=BE=D0=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../other/ExternalVIPController.java | 41 +++++++++++++++++++ .../controllers/other/PulseController.java | 26 ++++++++++++ src/main/java/app/services/db/DBService.java | 16 ++++++++ src/test/java/app/EnumTest.java | 15 +++++++ 4 files changed, 98 insertions(+) create mode 100644 src/main/java/app/controllers/other/ExternalVIPController.java create mode 100644 src/main/java/app/controllers/other/PulseController.java create mode 100644 src/main/java/app/services/db/DBService.java create mode 100644 src/test/java/app/EnumTest.java diff --git a/src/main/java/app/controllers/other/ExternalVIPController.java b/src/main/java/app/controllers/other/ExternalVIPController.java new file mode 100644 index 0000000..1e85fc2 --- /dev/null +++ b/src/main/java/app/controllers/other/ExternalVIPController.java @@ -0,0 +1,41 @@ +package app.controllers.other; + +import app.annotations.enums.AuthMethod; +import app.annotations.interfaces.CheckWebAccess; +import app.entities.VipGiveMethod; +import app.services.db.VIPService; +import app.utils.SteamIDConverter; +import jakarta.servlet.http.HttpServletRequest; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpStatus; +import org.springframework.http.ResponseEntity; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestParam; +import org.springframework.web.bind.annotation.RestController; + +@RestController +@RequestMapping("api/external/vip") +public class ExternalVIPController { + VIPService vipService; + + @Autowired + public ExternalVIPController(VIPService vipService) { + this.vipService = vipService; + } + + @PostMapping + @CheckWebAccess(auth_method = AuthMethod.SECRET_KEY) + public ResponseEntity addVIP(HttpServletRequest request, + @RequestParam String steam, + @RequestParam int amount, + @RequestParam String service, + @RequestParam(required = false, defaultValue = "") String extra) { + vipService.addVIP( + SteamIDConverter.getSteamID(steam), + amount, + VipGiveMethod.valueOf(service.toUpperCase()), + extra); + return new ResponseEntity("append",HttpStatus.OK); + } +} diff --git a/src/main/java/app/controllers/other/PulseController.java b/src/main/java/app/controllers/other/PulseController.java new file mode 100644 index 0000000..1f59f26 --- /dev/null +++ b/src/main/java/app/controllers/other/PulseController.java @@ -0,0 +1,26 @@ +package app.controllers.other; + +import app.services.db.DBService; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpStatus; +import org.springframework.http.ResponseEntity; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; + +@RestController +@RequestMapping("/api/pulse") +public class PulseController { + + DBService dbService; + + @Autowired + public PulseController(DBService dbService) { + this.dbService = dbService; + } + + @GetMapping("/db") + public ResponseEntity getDBPulse() { + return new ResponseEntity(dbService.getDBServerTime(), HttpStatus.OK); + } +} diff --git a/src/main/java/app/services/db/DBService.java b/src/main/java/app/services/db/DBService.java new file mode 100644 index 0000000..b9130e9 --- /dev/null +++ b/src/main/java/app/services/db/DBService.java @@ -0,0 +1,16 @@ +package app.services.db; + +import jakarta.persistence.EntityManager; +import jakarta.persistence.PersistenceContext; +import org.springframework.stereotype.Service; + +@Service +public class DBService { + @PersistenceContext + EntityManager entityManager; + + public Long getDBServerTime() { + return (Long) entityManager.createNativeQuery("SELECT UNIX_TIMESTAMP()") + .getSingleResult(); + } +} diff --git a/src/test/java/app/EnumTest.java b/src/test/java/app/EnumTest.java new file mode 100644 index 0000000..7cdf879 --- /dev/null +++ b/src/test/java/app/EnumTest.java @@ -0,0 +1,15 @@ +package app; + +import app.entities.VipGiveMethod; +import org.junit.Test; + +public class EnumTest { + + @Test + public void check() { + assert VipGiveMethod.valueOf("free".toUpperCase()).ordinal() == VipGiveMethod.FREE.ordinal(); + assert VipGiveMethod.valueOf("qiwi".toUpperCase()).ordinal() == VipGiveMethod.QIWI.ordinal(); + assert VipGiveMethod.valueOf("steam".toUpperCase()).ordinal() == VipGiveMethod.STEAM.ordinal(); + assert VipGiveMethod.valueOf("manual".toUpperCase()).ordinal() == VipGiveMethod.MANUAL.ordinal(); + } +}