
001package ca.uhn.fhir.rest.client.method; 002 003/* 004 * #%L 005 * HAPI FHIR - Client Framework 006 * %% 007 * Copyright (C) 2014 - 2023 Smile CDR, Inc. 008 * %% 009 * Licensed under the Apache License, Version 2.0 (the "License"); 010 * you may not use this file except in compliance with the License. 011 * You may obtain a copy of the License at 012 * 013 * http://www.apache.org/licenses/LICENSE-2.0 014 * 015 * Unless required by applicable law or agreed to in writing, software 016 * distributed under the License is distributed on an "AS IS" BASIS, 017 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 018 * See the License for the specific language governing permissions and 019 * limitations under the License. 020 * #L% 021 */ 022 023import java.lang.reflect.Method; 024import java.util.ArrayList; 025import java.util.List; 026 027import org.hl7.fhir.instance.model.api.IBaseParameters; 028import org.hl7.fhir.instance.model.api.IBaseResource; 029 030import ca.uhn.fhir.context.FhirContext; 031import ca.uhn.fhir.model.valueset.BundleTypeEnum; 032import ca.uhn.fhir.rest.annotation.Validate; 033import ca.uhn.fhir.rest.api.Constants; 034import ca.uhn.fhir.rest.api.EncodingEnum; 035import ca.uhn.fhir.rest.client.impl.BaseHttpClientInvocation; 036import ca.uhn.fhir.util.ParametersUtil; 037 038public class ValidateMethodBindingDstu2Plus extends OperationMethodBinding { 039 040 public ValidateMethodBindingDstu2Plus(Class<?> theReturnResourceType, Class<? extends IBaseResource> theReturnTypeFromRp, Method theMethod, FhirContext theContext, Object theProvider, 041 Validate theAnnotation) { 042 super(null, theReturnTypeFromRp, theMethod, theContext, theProvider, true, Constants.EXTOP_VALIDATE, theAnnotation.type(), BundleTypeEnum.COLLECTION); 043 044 List<IParameter> newParams = new ArrayList<IParameter>(); 045 int idx = 0; 046 for (IParameter next : getParameters()) { 047 if (next instanceof ResourceParameter) { 048 if (IBaseResource.class.isAssignableFrom(((ResourceParameter) next).getResourceType())) { 049 Class<?> parameterType = theMethod.getParameterTypes()[idx]; 050 if (String.class.equals(parameterType) || EncodingEnum.class.equals(parameterType)) { 051 newParams.add(next); 052 } else { 053 OperationParameter parameter = new OperationParameter(theContext, Constants.EXTOP_VALIDATE, Constants.EXTOP_VALIDATE_RESOURCE, 0, 1); 054 parameter.initializeTypes(theMethod, null, null, parameterType); 055 newParams.add(parameter); 056 } 057 } else { 058 newParams.add(next); 059 } 060 } else { 061 newParams.add(next); 062 } 063 idx++; 064 } 065 setParameters(newParams); 066 067 } 068 069 070 public static BaseHttpClientInvocation createValidateInvocation(FhirContext theContext, IBaseResource theResource) { 071 IBaseParameters parameters = (IBaseParameters) theContext.getResourceDefinition("Parameters").newInstance(); 072 ParametersUtil.addParameterToParameters(theContext, parameters, "resource", theResource); 073 074 String resourceName = theContext.getResourceType(theResource); 075 String resourceId = theResource.getIdElement().getIdPart(); 076 077 BaseHttpClientInvocation retVal = createOperationInvocation(theContext, resourceName, resourceId, null,Constants.EXTOP_VALIDATE, parameters, false); 078 return retVal; 079 } 080 081 082}