4 changed files with 102 additions and 6 deletions
@ -0,0 +1,58 @@ |
|||||
|
package app.controllers.admin; |
||||
|
|
||||
|
import app.annotations.interfaces.CheckPermitionFlag; |
||||
|
import app.annotations.interfaces.CheckWebAccess; |
||||
|
import app.annotations.interfaces.WaitAfterNext; |
||||
|
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.*; |
||||
|
|
||||
|
@RestController |
||||
|
@RequestMapping("api/admin/vip") |
||||
|
public class VIPController { |
||||
|
VIPService vipService; |
||||
|
|
||||
|
@Autowired |
||||
|
public VIPController(VIPService vipService) { |
||||
|
this.vipService = vipService; |
||||
|
} |
||||
|
|
||||
|
@PostMapping |
||||
|
@CheckWebAccess |
||||
|
@CheckPermitionFlag(flag = "z") |
||||
|
@WaitAfterNext |
||||
|
public ResponseEntity giveVIP( |
||||
|
HttpServletRequest request, |
||||
|
@CookieValue(value = "steam64") String admin_steam64, |
||||
|
@RequestParam(value = "steam64") String user_steam64, |
||||
|
@RequestParam int amount |
||||
|
) { |
||||
|
return new ResponseEntity(vipService.addVIP( |
||||
|
SteamIDConverter.getSteamID(user_steam64), |
||||
|
amount, |
||||
|
VipGiveMethod.MANUAL, |
||||
|
SteamIDConverter.getSteamID(admin_steam64).steam2 |
||||
|
), HttpStatus.OK); |
||||
|
} |
||||
|
|
||||
|
@DeleteMapping |
||||
|
@CheckWebAccess |
||||
|
@CheckPermitionFlag(flag = "z") |
||||
|
@WaitAfterNext |
||||
|
public ResponseEntity removeVIP( |
||||
|
HttpServletRequest request, |
||||
|
@CookieValue(value = "steam64") String admin_steam64, |
||||
|
@RequestParam(value = "steam64") String user_steam64 |
||||
|
) { |
||||
|
return new ResponseEntity(vipService.removeVIP( |
||||
|
SteamIDConverter.getSteamID(user_steam64), |
||||
|
SteamIDConverter.getSteamID(admin_steam64), |
||||
|
VipGiveMethod.MANUAL |
||||
|
), HttpStatus.OK); |
||||
|
} |
||||
|
} |
@ -1,5 +1,5 @@ |
|||||
package app.entities; |
package app.entities; |
||||
|
|
||||
public enum VipGiveMethod { |
public enum VipGiveMethod { |
||||
FREE, STEAM, QIWI, MANUAL |
FREE, STEAM, QIWI, MANUAL, AFTERTIME |
||||
} |
} |
||||
|
Loading…
Reference in new issue