GlobalExceptionHandler.java
package org.petify.shelter.exception;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpStatus;
import org.springframework.http.HttpStatusCode;
import org.springframework.http.ProblemDetail;
import org.springframework.http.ResponseEntity;
import org.springframework.security.access.AccessDeniedException;
import org.springframework.web.bind.MethodArgumentNotValidException;
import org.springframework.web.bind.annotation.ExceptionHandler;
import org.springframework.web.bind.annotation.RestControllerAdvice;
import org.springframework.web.context.request.WebRequest;
import org.springframework.web.servlet.mvc.method.annotation.ResponseEntityExceptionHandler;
import java.time.Instant;
import java.util.HashMap;
import java.util.Map;
@RestControllerAdvice
public class GlobalExceptionHandler extends ResponseEntityExceptionHandler {
@ExceptionHandler(AccessDeniedException.class)
ProblemDetail handleAccessDeniedException(WebRequest request) {
ProblemDetail problemDetail = ProblemDetail.forStatus(HttpStatus.FORBIDDEN);
problemDetail.setTitle("Access Denied");
problemDetail.setDetail(request.getDescription(false));
problemDetail.setProperty("timestamp", Instant.now());
return problemDetail;
}
@Override
protected ResponseEntity<Object> handleMethodArgumentNotValid(
MethodArgumentNotValidException ex,
HttpHeaders headers,
HttpStatusCode status,
WebRequest request) {
ProblemDetail problemDetail = ProblemDetail.forStatus(status);
problemDetail.setTitle("Validation Failed");
Map<String, String> errors = new HashMap<>();
ex.getBindingResult().getFieldErrors().forEach(error ->
errors.put(error.getField(), error.getDefaultMessage())
);
problemDetail.setProperty("errors", errors);
return new ResponseEntity<>(problemDetail, headers, status);
}
@ExceptionHandler(ShelterAlreadyExistsException.class)
ProblemDetail handleShelterAlreadyExists(ShelterAlreadyExistsException ex) {
ProblemDetail problemDetail = ProblemDetail.forStatus(HttpStatus.CONFLICT);
problemDetail.setTitle("Shelter Already Exists");
problemDetail.setDetail(ex.getMessage());
problemDetail.setProperty("timestamp", Instant.now());
return problemDetail;
}
@ExceptionHandler(ShelterNotFoundException.class)
ProblemDetail handleShelterNotFound(ShelterNotFoundException ex) {
ProblemDetail problemDetail = ProblemDetail.forStatus(HttpStatus.NOT_FOUND);
problemDetail.setTitle("Shelter Not Found");
problemDetail.setDetail(ex.getMessage());
problemDetail.setProperty("timestamp", Instant.now());
return problemDetail;
}
@ExceptionHandler(ShelterByOwnerNotFoundException.class)
ProblemDetail handleShelterByOwnerNotFound(ShelterByOwnerNotFoundException ex) {
ProblemDetail problemDetail = ProblemDetail.forStatus(HttpStatus.NOT_FOUND);
problemDetail.setTitle("Shelter Not Found");
problemDetail.setDetail(ex.getMessage());
problemDetail.setProperty("timestamp", Instant.now());
return problemDetail;
}
@ExceptionHandler(ShelterIsNotActiveException.class)
ProblemDetail handleShelterIsNotActive(ShelterIsNotActiveException ex) {
ProblemDetail problemDetail = ProblemDetail.forStatus(HttpStatus.NOT_ACCEPTABLE);
problemDetail.setTitle("Shelter is not active yet.");
problemDetail.setDetail(ex.getMessage());
problemDetail.setProperty("timestamp", Instant.now());
return problemDetail;
}
@ExceptionHandler(PetIsArchivedException.class)
ProblemDetail handlePetIsArchived(PetIsArchivedException ex) {
ProblemDetail problemDetail = ProblemDetail.forStatus(HttpStatus.CONFLICT);
problemDetail.setTitle("Pet is archived and not available for action.");
problemDetail.setDetail(ex.getMessage());
problemDetail.setProperty("timestamp", Instant.now());
return problemDetail;
}
@ExceptionHandler(PetMaxImagesReachedException.class)
ProblemDetail handlePetMaxImagesReached(PetMaxImagesReachedException ex) {
ProblemDetail problemDetail = ProblemDetail.forStatus(HttpStatus.BAD_REQUEST);
problemDetail.setTitle("Pet max images reached");
problemDetail.setDetail(ex.getMessage());
problemDetail.setProperty("timestamp", Instant.now());
return problemDetail;
}
@ExceptionHandler(PetNotFoundException.class)
ProblemDetail handlePetNotFound(PetNotFoundException ex) {
ProblemDetail problemDetail = ProblemDetail.forStatus(HttpStatus.NOT_FOUND);
problemDetail.setTitle("Pet not found");
problemDetail.setDetail(ex.getMessage());
problemDetail.setProperty("timestamp", Instant.now());
return problemDetail;
}
@ExceptionHandler(AdoptionAlreadyExistsException.class)
ProblemDetail handleAdoptionAlreadyExists(AdoptionAlreadyExistsException ex) {
ProblemDetail problemDetail = ProblemDetail.forStatus(HttpStatus.CONFLICT);
problemDetail.setTitle("Adoption Already Exists");
problemDetail.setDetail(ex.getMessage());
problemDetail.setProperty("timestamp", Instant.now());
return problemDetail;
}
@ExceptionHandler(AdoptionFormNotFoundException.class)
ProblemDetail handleAdoptionFormNotFound(AdoptionFormNotFoundException ex) {
ProblemDetail problemDetail = ProblemDetail.forStatus(HttpStatus.BAD_REQUEST);
problemDetail.setTitle("Adoption Form Not Found");
problemDetail.setDetail(ex.getMessage());
problemDetail.setProperty("timestamp", Instant.now());
return problemDetail;
}
@ExceptionHandler(PetImageNotFoundException.class)
ProblemDetail handlePetImageNotFound(PetImageNotFoundException ex) {
ProblemDetail problemDetail = ProblemDetail.forStatus(HttpStatus.NOT_FOUND);
problemDetail.setTitle("Pet Image Not Found");
problemDetail.setDetail(ex.getMessage());
problemDetail.setProperty("timestamp", Instant.now());
return problemDetail;
}
}