8 changed files with 79 additions and 30 deletions
@ -0,0 +1,49 @@ |
|||||
|
package app.controllers.user; |
||||
|
|
||||
|
import app.annotations.interfaces.CheckPermitionFlag; |
||||
|
import app.annotations.interfaces.NeedValidCookie; |
||||
|
import app.entities.SocialAuth; |
||||
|
import app.entities.other.SteamID; |
||||
|
import app.services.ProfileService; |
||||
|
import app.services.db.FreeVIPService; |
||||
|
import app.utils.SaltedCookie; |
||||
|
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/profile") |
||||
|
public class ProfileController { |
||||
|
private ProfileService profileService; |
||||
|
private FreeVIPService freeVIPService; |
||||
|
|
||||
|
@Autowired |
||||
|
public ProfileController(ProfileService profileService, |
||||
|
FreeVIPService freeVIPService) { |
||||
|
this.profileService = profileService; |
||||
|
this.freeVIPService = freeVIPService; |
||||
|
} |
||||
|
|
||||
|
@GetMapping("/current") |
||||
|
@NeedValidCookie |
||||
|
public ResponseEntity GetCurrentUser(HttpServletRequest request, |
||||
|
@CookieValue(value = "steam64", defaultValue = "") String steam64 |
||||
|
){ |
||||
|
return new ResponseEntity(profileService.GetProfile(steam64), HttpStatus.OK); |
||||
|
} |
||||
|
|
||||
|
@PostMapping("/current/freevip") |
||||
|
@NeedValidCookie |
||||
|
public ResponseEntity GetFreeVIP(HttpServletRequest request, |
||||
|
@CookieValue(value = "steam64", defaultValue = "") String steam64, |
||||
|
SocialAuth socialAuth) { |
||||
|
//return new ResponseEntity<>(freeVIPService.)
|
||||
|
//1.get social
|
||||
|
//2.get steam2discord
|
||||
|
//3.так уж и быть випка без анального зонда
|
||||
|
return new ResponseEntity(freeVIPService.addFreeVIP(SteamIDConverter.getSteamID(steam64), socialAuth), HttpStatus.OK); |
||||
|
} |
||||
|
} |
Loading…
Reference in new issue