2 changed files with 21 additions and 37 deletions
@ -1,36 +0,0 @@ |
|||||
package app.controllers.server; |
|
||||
|
|
||||
import app.annotations.enums.AuthMethod; |
|
||||
import app.annotations.interfaces.CheckWebAccess; |
|
||||
import app.entities.report.ReportType; |
|
||||
import app.services.ProfileService; |
|
||||
import app.services.db.ReportService; |
|
||||
import jakarta.servlet.http.HttpServletRequest; |
|
||||
import org.springframework.beans.factory.annotation.Autowired; |
|
||||
import org.springframework.http.HttpStatus; |
|
||||
import org.springframework.http.ResponseEntity; |
|
||||
import org.springframework.web.bind.annotation.*; |
|
||||
|
|
||||
@RestController |
|
||||
@RequestMapping("api/external/report") |
|
||||
public class ServerReportController { |
|
||||
private ReportService reportService; |
|
||||
private ProfileService profileService; |
|
||||
|
|
||||
@Autowired |
|
||||
public ServerReportController(ReportService reportService, |
|
||||
ProfileService profileService) { |
|
||||
this.reportService = reportService; |
|
||||
this.profileService = profileService; |
|
||||
} |
|
||||
|
|
||||
@PostMapping(value = "/{author_steam64}/{reported_steam64}") |
|
||||
@CheckWebAccess(auth_method = AuthMethod.SECRET_KEY) |
|
||||
public ResponseEntity sendReport(HttpServletRequest request, |
|
||||
@PathVariable(required = true) String author_steam64, |
|
||||
@PathVariable(required = false) String reported_steam64, |
|
||||
@RequestBody String text) { |
|
||||
return ResponseEntity.status(HttpStatus.OK).body( |
|
||||
reportService.createReport(ReportType.IN_GAME, profileService.GetProfile(author_steam64, "permition,steam_data"), profileService.GetProfile(reported_steam64, "permition"), text)); |
|
||||
} |
|
||||
} |
|
Loading…
Reference in new issue