001/*
002 * Licensed under the Apache License, Version 2.0 (the "License");
003 * you may not use this file except in compliance with the License.
004 * You may obtain a copy of the License at
005 *
006 *     http://www.apache.org/licenses/LICENSE-2.0
007 *
008 * Unless required by applicable law or agreed to in writing, software
009 * distributed under the License is distributed on an "AS IS" BASIS,
010 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
011 * See the License for the specific language governing permissions and
012 * limitations under the License.
013 */
014package org.gbif.api.model.occurrence.search;
015
016import java.util.Date;
017import java.util.Optional;
018import java.util.UUID;
019import io.swagger.v3.oas.annotations.media.Schema;
020
021import org.gbif.api.annotation.Experimental;
022import org.gbif.api.model.common.paging.Pageable;
023import org.gbif.api.model.common.search.FacetedSearchRequest;
024import org.gbif.api.util.IsoDateInterval;
025import org.gbif.api.vocabulary.BasisOfRecord;
026import org.gbif.api.vocabulary.Continent;
027import org.gbif.api.vocabulary.Country;
028import org.gbif.api.vocabulary.MediaType;
029import org.gbif.api.vocabulary.OccurrenceIssue;
030import org.gbif.api.vocabulary.OccurrenceStatus;
031
032/** Request class for issuing search request to the occurrence search service. */
033public class OccurrenceSearchRequest extends FacetedSearchRequest<OccurrenceSearchParameter> {
034
035  @Schema(
036    description = "This flag enables the use of case-sensitive matches and aggregations on certain search parameters."
037  )
038  private Boolean matchCase;
039
040  @Schema(
041    description = "This flag allows to sort the results in a random order by specifying a seed. The seed makes the " +
042      "random results reproducible so we can use paging. The same seed has to be sent for each page."
043  )
044  private String shuffle;
045
046  public OccurrenceSearchRequest() {
047    // empty block
048    super();
049  }
050
051  /**
052   * This flag enables the use of case-sensitive matches and aggregations on certain search
053   * parameters.
054   *
055   * <p>Fields that support this feature are: occurrenceId, recordedBy, samplingProtocol,
056   * catalogNumber, collectionCode, institutionCode, eventId, parentEventId, waterBody,
057   * stateProvince, recordNumber, identifiedBy, organismId and locality.
058   *
059   * <p>This is an experimental feature and its implementation may change or be removed at any time.
060   *
061   * <p>Be aware that this is not a per-field flag, all possible fields will match case sensitively.
062   */
063  @Experimental
064  public Boolean isMatchCase() {
065    return Optional.ofNullable(matchCase).orElse(Boolean.FALSE);
066  }
067
068  @Experimental
069  public void setMatchCase(Boolean matchCase) {
070    this.matchCase = matchCase;
071  }
072
073  /**
074   * This flag allows to sort the results in a random order by specifying a seed. The seed makes the
075   * random results reproducible so we can use paging. The same seed has to be sent for each page.
076   */
077  @Experimental
078  public String getShuffle() {
079    return shuffle;
080  }
081
082  @Experimental
083  public void setShuffle(String shuffle) {
084    this.shuffle = shuffle;
085  }
086
087  public OccurrenceSearchRequest(long offset, int limit) {
088    super(offset, limit);
089  }
090
091  public OccurrenceSearchRequest(Pageable page) {
092    super(page);
093  }
094
095  public void addOccurrenceIDFilter(String occurrenceID) {
096    addParameter(OccurrenceSearchParameter.OCCURRENCE_ID, occurrenceID);
097  }
098
099  public void addEstablishmentMeansFilter(String establishmentMeans) {
100    addParameter(OccurrenceSearchParameter.ESTABLISHMENT_MEANS, establishmentMeans);
101  }
102
103  public void addBasisOfRecordFilter(BasisOfRecord basisOfRecord) {
104    addParameter(OccurrenceSearchParameter.BASIS_OF_RECORD, basisOfRecord);
105  }
106
107  public void addTypeStatusFilter(String typeStatus) {
108    addParameter(OccurrenceSearchParameter.TYPE_STATUS, typeStatus);
109  }
110
111  public void addCatalogNumberFilter(String catalogNumber) {
112    addParameter(OccurrenceSearchParameter.CATALOG_NUMBER, catalogNumber);
113  }
114
115  public void addRecordedByFilter(String collectorName) {
116    addParameter(OccurrenceSearchParameter.RECORDED_BY, collectorName);
117  }
118
119  public void addIdentifiedByFilter(String collectorName) {
120    addParameter(OccurrenceSearchParameter.IDENTIFIED_BY, collectorName);
121  }
122
123  public void addRecordNumberFilter(String recordNumber) {
124    addParameter(OccurrenceSearchParameter.RECORD_NUMBER, recordNumber);
125  }
126
127  public void addCountryFilter(Country country) {
128    addParameter(OccurrenceSearchParameter.COUNTRY, country.getIso2LetterCode());
129  }
130
131  public void addContinentFilter(Continent continent) {
132    addParameter(OccurrenceSearchParameter.CONTINENT, continent);
133  }
134
135  public void addDatasetKeyFilter(UUID datasetKey) {
136    addParameter(OccurrenceSearchParameter.DATASET_KEY, datasetKey.toString());
137  }
138
139  public void addGeometryFilter(String geometryAsWkt) {
140    addParameter(OccurrenceSearchParameter.GEOMETRY, geometryAsWkt);
141  }
142
143  public void addDecimalLatitudeFilter(double latitude) {
144    addParameter(OccurrenceSearchParameter.DECIMAL_LATITUDE, latitude);
145  }
146
147  public void addDecimalLongitudeFilter(double longitude) {
148    addParameter(OccurrenceSearchParameter.DECIMAL_LONGITUDE, longitude);
149  }
150
151  public void addCoordinateUncertaintyInMetersFilter(double uncertainty) {
152    addParameter(OccurrenceSearchParameter.COORDINATE_UNCERTAINTY_IN_METERS, uncertainty);
153  }
154
155  public void addMonthFilter(int month) {
156    addParameter(OccurrenceSearchParameter.MONTH, month);
157  }
158
159  public void addDayFilter(int day) {
160    addParameter(OccurrenceSearchParameter.DAY, day);
161  }
162
163  public void addTaxonKeyFilter(int taxonKey) {
164    addParameter(OccurrenceSearchParameter.TAXON_KEY, taxonKey);
165  }
166
167  public void addKingdomKeyFilter(int kingdomKey) {
168    addParameter(OccurrenceSearchParameter.KINGDOM_KEY, kingdomKey);
169  }
170
171  public void addPhylumKeyFilter(int phylumKey) {
172    addParameter(OccurrenceSearchParameter.PHYLUM_KEY, phylumKey);
173  }
174
175  public void addClassKeyFilter(int classKey) {
176    addParameter(OccurrenceSearchParameter.CLASS_KEY, classKey);
177  }
178
179  public void addOrderKeyFilter(int orderKey) {
180    addParameter(OccurrenceSearchParameter.ORDER_KEY, orderKey);
181  }
182
183  public void addFamilyKeyFilter(int familyKey) {
184    addParameter(OccurrenceSearchParameter.FAMILY_KEY, familyKey);
185  }
186
187  public void addGenusKeyFilter(int genusKey) {
188    addParameter(OccurrenceSearchParameter.GENUS_KEY, genusKey);
189  }
190
191  public void addSubGenusKeyFilter(int subGenusKey) {
192    addParameter(OccurrenceSearchParameter.SUBGENUS_KEY, subGenusKey);
193  }
194
195  public void addSpeciesKeyFilter(int speciesKey) {
196    addParameter(OccurrenceSearchParameter.SPECIES_KEY, speciesKey);
197  }
198
199  public void addYearFilter(int year) {
200    addParameter(OccurrenceSearchParameter.YEAR, year);
201  }
202
203  public void addEventDateFilter(IsoDateInterval date) {
204    addParameter(OccurrenceSearchParameter.EVENT_DATE, date);
205  }
206
207  public void addLastInterpretedFilter(Date modified) {
208    addParameter(OccurrenceSearchParameter.LAST_INTERPRETED, modified);
209  }
210
211  public void addPublishingCountryFilter(Country country) {
212    addParameter(OccurrenceSearchParameter.PUBLISHING_COUNTRY, country.getIso2LetterCode());
213  }
214
215  public void addInstitutionCodeFilter(String code) {
216    addParameter(OccurrenceSearchParameter.INSTITUTION_CODE, code);
217  }
218
219  public void addHasCoordinateFilter(boolean hasCoordinate) {
220    addParameter(OccurrenceSearchParameter.HAS_COORDINATE, hasCoordinate);
221  }
222
223  public void addSpatialIssueFilter(boolean hasSpatialIssue) {
224    addParameter(OccurrenceSearchParameter.HAS_GEOSPATIAL_ISSUE, hasSpatialIssue);
225  }
226
227  public void addIssueFilter(OccurrenceIssue issue) {
228    addParameter(OccurrenceSearchParameter.ISSUE, issue);
229  }
230
231  public void addElevationFilter(double elevation) {
232    addParameter(OccurrenceSearchParameter.ELEVATION, elevation);
233  }
234
235  public void addMediaTypeFilter(MediaType mediaType) {
236    addParameter(OccurrenceSearchParameter.MEDIA_TYPE, mediaType);
237  }
238
239  public void addRecordedByIdsFilter(String recordedByIds) {
240    addParameter(OccurrenceSearchParameter.RECORDED_BY_ID, recordedByIds);
241  }
242
243  public void addIdentifiedByIdsFilter(String identifiedByIds) {
244    addParameter(OccurrenceSearchParameter.IDENTIFIED_BY_ID, identifiedByIds);
245  }
246
247  public void addOccurrenceStatusFilter(OccurrenceStatus occurrenceStatus) {
248    addParameter(OccurrenceSearchParameter.OCCURRENCE_STATUS, occurrenceStatus);
249  }
250
251  public void addGadmGidFilter(String gadmGid) {
252    addParameter(OccurrenceSearchParameter.GADM_GID, gadmGid);
253  }
254
255  public void addGadmLevel0GidFilter(String gadm0) {
256    addParameter(OccurrenceSearchParameter.GADM_LEVEL_0_GID, gadm0);
257  }
258
259  public void addGadmLevel1GidFilter(String gadm1) {
260    addParameter(OccurrenceSearchParameter.GADM_LEVEL_1_GID, gadm1);
261  }
262
263  public void addGadmLevel2GidFilter(String gadm2) {
264    addParameter(OccurrenceSearchParameter.GADM_LEVEL_2_GID, gadm2);
265  }
266
267  public void addGadmLevel3GidFilter(String gadm3) {
268    addParameter(OccurrenceSearchParameter.GADM_LEVEL_3_GID, gadm3);
269  }
270
271  public void addGeologicalTimeFilter(String geologicalTimeConcept) {
272    addParameter(OccurrenceSearchParameter.GEOLOGICAL_TIME, geologicalTimeConcept);
273  }
274
275  public void addLithostratigraphyFilter(String lithostratigraphy) {
276    addParameter(OccurrenceSearchParameter.LITHOSTRATIGRAPHY, lithostratigraphy);
277  }
278
279  public void addBiostratigraphyFilter(String biostratigraphy) {
280    addParameter(OccurrenceSearchParameter.BIOSTRATIGRAPHY, biostratigraphy);
281  }
282
283  @Experimental
284  public void addInstitutionKeyFilter(String institutionKey) {
285    addParameter(OccurrenceSearchParameter.INSTITUTION_KEY, institutionKey);
286  }
287
288  @Experimental
289  public void addCollectionKeyFilter(String collectionKey) {
290    addParameter(OccurrenceSearchParameter.COLLECTION_KEY, collectionKey);
291  }
292
293  public void addDnaSequenceIDFilter(String dnaSequenceID) {
294    addParameter(OccurrenceSearchParameter.DNA_SEQUENCE_ID, dnaSequenceID);
295  }
296
297}