Browse Source

делаю бекенд под ботов

master
gsd 2 years ago
parent
commit
076e445a06
  1. 41
      src/main/java/app/controllers/other/ExternalVIPController.java
  2. 26
      src/main/java/app/controllers/other/PulseController.java
  3. 16
      src/main/java/app/services/db/DBService.java
  4. 15
      src/test/java/app/EnumTest.java

41
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);
}
}

26
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<Long> getDBPulse() {
return new ResponseEntity(dbService.getDBServerTime(), HttpStatus.OK);
}
}

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

15
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();
}
}
Loading…
Cancel
Save