4 changed files with 98 additions and 0 deletions
@ -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); |
|||
} |
|||
} |
@ -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); |
|||
} |
|||
} |
@ -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(); |
|||
} |
|||
} |
@ -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…
Reference in new issue