add not found exception handling in middleware

This commit is contained in:
cuqmbr 2023-12-04 16:22:33 +02:00
parent 7d3ad666c6
commit 1b80cf1812
Signed by: cuqmbr
GPG Key ID: 2D72ED98B6CB200F
2 changed files with 24 additions and 8 deletions

View File

@ -17,6 +17,7 @@ public class GlobalExceptionHandlerMiddleware : IMiddleware
{ typeof(LoginException), HandleLoginException },
{ typeof(RenewAccessTokenException), HandleRenewAccessTokenException },
{ typeof(RevokeRefreshTokenException), HandleRevokeRefreshTokenException },
{ typeof(NotFoundException), HandleNotFoundException },
};
}
@ -111,6 +112,20 @@ public class GlobalExceptionHandlerMiddleware : IMiddleware
});
}
private async Task HandleNotFoundException(HttpContext context, Exception exception)
{
context.Response.StatusCode = StatusCodes.Status404NotFound;
context.Response.ContentType = "application/problem+json";
await context.Response.WriteAsJsonAsync(new ProblemDetails()
{
Status = StatusCodes.Status404NotFound,
Type = "https://datatracker.ietf.org/doc/html/rfc7231#section-6.5.4",
// Title = "Refresh token revocation failed.",
// Detail = "Check validity of your refresh token."
});
}
private async Task HandleUnhandledExceptionException(HttpContext context, Exception exception)
{
context.Response.StatusCode = StatusCodes.Status500InternalServerError;

View File

@ -34,6 +34,11 @@ public class RouteSearchQueryHandler : IRequestHandler<RouteSearchQuery, List<Ro
var paths = FindAllPaths(graph, departureEnrollmentAddressVertex, arrivalEnrollmentAddressVertex,
request.MinTransferTime, request.MaxTransferTime, request.MaxTransferDistanceInMeters);
if (paths.Count == 0)
{
throw new NotFoundException();
}
return paths.AsQueryable().ProjectTo<RouteWithTransfersDto>(_mapper.ConfigurationProvider).ToList();
}
@ -76,13 +81,6 @@ public class RouteSearchQueryHandler : IRequestHandler<RouteSearchQuery, List<Ro
graph.AddVertex(currentVertex);
graph.AddEdge(new SEquatableEdge<EnrollmentAddressVertex>(previousVertex, currentVertex));
var vertexFromDifferentRoute = graph.Vertices.FirstOrDefault(v => v.Address.Id == currentVertex.Address.Id);
if (vertexFromDifferentRoute != null)
{
graph.AddEdge(new SEquatableEdge<EnrollmentAddressVertex>(currentVertex, vertexFromDifferentRoute));
}
previousVertex = currentVertex;
}
}
@ -111,7 +109,10 @@ public class RouteSearchQueryHandler : IRequestHandler<RouteSearchQuery, List<Ro
if (routeAddress == null)
{
throw new ValidationException(new ValidationFailure[] { new ValidationFailure("AddressId", "Departure or Arrival Address with given Id is not found") });
throw new ValidationException(new ValidationFailure[]
{
new ValidationFailure("AddressId", "Departure or Arrival Address with given Id is not found")
});
}
return new EnrollmentAddressVertex(null, routeAddress.Address);