TaxonomySpeciesFilter.java
/*
* Copyright 2020 Global Crop Diversity Trust
*
* 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.
*/
package org.genesys.server.service.filter;
import java.util.List;
import java.util.Set;
import org.apache.commons.collections4.CollectionUtils;
import org.genesys.blocks.model.filters.StringFilter;
import org.genesys.server.model.grin.QTaxonomySpecies;
import org.genesys.server.model.grin.TaxonomySpecies;
import com.querydsl.core.types.Predicate;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.Setter;
import lombok.experimental.Accessors;
/**
* Filters for {@link TaxonomySpecies}.
*/
@Getter
@Setter
@EqualsAndHashCode(callSuper = true)
@Accessors(fluent = true)
public class TaxonomySpeciesFilter extends CooperatorOwnedModelFilter<TaxonomySpeciesFilter, TaxonomySpecies> implements IFullTextFilter {
private static final long serialVersionUID = 7531510842152752326L;
private static final String[] BOOSTED = { "name" };
/** Any text. */
public String _text;
/** The genus. */
public Set<String> genus;
/** The species. */
public Set<String> species;
/** The subtaxa. */
public StringFilter subtaxa;
/**
* Builds the query.
*
* @return the predicate
*/
@Override
public List<Predicate> collectPredicates() {
return collectPredicates(QTaxonomySpecies.taxonomySpecies);
}
/**
* Builds the query.
*
* @param taxonomySpecies the taxonomySpecies
* @return the boolean builder
*/
public List<Predicate> collectPredicates(final QTaxonomySpecies taxonomySpecies) {
final List<Predicate> predicates = super.collectPredicates(taxonomySpecies, taxonomySpecies._super);
if (CollectionUtils.isNotEmpty(genus)) {
predicates.add(taxonomySpecies.taxonomyGenus().name.in(genus));
}
if (CollectionUtils.isNotEmpty(species)) {
predicates.add(taxonomySpecies.speciesName.in(species));
}
if (subtaxa != null) {
predicates.add(subtaxa.buildQuery(taxonomySpecies.subtaxa));
}
return predicates;
}
@Override
public String get_text() {
return _text;
}
@Override
public String[] boostedFields() {
return TaxonomySpeciesFilter.BOOSTED;
}
}