Browse Source

report hype v2

master
gsd 10 months ago
parent
commit
f33b4378f1
  1. 36
      src/main/java/app/controllers/server/ServerReportController.java
  2. 22
      src/main/java/app/controllers/server/ServerUpdaterController.java

36
src/main/java/app/controllers/server/ServerReportController.java

@ -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));
}
}

22
src/main/java/app/controllers/server/ServerUpdaterController.java

@ -3,7 +3,10 @@ package app.controllers.server;
import app.annotations.enums.AuthMethod;
import app.annotations.interfaces.CheckWebAccess;
import app.entities.Stats;
import app.entities.report.ReportType;
import app.entities.server.request.ServerRequestBody;
import app.services.ProfileService;
import app.services.db.ReportService;
import app.websocket.handlers.ServersHandler;
import jakarta.servlet.http.HttpServletRequest;
import org.springframework.beans.factory.annotation.Autowired;
@ -16,11 +19,18 @@ import org.springframework.web.bind.annotation.*;
public class ServerUpdaterController {
private Stats stats;
private ServersHandler serversHandler;
private ReportService reportService;
private ProfileService profileService;
@Autowired
public ServerUpdaterController(Stats stats, ServersHandler serversHandler) {
public ServerUpdaterController(Stats stats,
ServersHandler serversHandler,
ReportService reportService,
ProfileService profileService) {
this.stats = stats;
this.serversHandler = serversHandler;
this.reportService = reportService;
this.profileService = profileService;
}
@PostMapping(value = "/{srv}")
@ -40,4 +50,14 @@ public class ServerUpdaterController {
serversHandler.pushServer(srv, stats.getServers().get(srv));
return new ResponseEntity(HttpStatus.OK);
}
@PostMapping(value = "/{srv}/report/{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, @PathVariable String srv) {
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…
Cancel
Save