Browse Source

steam auth 1

master
gsd 2 years ago
parent
commit
4a7e9ccd0c
  1. 4
      src/main/java/app/controllers/auth/AuthDiscordController.java
  2. 27
      src/main/java/app/controllers/auth/AuthSteamController.java

4
src/main/java/app/controllers/auth/AuthDiscordController.java

@ -49,7 +49,7 @@ public class AuthDiscordController {
cookie_discord.setPath("/");
response.addCookie(cookie_discord);
return ResponseEntity.status(HttpStatus.FOUND).
header("Location", "/authentication_discord")
header("Location", "/authentication_discord.html")
.build();
}
@ -85,7 +85,7 @@ public class AuthDiscordController {
response.addCookie(cookie_discord);
return ResponseEntity.status(HttpStatus.FOUND).
header("Location", "/authentication_discord")
header("Location", "/authentication_discord.html")
.build();
}

27
src/main/java/app/controllers/auth/AuthSteamController.java

@ -1,16 +1,17 @@
package app.controllers.auth;
import app.annotations.exceptions.InvalidCookie;
import app.annotations.exceptions.NeedCookie;
import app.services.steam.SteamSignIn;
import app.services.steam.SteamWebApi;
import app.utils.SaltedCookie;
import app.utils.SteamIDConverter;
import jakarta.servlet.http.Cookie;
import jakarta.servlet.http.HttpServletResponse;
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.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.bind.annotation.*;
import java.util.Map;
@ -19,11 +20,13 @@ import java.util.Map;
public class AuthSteamController {
private SteamSignIn steamSignIn;
private SaltedCookie saltedCookie;
private SteamWebApi steamWebApi;
@Autowired
public AuthSteamController(SteamSignIn steamSignIn, SaltedCookie saltedCookie){
public AuthSteamController(SteamSignIn steamSignIn, SaltedCookie saltedCookie, SteamWebApi steamWebApi){
this.steamSignIn = steamSignIn;
this.saltedCookie = saltedCookie;
this.steamWebApi = steamWebApi;
}
@GetMapping("login")
@ -69,4 +72,18 @@ public class AuthSteamController {
header("Location", "/")
.build();
}
@GetMapping("steam")
public ResponseEntity aboutMe(@CookieValue(value = "steam64", defaultValue = "") String steam64,
@CookieValue(value = "steam64_secured", defaultValue = "") String steam64_secured) {
if (steam64.isEmpty() || steam64_secured.isEmpty()) {
throw new NeedCookie();
}
if (!saltedCookie.Validate(steam64, steam64_secured)) {
throw new InvalidCookie();
}
return new ResponseEntity(steamWebApi.getSteamData(SteamIDConverter.getSteamID(steam64).steam64), HttpStatus.OK);
}
}

Loading…
Cancel
Save