001package ca.uhn.fhir.rest.server.method;
002
003/*
004 * #%L
005 * HAPI FHIR - Server Framework
006 * %%
007 * Copyright (C) 2014 - 2019 University Health Network
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.IBaseResource;
028
029import ca.uhn.fhir.context.FhirContext;
030import ca.uhn.fhir.model.valueset.BundleTypeEnum;
031import ca.uhn.fhir.rest.annotation.OperationParam;
032import ca.uhn.fhir.rest.annotation.Validate;
033import ca.uhn.fhir.rest.api.Constants;
034import ca.uhn.fhir.rest.api.EncodingEnum;
035
036public class ValidateMethodBindingDstu2Plus extends OperationMethodBinding {
037
038        public ValidateMethodBindingDstu2Plus(Class<?> theReturnResourceType, Class<? extends IBaseResource> theReturnTypeFromRp, Method theMethod, FhirContext theContext, Object theProvider,
039                        Validate theAnnotation) {
040                super(theReturnResourceType, theReturnTypeFromRp, theMethod, theContext, theProvider, true, Constants.EXTOP_VALIDATE, theAnnotation.type(), null, new OperationParam[0], BundleTypeEnum.COLLECTION);
041
042                List<IParameter> newParams = new ArrayList<IParameter>();
043                int idx = 0;
044                for (IParameter next : getParameters()) {
045                        if (next instanceof ResourceParameter) {
046                                if (IBaseResource.class.isAssignableFrom(((ResourceParameter) next).getResourceType())) {
047                                        Class<?> parameterType = theMethod.getParameterTypes()[idx];
048                                        if (String.class.equals(parameterType) || EncodingEnum.class.equals(parameterType)) {
049                                                newParams.add(next);
050                                        } else {
051                                                OperationParameter parameter = new OperationParameter(theContext, Constants.EXTOP_VALIDATE, Constants.EXTOP_VALIDATE_RESOURCE, 0, 1);
052                                                parameter.initializeTypes(theMethod, null, null, parameterType);
053                                                newParams.add(parameter);
054                                        }
055                                } else {
056                                        newParams.add(next);
057                                }
058                        } else {
059                                newParams.add(next);
060                        }
061                        idx++;
062                }
063                setParameters(newParams);
064
065        }
066
067}