use of org.entando.entando.web.common.annotation.RestAccessControl in project entando-core by entando.
the class DatabaseController method getStatus.
@RestAccessControl(permission = Permission.SUPERUSER)
@RequestMapping(value = "/status", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE)
public ResponseEntity<RestResponse> getStatus() {
Integer status = this.getDatabaseService().getStatus();
Map<String, String> response = new HashMap<>();
response.put("status", String.valueOf(status));
logger.debug("Required database status -> {}", status);
return new ResponseEntity<>(new RestResponse(response), HttpStatus.OK);
}
use of org.entando.entando.web.common.annotation.RestAccessControl in project entando-core by entando.
the class DatabaseController method getDumpReports.
@RestAccessControl(permission = Permission.SUPERUSER)
@RequestMapping(method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE)
public ResponseEntity<RestResponse> getDumpReports(@Valid RestListRequest requestList) {
this.getDatabaseValidator().validateRestListRequest(requestList);
PagedMetadata<ShortDumpReportDto> result = this.getDatabaseService().getShortDumpReportDtos(requestList);
this.getDatabaseValidator().validateRestListResult(requestList, result);
return new ResponseEntity<>(new RestResponse(result.getBody(), new ArrayList<>(), result), HttpStatus.OK);
}
use of org.entando.entando.web.common.annotation.RestAccessControl in project entando-core by entando.
the class DatabaseController method startBackup.
@RestAccessControl(permission = Permission.SUPERUSER)
@RequestMapping(value = "/startBackup", method = RequestMethod.POST, produces = MediaType.APPLICATION_JSON_VALUE)
public ResponseEntity<RestResponse> startBackup() throws Throwable {
logger.debug("Starting database backup");
this.getDatabaseService().startDatabaseBackup();
Map<String, String> response = new HashMap<>();
response.put("status", String.valueOf(this.getDatabaseService().getStatus()));
logger.debug("Database backup started");
return new ResponseEntity<>(new RestResponse(response), HttpStatus.OK);
}
use of org.entando.entando.web.common.annotation.RestAccessControl in project entando-core by entando.
the class DataTypeController method deleteDataType.
@RestAccessControl(permission = Permission.SUPERUSER)
@RequestMapping(value = "/{dataTypeCode}", method = RequestMethod.DELETE, produces = MediaType.APPLICATION_JSON_VALUE)
public ResponseEntity<RestResponse> deleteDataType(@PathVariable String dataTypeCode) throws ApsSystemException {
logger.debug("Deleting data type -> {}", dataTypeCode);
this.getDataObjectService().deleteDataType(dataTypeCode);
Map<String, String> payload = new HashMap<>();
payload.put("code", dataTypeCode);
return new ResponseEntity<>(new RestResponse(payload), HttpStatus.OK);
}
use of org.entando.entando.web.common.annotation.RestAccessControl in project entando-core by entando.
the class DataTypeController method updateDataType.
@RestAccessControl(permission = Permission.SUPERUSER)
@RequestMapping(value = "/{dataTypeCode}", method = RequestMethod.PUT, produces = MediaType.APPLICATION_JSON_VALUE)
public ResponseEntity<RestResponse> updateDataType(@PathVariable String dataTypeCode, @Valid @RequestBody DataTypeDtoRequest request, BindingResult bindingResult) throws JsonProcessingException {
int result = this.getDataTypeValidator().validateBodyName(dataTypeCode, request, bindingResult);
if (bindingResult.hasErrors()) {
if (result == 404) {
throw new RestRourceNotFoundException(DataTypeValidator.ERRCODE_ENTITY_TYPE_DOES_NOT_EXIST, "data type", dataTypeCode);
} else {
throw new ValidationGenericException(bindingResult);
}
}
DataTypeDto dto = this.getDataObjectService().updateDataType(request, bindingResult);
if (bindingResult.hasErrors()) {
throw new ValidationGenericException(bindingResult);
}
logger.debug("Main Response -> {}", dto);
return new ResponseEntity<>(new RestResponse(dto), HttpStatus.OK);
}
Aggregations