Package ca.uhn.fhir.rest.method

Source Code of ca.uhn.fhir.rest.method.HistoryMethodBinding

package ca.uhn.fhir.rest.method;

import static org.apache.commons.lang3.StringUtils.*;

import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.List;
import java.util.Map;

import org.apache.commons.lang3.ObjectUtils;
import org.apache.commons.lang3.StringUtils;

import ca.uhn.fhir.context.FhirContext;
import ca.uhn.fhir.model.api.IResource;
import ca.uhn.fhir.model.dstu.valueset.RestfulOperationSystemEnum;
import ca.uhn.fhir.model.dstu.valueset.RestfulOperationTypeEnum;
import ca.uhn.fhir.model.primitive.IdDt;
import ca.uhn.fhir.model.primitive.InstantDt;
import ca.uhn.fhir.model.primitive.IntegerDt;
import ca.uhn.fhir.parser.DataFormatException;
import ca.uhn.fhir.rest.annotation.History;
import ca.uhn.fhir.rest.client.BaseClientInvocation;
import ca.uhn.fhir.rest.client.GetClientInvocation;
import ca.uhn.fhir.rest.server.Constants;
import ca.uhn.fhir.rest.server.IResourceProvider;
import ca.uhn.fhir.rest.server.exceptions.InternalErrorException;
import ca.uhn.fhir.rest.server.exceptions.InvalidRequestException;

public class HistoryMethodBinding extends BaseResourceReturningMethodBinding {

  private final Integer myIdParamIndex;
  private final RestfulOperationTypeEnum myResourceOperationType;
  private final RestfulOperationSystemEnum mySystemOperationType;
  private String myResourceName;
  private Integer mySinceParamIndex;
  private Integer myCountParamIndex;

  public HistoryMethodBinding(Method theMethod, FhirContext theConetxt, Object theProvider) {
    super(toReturnType(theMethod, theProvider), theMethod, theConetxt, theProvider);

    myIdParamIndex = Util.findIdParameterIndex(theMethod);
    mySinceParamIndex = Util.findSinceParameterIndex(theMethod);
    myCountParamIndex = Util.findCountParameterIndex(theMethod);

    History historyAnnotation = theMethod.getAnnotation(History.class);
    Class<? extends IResource> type = historyAnnotation.type();
    if (type == IResource.class) {
      if (theProvider instanceof IResourceProvider) {
        type = ((IResourceProvider) theProvider).getResourceType();
        if (myIdParamIndex != null) {
          myResourceOperationType = RestfulOperationTypeEnum.HISTORY_INSTANCE;
        } else {
          myResourceOperationType = RestfulOperationTypeEnum.HISTORY_TYPE;
        }
        mySystemOperationType = null;
      } else {
        myResourceOperationType = null;
        mySystemOperationType = RestfulOperationSystemEnum.HISTORY_SYSTEM;
      }
    } else {
      if (myIdParamIndex != null) {
        myResourceOperationType = RestfulOperationTypeEnum.HISTORY_INSTANCE;
      } else {
        myResourceOperationType = RestfulOperationTypeEnum.HISTORY_TYPE;
      }
      mySystemOperationType = null;
    }

    if (type != IResource.class) {
      myResourceName = theConetxt.getResourceDefinition(type).getName();
    } else {
      myResourceName = null;
    }

  }

  private static Class<? extends IResource> toReturnType(Method theMethod, Object theProvider) {
    if (theProvider instanceof IResourceProvider) {
      return ((IResourceProvider) theProvider).getResourceType();
    }
    History historyAnnotation = theMethod.getAnnotation(History.class);
    Class<? extends IResource> type = historyAnnotation.type();
    if (type != IResource.class) {
      return type;
    }
    return null;
  }

  @Override
  public RestfulOperationTypeEnum getResourceOperationType() {
    return myResourceOperationType;
  }

  @Override
  public RestfulOperationSystemEnum getSystemOperationType() {
    return mySystemOperationType;
  }

  @Override
  public BaseClientInvocation invokeClient(Object[] theArgs) throws InternalErrorException {
    StringBuilder b = new StringBuilder();
    if (myResourceName!=null) {
      b.append(myResourceName);
      if (myIdParamIndex!=null) {
        IdDt id = (IdDt)theArgs[myIdParamIndex];
        if (id==null||isBlank(id.getValue())) {
          throw new NullPointerException("ID can not be null");
        }
        b.append('/');
        b.append(id.getValue());
      }
    }
    if (b.length()>0) {
      b.append('/');
    }
    b.append(Constants.PARAM_HISTORY);
   
    return new GetClientInvocation(b.toString());
  }


  @SuppressWarnings("deprecation") // ObjectUtils.equals is replaced by a JDK7 method..
  @Override
  public boolean matches(Request theRequest) {
    if (!Constants.PARAM_HISTORY.equals(theRequest.getOperation())) {
      return false;
    }
    if (theRequest.getResourceName() == null) {
      return mySystemOperationType == RestfulOperationSystemEnum.HISTORY_SYSTEM;
    }
    if (!ObjectUtils.equals(theRequest.getResourceName(),myResourceName)) {
      return false;
    }
   
    boolean haveIdParam= theRequest.getId() != null && !theRequest.getId().isEmpty();
    boolean wantIdParam = myIdParamIndex != null;
    if (haveIdParam!=wantIdParam) {
      return false;
    }

    if (theRequest.getVersion() != null && !theRequest.getVersion().isEmpty()) {
      return false;
    }
   
    return true;
  }

  @Override
  public ReturnTypeEnum getReturnType() {
    return ReturnTypeEnum.BUNDLE;
  }

  @Override
  public List<IResource> invokeServer(Object theResourceProvider, IdDt theId, IdDt theVersionId, Map<String, String[]> theParameterValues) throws InvalidRequestException, InternalErrorException {
    Object[] args = new Object[getMethod().getParameterTypes().length];
    if (myCountParamIndex != null) {
      String[] countValues = theParameterValues.remove(Constants.PARAM_COUNT);
      if (countValues.length > 0 && StringUtils.isNotBlank(countValues[0])) {
        try {
          args[myCountParamIndex] = new IntegerDt(countValues[0]);
        } catch (DataFormatException e) {
          throw new InvalidRequestException("Invalid _count parameter value: " + countValues[0]);
        }
      }
    }
    if (mySinceParamIndex != null) {
      String[] sinceValues = theParameterValues.remove(Constants.PARAM_SINCE);
      if (sinceValues.length > 0 && StringUtils.isNotBlank(sinceValues[0])) {
        try {
          args[mySinceParamIndex] = new InstantDt(sinceValues[0]);
        } catch (DataFormatException e) {
          throw new InvalidRequestException("Invalid _since parameter value: " + sinceValues[0]);
        }
      }
    }

    if (myIdParamIndex!=null) {
      args[myIdParamIndex] = theId;
    }
   
    Object response;
    try {
      response = getMethod().invoke(theResourceProvider, args);
    } catch (IllegalAccessException e) {
      throw new InternalErrorException(e);
    } catch (IllegalArgumentException e) {
      throw new InternalErrorException(e);
    } catch (InvocationTargetException e) {
      throw new InternalErrorException(e);
    }
   
    return toResourceList(response);
  }

}
TOP

Related Classes of ca.uhn.fhir.rest.method.HistoryMethodBinding

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.