Package ca.uhn.fhir.rest.method

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

package ca.uhn.fhir.rest.method;

/*
* #%L
* HAPI FHIR Library
* %%
* Copyright (C) 2014 University Health Network
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*      http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* #L%
*/

import java.io.IOException;
import java.lang.reflect.Method;

import org.apache.commons.io.IOUtils;
import org.apache.commons.lang3.StringUtils;

import ca.uhn.fhir.context.ConfigurationException;
import ca.uhn.fhir.context.FhirContext;
import ca.uhn.fhir.model.api.IResource;
import ca.uhn.fhir.model.api.ResourceMetadataKeyEnum;
import ca.uhn.fhir.model.api.Tag;
import ca.uhn.fhir.model.api.TagList;
import ca.uhn.fhir.model.dstu.resource.Binary;
import ca.uhn.fhir.model.dstu.valueset.RestfulOperationSystemEnum;
import ca.uhn.fhir.model.dstu.valueset.RestfulOperationTypeEnum;
import ca.uhn.fhir.rest.annotation.ResourceParam;
import ca.uhn.fhir.rest.client.BaseHttpClientInvocation;
import ca.uhn.fhir.rest.param.IParameter;
import ca.uhn.fhir.rest.param.ResourceParameter;
import ca.uhn.fhir.rest.server.Constants;
import ca.uhn.fhir.rest.server.IResourceProvider;
import ca.uhn.fhir.rest.server.exceptions.InternalErrorException;

abstract class BaseOutcomeReturningMethodBindingWithResourceParam extends BaseOutcomeReturningMethodBinding {
  private int myResourceParameterIndex;
  private String myResourceName;
  private boolean myBinary;

  public BaseOutcomeReturningMethodBindingWithResourceParam(Method theMethod, FhirContext theContext, Class<?> theMethodAnnotation, Object theProvider) {
    super(theMethod, theContext, theMethodAnnotation, theProvider);

    ResourceParameter resourceParameter = null;

    int index = 0;
    for (IParameter next : getParameters()) {
      if (next instanceof ResourceParameter) {
        resourceParameter = (ResourceParameter) next;
        Class<? extends IResource> resourceType = resourceParameter.getResourceType();
       
        if (theProvider instanceof IResourceProvider) {
          resourceType=((IResourceProvider) theProvider).getResourceType();
        }
       
        if (resourceType.isAssignableFrom(Binary.class)) {
          myBinary = true;
        }
       
        myResourceName = theContext.getResourceDefinition(resourceType).getName();
       
        myResourceParameterIndex = index;
      }
      index++;
    }

    if (resourceParameter == null) {
      throw new ConfigurationException("Method " + theMethod.getName() + " in type " + theMethod.getDeclaringClass().getCanonicalName() + " does not have a parameter annotated with @" + ResourceParam.class.getSimpleName());
    }

  }

  @Override
  protected IResource parseIncomingServerResource(Request theRequest) throws IOException {
    if (myBinary) {
      String ct = theRequest.getServletRequest().getHeader(Constants.HEADER_CONTENT_TYPE);
      byte[] contents = IOUtils.toByteArray(theRequest.getServletRequest().getInputStream());
      return new Binary(ct, contents);
    }else {
      return super.parseIncomingServerResource(theRequest);
    }
  }

  @Override
  public RestfulOperationTypeEnum getResourceOperationType() {
    // TODO Auto-generated method stub
    return null;
  }

  @Override
  public RestfulOperationSystemEnum getSystemOperationType() {
    // TODO Auto-generated method stub
    return null;
  }

  /**
   * For subclasses to override
   */
  @Override
  protected void addParametersForServerRequest(Request theRequest, Object[] theParams) {
    // nothing
  }

 

 

  @Override
  public String getResourceName() {
    return myResourceName;
  }

  @Override
  public BaseHttpClientInvocation invokeClient(Object[] theArgs) throws InternalErrorException {
    IResource resource = (IResource) theArgs[myResourceParameterIndex];
    if (resource == null) {
      throw new NullPointerException("Resource can not be null");
    }

    BaseHttpClientInvocation retVal = createClientInvocation(theArgs, resource);
    return retVal;
  }

  static void addTagsToPostOrPut(IResource resource, BaseHttpClientInvocation retVal) {
    TagList list = (TagList) resource.getResourceMetadata().get(ResourceMetadataKeyEnum.TAG_LIST);
    if (list != null) {
      for (Tag tag : list) {
        if (StringUtils.isNotBlank(tag.getTerm())) {
          retVal.addHeader(Constants.HEADER_CATEGORY, tag.toHeaderValue());
        }
      }
    }
  }

}
TOP

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

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.