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(); + } +}