2 changed files with 50 additions and 3 deletions
@ -0,0 +1,32 @@ |
|||||
|
package app.controllers.admin; |
||||
|
|
||||
|
import app.annotations.enums.AuthMethod; |
||||
|
import app.annotations.interfaces.CheckPermitionFlag; |
||||
|
import app.annotations.interfaces.CheckWebAccess; |
||||
|
import app.services.db.DetectService; |
||||
|
import app.utils.SteamIDConverter; |
||||
|
import jakarta.servlet.http.HttpServletRequest; |
||||
|
import org.springframework.beans.factory.annotation.Autowired; |
||||
|
import org.springframework.web.bind.annotation.*; |
||||
|
|
||||
|
import java.util.List; |
||||
|
|
||||
|
@RestController |
||||
|
@RequestMapping(value = "api/admin/db") |
||||
|
public class DBController { |
||||
|
|
||||
|
DetectService detectService; |
||||
|
|
||||
|
@Autowired |
||||
|
public DBController(DetectService detectService) { |
||||
|
this.detectService = detectService; |
||||
|
} |
||||
|
|
||||
|
@GetMapping(value = "/alt") |
||||
|
@CheckWebAccess |
||||
|
@CheckPermitionFlag(flag = "d") |
||||
|
public List<String> getAltAccountPerAccount(HttpServletRequest request, |
||||
|
@RequestParam(value = "steam64", required = false, defaultValue = "") String steam64) { |
||||
|
return detectService.getAccountsPerSteamID(SteamIDConverter.getSteamID(steam64)).stream().map(s -> s.community_url).toList(); |
||||
|
} |
||||
|
} |
Loading…
Reference in new issue