3 changed files with 114 additions and 5 deletions
@ -0,0 +1,107 @@ |
|||||
|
package app.controllers.auth; |
||||
|
|
||||
|
import app.utils.CryptedCookie; |
||||
|
import app.utils.CryptoMethods; |
||||
|
import jakarta.servlet.http.Cookie; |
||||
|
import jakarta.servlet.http.HttpServletRequest; |
||||
|
import jakarta.servlet.http.HttpServletResponse; |
||||
|
import org.slf4j.Logger; |
||||
|
import org.slf4j.LoggerFactory; |
||||
|
import org.springframework.beans.factory.annotation.Autowired; |
||||
|
import org.springframework.http.*; |
||||
|
import org.springframework.web.bind.annotation.*; |
||||
|
import org.springframework.web.client.RestTemplate; |
||||
|
|
||||
|
import java.net.URI; |
||||
|
import java.util.Arrays; |
||||
|
import java.util.HashMap; |
||||
|
import java.util.Map; |
||||
|
|
||||
|
@RestController |
||||
|
@RequestMapping("/api/auth/discord") |
||||
|
public class AuthDiscordController { |
||||
|
private CryptedCookie cryptedCookie; |
||||
|
|
||||
|
private RestTemplate restTemplate = new RestTemplate(); |
||||
|
|
||||
|
private final String processing = "https://discord.com/api/oauth2/authorize?client_id=684685147144060948&redirect_uri=https%3A%2F%2Ftf2.pblr-nyk.pro%2Fapi%2Fauth%2Fdiscord%2Fprocesslogin&response_type=token&scope=identify"; |
||||
|
|
||||
|
private final Logger logger = LoggerFactory.getLogger(this.getClass()); |
||||
|
|
||||
|
@Autowired |
||||
|
public AuthDiscordController(CryptedCookie cryptedCookie) { |
||||
|
this.cryptedCookie = cryptedCookie; |
||||
|
} |
||||
|
|
||||
|
@GetMapping("login") |
||||
|
public ResponseEntity Login() { |
||||
|
return ResponseEntity.status(HttpStatus.SEE_OTHER). |
||||
|
header("Content-Type", "application/x-www-form-urlencoded"). |
||||
|
location(URI.create(processing)) |
||||
|
.build(); |
||||
|
} |
||||
|
|
||||
|
@GetMapping("logout") |
||||
|
public ResponseEntity Logout(HttpServletResponse response) { |
||||
|
Cookie cookie_discord = new Cookie("discord", ""); |
||||
|
cookie_discord.setMaxAge(0); |
||||
|
cookie_discord.setDomain("tf2.pblr-nyk.pro"); |
||||
|
cookie_discord.setPath("/"); |
||||
|
response.addCookie(cookie_discord); |
||||
|
return ResponseEntity.status(HttpStatus.FOUND). |
||||
|
header("Location", "/discord_auth") |
||||
|
.build(); |
||||
|
} |
||||
|
|
||||
|
@GetMapping("processlogin") |
||||
|
public ResponseEntity ProcessLogin(HttpServletResponse response, @RequestParam Map<String, String> auth_result){ |
||||
|
if (auth_result.isEmpty()) { |
||||
|
String html = """ |
||||
|
<!DOCTYPE HTML> |
||||
|
<html> |
||||
|
<head><title>Discord Auth Continue...</title></head> |
||||
|
<body> |
||||
|
<script type="text/javascript"> |
||||
|
if(window.location.hash) { |
||||
|
alert(window.location.hash); |
||||
|
let url = window.location.origin + window.location.pathname + "?" + window.location.hash.substring(1); |
||||
|
window.location.replace(url); |
||||
|
} else { |
||||
|
alert("discord auth failed"); |
||||
|
} |
||||
|
</script> |
||||
|
</body> |
||||
|
</html> |
||||
|
"""; |
||||
|
return new ResponseEntity(html, HttpStatus.OK); |
||||
|
} |
||||
|
|
||||
|
String uid = (String) getDiscordData(auth_result.get("access_token")).get("id"); |
||||
|
if (uid == null) return ResponseEntity.status(401).build(); |
||||
|
logger.info(uid); |
||||
|
Cookie cookie_discord = new Cookie("discord", cryptedCookie.Hashed(auth_result.get("access_token"))); |
||||
|
cookie_discord.setPath("/"); |
||||
|
cookie_discord.setDomain("tf2.pblr-nyk.pro"); |
||||
|
cookie_discord.setMaxAge(Integer.parseInt(auth_result.get("expires_in"))); |
||||
|
response.addCookie(cookie_discord); |
||||
|
|
||||
|
return ResponseEntity.status(HttpStatus.FOUND). |
||||
|
header("Location", "/discord_auth") |
||||
|
.build(); |
||||
|
} |
||||
|
|
||||
|
@GetMapping |
||||
|
public ResponseEntity<HashMap<String, String>> aboutMe(@CookieValue(value = "discord", defaultValue = "") String discord_token) { |
||||
|
if (discord_token.isEmpty()) return ResponseEntity.status(401).build(); |
||||
|
if (!cryptedCookie.Validate(discord_token)) return ResponseEntity.status(401).build(); |
||||
|
String access_token = cryptedCookie.ReadCh(discord_token); |
||||
|
return new ResponseEntity<>(getDiscordData(access_token), HttpStatus.OK); |
||||
|
} |
||||
|
|
||||
|
public HashMap<String, String> getDiscordData(String access_token) { |
||||
|
HttpHeaders headers = new HttpHeaders(); |
||||
|
headers.add("authorization", String.format("Bearer %s", access_token)); |
||||
|
HttpEntity entity = new HttpEntity<>("<body>", headers); |
||||
|
return restTemplate.exchange("https://discord.com/api/users/@me", HttpMethod.GET, entity, HashMap.class).getBody(); |
||||
|
} |
||||
|
} |
Loading…
Reference in new issue