add not found exception handling in middleware
This commit is contained in:
parent
7d3ad666c6
commit
1b80cf1812
@ -17,6 +17,7 @@ public class GlobalExceptionHandlerMiddleware : IMiddleware
|
|||||||
{ typeof(LoginException), HandleLoginException },
|
{ typeof(LoginException), HandleLoginException },
|
||||||
{ typeof(RenewAccessTokenException), HandleRenewAccessTokenException },
|
{ typeof(RenewAccessTokenException), HandleRenewAccessTokenException },
|
||||||
{ typeof(RevokeRefreshTokenException), HandleRevokeRefreshTokenException },
|
{ 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)
|
private async Task HandleUnhandledExceptionException(HttpContext context, Exception exception)
|
||||||
{
|
{
|
||||||
context.Response.StatusCode = StatusCodes.Status500InternalServerError;
|
context.Response.StatusCode = StatusCodes.Status500InternalServerError;
|
||||||
|
@ -34,6 +34,11 @@ public class RouteSearchQueryHandler : IRequestHandler<RouteSearchQuery, List<Ro
|
|||||||
var paths = FindAllPaths(graph, departureEnrollmentAddressVertex, arrivalEnrollmentAddressVertex,
|
var paths = FindAllPaths(graph, departureEnrollmentAddressVertex, arrivalEnrollmentAddressVertex,
|
||||||
request.MinTransferTime, request.MaxTransferTime, request.MaxTransferDistanceInMeters);
|
request.MinTransferTime, request.MaxTransferTime, request.MaxTransferDistanceInMeters);
|
||||||
|
|
||||||
|
if (paths.Count == 0)
|
||||||
|
{
|
||||||
|
throw new NotFoundException();
|
||||||
|
}
|
||||||
|
|
||||||
return paths.AsQueryable().ProjectTo<RouteWithTransfersDto>(_mapper.ConfigurationProvider).ToList();
|
return paths.AsQueryable().ProjectTo<RouteWithTransfersDto>(_mapper.ConfigurationProvider).ToList();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -76,13 +81,6 @@ public class RouteSearchQueryHandler : IRequestHandler<RouteSearchQuery, List<Ro
|
|||||||
graph.AddVertex(currentVertex);
|
graph.AddVertex(currentVertex);
|
||||||
graph.AddEdge(new SEquatableEdge<EnrollmentAddressVertex>(previousVertex, 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;
|
previousVertex = currentVertex;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -111,7 +109,10 @@ public class RouteSearchQueryHandler : IRequestHandler<RouteSearchQuery, List<Ro
|
|||||||
|
|
||||||
if (routeAddress == null)
|
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);
|
return new EnrollmentAddressVertex(null, routeAddress.Address);
|
||||||
|
Loading…
Reference in New Issue
Block a user