|
@ -8,10 +8,7 @@ import jakarta.servlet.http.HttpServletRequest; |
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
import org.springframework.http.HttpStatus; |
|
|
import org.springframework.http.HttpStatus; |
|
|
import org.springframework.http.ResponseEntity; |
|
|
import org.springframework.http.ResponseEntity; |
|
|
import org.springframework.web.bind.annotation.GetMapping; |
|
|
import org.springframework.web.bind.annotation.*; |
|
|
import org.springframework.web.bind.annotation.RequestMapping; |
|
|
|
|
|
import org.springframework.web.bind.annotation.RequestParam; |
|
|
|
|
|
import org.springframework.web.bind.annotation.RestController; |
|
|
|
|
|
|
|
|
|
|
|
@RestController |
|
|
@RestController |
|
|
@RequestMapping("api/discord") |
|
|
@RequestMapping("api/discord") |
|
@ -29,4 +26,26 @@ public class DiscordController { |
|
|
@RequestParam String discord_id) { |
|
|
@RequestParam String discord_id) { |
|
|
return new ResponseEntity(discordAuthService.getSteamIDofDiscordID(discord_id), HttpStatus.OK); |
|
|
return new ResponseEntity(discordAuthService.getSteamIDofDiscordID(discord_id), HttpStatus.OK); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@PostMapping |
|
|
|
|
|
@CheckWebAccess(auth_method = AuthMethod.SECRET_KEY) |
|
|
|
|
|
public ResponseEntity registerDiscordUser(HttpServletRequest request, |
|
|
|
|
|
@RequestParam String steam64, |
|
|
|
|
|
@RequestParam String discord_id){ |
|
|
|
|
|
SteamID steamID = discordAuthService.getSteamIDofDiscordID(discord_id); |
|
|
|
|
|
if (steamID != null) return new ResponseEntity(HttpStatus.NOT_ACCEPTABLE); |
|
|
|
|
|
//Релизовать регистрацию пользователя
|
|
|
|
|
|
return new ResponseEntity(HttpStatus.INTERNAL_SERVER_ERROR); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@DeleteMapping |
|
|
|
|
|
@CheckWebAccess(auth_method = AuthMethod.SECRET_KEY) |
|
|
|
|
|
public ResponseEntity unregisterDiscordUser(HttpServletRequest request, |
|
|
|
|
|
@RequestParam String steam64, |
|
|
|
|
|
@RequestParam String discord_id){ |
|
|
|
|
|
SteamID steamID = discordAuthService.getSteamIDofDiscordID(discord_id); |
|
|
|
|
|
if (steamID == null) return new ResponseEntity(HttpStatus.NOT_ACCEPTABLE); |
|
|
|
|
|
//Релизовать де-регистрацию
|
|
|
|
|
|
return new ResponseEntity(HttpStatus.INTERNAL_SERVER_ERROR); |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|