Skip to content
Snippets Groups Projects
Commit baeae8e4 authored by Kelly Zhou's avatar Kelly Zhou
Browse files

create app exceptions from original exceptions

parent dc95dbd1
No related branches found
No related tags found
1 merge request!38create app exceptions from original exceptions when doing user authentication
Pipeline #26988 failed
package org.opengroup.osdu.crs.middleware;
import org.apache.http.HttpStatus;
import org.opengroup.osdu.core.common.entitlements.EntitlementsAPIConfig;
import org.opengroup.osdu.core.common.entitlements.EntitlementsFactory;
import org.opengroup.osdu.core.common.entitlements.IEntitlementsFactory;
......@@ -61,13 +62,13 @@ public class AuthenticationRequestFilter extends OncePerRequestFilter {
} catch (EntitlementsException e) {
String message = String.format(String.format("User not authenticated. Response: %s", e.getHttpResponse()), e);
logger.warning(message);
AppException unauthorized = AppException.createUnauthorized("Error: " + e.getMessage());
AppException unauthorized = new AppException(e.getHttpResponse().getResponseCode(), "Error when authenticate", e.getMessage(), e);
handlerExceptionResolver.resolveException(httpServletRequest, httpServletResponse, null, unauthorized);
}
catch (NullPointerException e) { // Common library throws null pointer exception when auth permission is denied.
String message = String.format("User not authenticated. Null pointer exception: %s", e.getMessage());
logger.warning(message);
AppException unauthorized = AppException.createUnauthorized("Error: " + e.getMessage());
AppException unauthorized = new AppException(HttpStatus.SC_UNAUTHORIZED, "Error when authenticate", e.getMessage(), e);
handlerExceptionResolver.resolveException(httpServletRequest, httpServletResponse, null, unauthorized);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment