|
|
@ -37,8 +37,8 @@ public class AuthSteamController { |
|
|
|
} |
|
|
|
|
|
|
|
@GetMapping("login") |
|
|
|
public ResponseEntity<Void> Login(){ |
|
|
|
return steamSignIn.ConstructURLAndRedirect(); |
|
|
|
public ResponseEntity<Void> Login(@RequestParam(value = "authentication_discord", required = false, defaultValue = "false") boolean authentication_discord){ |
|
|
|
return steamSignIn.ConstructURLAndRedirect(authentication_discord); |
|
|
|
} |
|
|
|
|
|
|
|
@GetMapping("logout") |
|
|
@ -58,8 +58,8 @@ public class AuthSteamController { |
|
|
|
.build(); |
|
|
|
} |
|
|
|
|
|
|
|
@GetMapping("processlogin") |
|
|
|
public ResponseEntity<?> ProcessLogin(@RequestParam Map<String, String> auth_result, HttpServletResponse response){ |
|
|
|
@GetMapping("processlogin/{after}") |
|
|
|
public ResponseEntity<?> ProcessLogin(@RequestParam Map<String, String> auth_result, HttpServletResponse response, @PathVariable String after){ |
|
|
|
System.out.println(auth_result); |
|
|
|
Long steam64 = steamSignIn.ValidateResults(auth_result); |
|
|
|
if(steam64 == null){ |
|
|
@ -75,8 +75,9 @@ public class AuthSteamController { |
|
|
|
cookie_steam64_secured.setDomain("tf2.pblr-nyk.pro"); |
|
|
|
response.addCookie(cookie_steam64_secured); |
|
|
|
|
|
|
|
String move = after == "disco"?"/authentication_discord.html":"/"; |
|
|
|
return ResponseEntity.status(HttpStatus.FOUND). |
|
|
|
header("Location", "/") |
|
|
|
header("Location", move) |
|
|
|
.build(); |
|
|
|
} |
|
|
|
|
|
|
|