@ -1,15 +1,16 @@
package app.controllers ;
import app.annotations.interfaces.CheckPermitionFlag ;
import app.annotations.interfaces.NeedValidCookie ;
import app.entities.other.SteamID ;
import app.services.ProfileService ;
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.CookieValue ;
import org.springframework.web.bind.annotation.GetMapping ;
import org.springframework.web.bind.annotation.RequestMapping ;
import org.springframework.web.bind.annotation.RestController ;
import org.springframework.web.bind.annotation.* ;
@RestController
@RequestMapping ( "api/profile" )
@ -24,11 +25,27 @@ public class ProfileController {
this . profileService = profileService ;
}
@GetMapping
@NeedValidCookie
@CheckPermitionFlag ( flag = "z" )
public ResponseEntity GetUser ( HttpServletRequest request ,
@RequestParam String steam64 ) {
return new ResponseEntity ( profileService . GetProfile ( steam64 ) , HttpStatus . OK ) ;
}
@GetMapping ( "/current" )
@NeedValidCookie
public ResponseEntity GetCurrentUser (
@CookieValue ( value = "steam64" , defaultValue = "" ) String steam64
public ResponseEntity GetCurrentUser ( HttpServletRequest request ,
@CookieValue ( value = "steam64" , defaultValue = "" ) String steam64
) {
return new ResponseEntity ( profileService . GetProfile ( steam64 ) , HttpStatus . OK ) ;
}
@GetMapping ( "/steam" )
@NeedValidCookie
@CheckPermitionFlag ( flag = "z" )
public ResponseEntity < SteamID > GetSteam ( HttpServletRequest request ,
@RequestParam String any ) {
return new ResponseEntity < > ( profileService . GetSteamIDFromAnyData ( any ) , HttpStatus . OK ) ;
}
}