001
002package ca.uhn.fhir.jpa.rp.r4;
003
004import java.util.*;
005
006import org.apache.commons.lang3.StringUtils;
007
008import ca.uhn.fhir.jpa.searchparam.SearchParameterMap;
009import ca.uhn.fhir.model.api.Include;
010import ca.uhn.fhir.model.api.annotation.*;
011import org.hl7.fhir.r4.model.*;
012import ca.uhn.fhir.rest.annotation.*;
013import ca.uhn.fhir.rest.param.*;
014import ca.uhn.fhir.rest.api.SortSpec;
015import ca.uhn.fhir.rest.api.SummaryEnum;
016import ca.uhn.fhir.rest.api.SearchTotalModeEnum;
017import ca.uhn.fhir.rest.api.SearchContainedModeEnum;
018
019public class ParametersResourceProvider extends 
020        ca.uhn.fhir.jpa.provider.BaseJpaResourceProvider<Parameters>
021        {
022
023        @Override
024        public Class<Parameters> getResourceType() {
025                return Parameters.class;
026        }
027
028        @Search(allowUnknownParams=true)
029        public ca.uhn.fhir.rest.api.server.IBundleProvider search(
030                        javax.servlet.http.HttpServletRequest theServletRequest,
031                        javax.servlet.http.HttpServletResponse theServletResponse,
032
033                        ca.uhn.fhir.rest.api.server.RequestDetails theRequestDetails,
034
035                        @Description(shortDefinition="Search the contents of the resource's data using a filter")
036                        @OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_FILTER)
037                        StringAndListParam theFtFilter,
038
039                        @Description(shortDefinition="Search the contents of the resource's data using a fulltext search")
040                        @OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_CONTENT)
041                        StringAndListParam theFtContent, 
042
043                        @Description(shortDefinition="Search the contents of the resource's narrative using a fulltext search")
044                        @OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_TEXT)
045                        StringAndListParam theFtText, 
046
047                        @Description(shortDefinition="Search for resources which have the given tag")
048                        @OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_TAG)
049                        TokenAndListParam theSearchForTag, 
050
051                        @Description(shortDefinition="Search for resources which have the given security labels")
052                        @OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_SECURITY)
053                        TokenAndListParam theSearchForSecurity, 
054  
055                        @Description(shortDefinition="Search for resources which have the given profile")
056                        @OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_PROFILE)
057                        UriAndListParam theSearchForProfile,
058
059                        @Description(shortDefinition="Search for resources which have the given source value (Resource.meta.source)")
060                        @OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_SOURCE)
061                        UriAndListParam theSearchForSource,
062
063                        @Description(shortDefinition="Return resources linked to by the given target")
064                        @OptionalParam(name="_has")
065                        HasAndListParam theHas, 
066
067   
068
069                        @Description(shortDefinition="The ID of the resource")
070                        @OptionalParam(name="_id")
071                        TokenAndListParam the_id,
072
073                        @RawParam
074                        Map<String, List<String>> theAdditionalRawParams,
075
076                        @Description(shortDefinition="Only return resources which were last updated as specified by the given range")
077                        @OptionalParam(name="_lastUpdated")
078                        DateRangeParam theLastUpdated, 
079
080                        @IncludeParam
081                        Set<Include> theIncludes,
082
083                        @IncludeParam(reverse=true)
084                        Set<Include> theRevIncludes,
085
086                        @Sort
087                        SortSpec theSort,
088                        
089                        @ca.uhn.fhir.rest.annotation.Count
090                        Integer theCount,
091
092                        @ca.uhn.fhir.rest.annotation.Offset
093                        Integer theOffset,
094
095                        SummaryEnum theSummaryMode,
096
097                        SearchTotalModeEnum theSearchTotalMode,
098
099                        SearchContainedModeEnum theSearchContainedMode
100
101                        ) {
102                startRequest(theServletRequest);
103                try {
104                        SearchParameterMap paramMap = new SearchParameterMap();
105                        paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_FILTER, theFtFilter);
106                        paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_CONTENT, theFtContent);
107                        paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_TEXT, theFtText);
108                        paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_TAG, theSearchForTag);
109                        paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_SECURITY, theSearchForSecurity);
110                        paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_PROFILE, theSearchForProfile);
111                        paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_SOURCE, theSearchForSource);
112                        paramMap.add("_has", theHas);
113                        paramMap.add("_id", the_id);
114                        paramMap.setRevIncludes(theRevIncludes);
115                        paramMap.setLastUpdated(theLastUpdated);
116                        paramMap.setIncludes(theIncludes);
117                        paramMap.setSort(theSort);
118                        paramMap.setCount(theCount);
119                        paramMap.setOffset(theOffset);
120                        paramMap.setSummaryMode(theSummaryMode);
121                        paramMap.setSearchTotalMode(theSearchTotalMode);
122                        paramMap.setSearchContainedMode(theSearchContainedMode);
123
124                        getDao().translateRawParameters(theAdditionalRawParams, paramMap);
125
126                        ca.uhn.fhir.rest.api.server.IBundleProvider retVal = getDao().search(paramMap, theRequestDetails, theServletResponse);
127                        return retVal;
128                } finally {
129                        endRequest(theServletRequest);
130                }
131        }
132
133}