Search in sources :

Example 1 with Orcid

use of org.orcid.jaxb.model.message.Orcid in project ORCID-Source by ORCID.

the class OrcidExceptionMapper method legacyErrorResponse.

private Response legacyErrorResponse(Throwable t) {
    if (OrcidApiException.class.isAssignableFrom(t.getClass())) {
        return ((OrcidApiException) t).getResponse();
    } else if (OrcidValidationException.class.isAssignableFrom(t.getClass())) {
        OrcidMessage entity = getLegacyOrcidEntity("Bad Request: ", t);
        return Response.status(Response.Status.BAD_REQUEST).entity(entity).build();
    } else if (NotFoundException.class.isAssignableFrom(t.getClass())) {
        OrcidMessage entity = getLegacyOrcidEntity("Please specify a version number (1.2 or higher) : ", t);
        return Response.status(OrcidCoreExceptionMapper.getHttpStatusAndErrorCode(t).getKey()).entity(entity).build();
    } else if (WebApplicationException.class.isAssignableFrom(t.getClass())) {
        OrcidMessage entity = getLegacy500OrcidEntity(t);
        WebApplicationException webException = (WebApplicationException) t;
        return Response.status(webException.getResponse().getStatus()).entity(entity).build();
    } else if (AuthenticationException.class.isAssignableFrom(t.getClass())) {
        OrcidMessage entity = getLegacyOrcidEntity("Authentication problem : ", t);
        return Response.status(Response.Status.UNAUTHORIZED).entity(entity).build();
    } else if (OAuth2Exception.class.isAssignableFrom(t.getClass())) {
        OrcidMessage entity = getLegacyOrcidEntity("OAuth2 problem : ", t);
        return Response.status(Response.Status.UNAUTHORIZED).entity(entity).build();
    } else if (OrcidInvalidScopeException.class.isAssignableFrom(t.getClass())) {
        OrcidMessage entity = getLegacyOrcidEntity("OAuth2 problem : ", t);
        return Response.status(Response.Status.UNAUTHORIZED).entity(entity).build();
    } else if (SecurityException.class.isAssignableFrom(t.getClass())) {
        OrcidMessage entity = getLegacyOrcidEntity("Security problem : ", t);
        return Response.status(Response.Status.FORBIDDEN).entity(entity).build();
    } else if (IllegalStateException.class.isAssignableFrom(t.getClass())) {
        OrcidMessage entity = getLegacyOrcidEntity("Illegal state : ", t);
        return Response.status(Response.Status.FORBIDDEN).entity(entity).build();
    } else if (IllegalArgumentException.class.isAssignableFrom(t.getClass())) {
        OrcidMessage entity = getLegacyOrcidEntity("Bad Request : ", t);
        return Response.status(Response.Status.BAD_REQUEST).entity(entity).build();
    } else if (OrcidDeprecatedException.class.isAssignableFrom(t.getClass())) {
        OrcidDeprecatedException exception = (OrcidDeprecatedException) t;
        OrcidDeprecated depreciatedError = new OrcidDeprecated();
        Map<String, String> params = exception.getParams();
        String location = null;
        if (params != null) {
            if (params.containsKey(OrcidDeprecatedException.ORCID)) {
                PrimaryRecord pr = new PrimaryRecord();
                pr.setOrcid(new Orcid(params.get(OrcidDeprecatedException.ORCID)));
                depreciatedError.setPrimaryRecord(pr);
                location = getPrimaryRecordLocation(params);
            }
            if (params.containsKey(OrcidDeprecatedException.DEPRECATED_DATE)) {
                DeprecatedDate dd = new DeprecatedDate();
                String dateString = params.get(OrcidDeprecatedException.DEPRECATED_DATE);
                dd.setValue(DateUtils.convertToXMLGregorianCalendar(dateString, false));
                depreciatedError.setDate(dd);
            }
        }
        Response response = null;
        if (location != null) {
            response = Response.status(Response.Status.MOVED_PERMANENTLY).header(LOCATION_HEADER, location).entity(depreciatedError).build();
        } else {
            response = Response.status(Response.Status.MOVED_PERMANENTLY).entity(depreciatedError).build();
        }
        return response;
    } else if (LockedException.class.isAssignableFrom(t.getClass())) {
        OrcidMessage entity = getLegacyOrcidEntity("Account locked : ", t);
        return Response.status(Response.Status.CONFLICT).entity(entity).build();
    } else if (NoResultException.class.isAssignableFrom(t.getClass())) {
        OrcidMessage entity = getLegacyOrcidEntity("Not found : ", t);
        return Response.status(Response.Status.NOT_FOUND).entity(entity).build();
    } else if (ExceedMaxNumberOfElementsException.class.isAssignableFrom(t.getClass())) {
        OrcidMessage entity = getLegacyOrcidEntity("This version of the API does not support adding more than 10,000 works to a record. Please consider using the 2.0 API.", null);
        return Response.status(Response.Status.CONFLICT).entity(entity).build();
    } else {
        OrcidMessage entity = getLegacy500OrcidEntity(t);
        return Response.status(OrcidCoreExceptionMapper.getHttpStatusAndErrorCode(t).getKey()).entity(entity).build();
    }
}
Also used : PrimaryRecord(org.orcid.jaxb.model.message.PrimaryRecord) LockedException(org.orcid.core.security.aop.LockedException) WebApplicationException(javax.ws.rs.WebApplicationException) ExceedMaxNumberOfElementsException(org.orcid.core.exception.ExceedMaxNumberOfElementsException) OrcidValidationException(org.orcid.core.exception.OrcidValidationException) Response(javax.ws.rs.core.Response) OrcidDeprecated(org.orcid.jaxb.model.message.OrcidDeprecated) Orcid(org.orcid.jaxb.model.message.Orcid) OrcidMessage(org.orcid.jaxb.model.message.OrcidMessage) OrcidDeprecatedException(org.orcid.core.exception.OrcidDeprecatedException) DeprecatedDate(org.orcid.jaxb.model.message.DeprecatedDate) OrcidApiException(org.orcid.core.exception.OrcidApiException) OAuth2Exception(org.springframework.security.oauth2.common.exceptions.OAuth2Exception)

Example 2 with Orcid

use of org.orcid.jaxb.model.message.Orcid in project ORCID-Source by ORCID.

the class VisibilityFilterImpl method getMessageIdForLog.

private String getMessageIdForLog(OrcidMessage messageToBeFiltered) {
    String messageIdForLog = "unknown";
    OrcidSearchResults orcidSearchResults = messageToBeFiltered.getOrcidSearchResults();
    OrcidProfile orcidProfile = messageToBeFiltered.getOrcidProfile();
    if (orcidSearchResults != null) {
        messageIdForLog = "orcid-search-results";
    } else if (orcidProfile != null) {
        OrcidIdentifier orcidIdentifier = orcidProfile.getOrcidIdentifier();
        if (orcidIdentifier != null) {
            messageIdForLog = orcidIdentifier.getPath();
        }
        Orcid orcid = orcidProfile.getOrcid();
        if (orcid != null) {
            messageIdForLog = orcid.getValue();
        }
    }
    return messageIdForLog;
}
Also used : OrcidProfile(org.orcid.jaxb.model.message.OrcidProfile) OrcidSearchResults(org.orcid.jaxb.model.message.OrcidSearchResults) Orcid(org.orcid.jaxb.model.message.Orcid) OrcidIdentifier(org.orcid.jaxb.model.message.OrcidIdentifier)

Aggregations

Orcid (org.orcid.jaxb.model.message.Orcid)2 WebApplicationException (javax.ws.rs.WebApplicationException)1 Response (javax.ws.rs.core.Response)1 ExceedMaxNumberOfElementsException (org.orcid.core.exception.ExceedMaxNumberOfElementsException)1 OrcidApiException (org.orcid.core.exception.OrcidApiException)1 OrcidDeprecatedException (org.orcid.core.exception.OrcidDeprecatedException)1 OrcidValidationException (org.orcid.core.exception.OrcidValidationException)1 LockedException (org.orcid.core.security.aop.LockedException)1 DeprecatedDate (org.orcid.jaxb.model.message.DeprecatedDate)1 OrcidDeprecated (org.orcid.jaxb.model.message.OrcidDeprecated)1 OrcidIdentifier (org.orcid.jaxb.model.message.OrcidIdentifier)1 OrcidMessage (org.orcid.jaxb.model.message.OrcidMessage)1 OrcidProfile (org.orcid.jaxb.model.message.OrcidProfile)1 OrcidSearchResults (org.orcid.jaxb.model.message.OrcidSearchResults)1 PrimaryRecord (org.orcid.jaxb.model.message.PrimaryRecord)1 OAuth2Exception (org.springframework.security.oauth2.common.exceptions.OAuth2Exception)1