|
|
@ -18,6 +18,9 @@ import org.springframework.web.bind.annotation.*; |
|
|
|
|
|
|
|
import java.util.Map; |
|
|
|
|
|
|
|
/** |
|
|
|
* контролллер для обновления информации с серверов, работаюзий в связке с ext/sourcepawn-client/Facti13BackendIntegration.sp |
|
|
|
*/ |
|
|
|
@RestController |
|
|
|
@RequestMapping("api/server") |
|
|
|
public class ServerUpdaterController { |
|
|
@ -55,6 +58,13 @@ public class ServerUpdaterController { |
|
|
|
return new ResponseEntity(HttpStatus.OK); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* метод для работы репортов, работает в связке с ext/sourcepawn-client/Facti13Reports.sp |
|
|
|
* @param request |
|
|
|
* @param body |
|
|
|
* @param srv |
|
|
|
* @return |
|
|
|
*/ |
|
|
|
@PostMapping(value = "/{srv}/report") |
|
|
|
@CheckWebAccess(auth_method = AuthMethod.SECRET_KEY) |
|
|
|
public ResponseEntity sendReport(HttpServletRequest request, |
|
|
|