OAuthClientFilter.java
/*
* Copyright 2018 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.AuditedVersionedModelFilter;
import org.genesys.blocks.model.filters.StringFilter;
import org.genesys.blocks.oauth.model.OAuthClient;
import org.genesys.blocks.oauth.model.OAuthRole;
import org.genesys.blocks.oauth.model.QOAuthClient;
import org.genesys.server.model.impl.User;
import com.querydsl.core.types.Predicate;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.Setter;
import lombok.experimental.Accessors;
/**
* Filters for {@link User}.
*
* @author Matija Obreza
*/
@Getter
@Setter
@EqualsAndHashCode(callSuper = true)
@Accessors(fluent = true)
public class OAuthClientFilter extends AuditedVersionedModelFilter<OAuthClientFilter, OAuthClient> {
private static final long serialVersionUID = 6266936735191280437L;
/** The clientId. */
public Set<String> clientId;
/** The title. */
public StringFilter title;
/** The resource ids. */
public StringFilter resource;
/** The redirect uris. */
public StringFilter redirect;
/** The grant types. */
public StringFilter grants;
/** The oAuth roles. */
public Set<OAuthRole> roles;
/** The auto approve. */
public Boolean autoApprove;
/** The contact email. */
public StringFilter contactEmail;
/* (non-Javadoc)
* @see org.genesys.blocks.model.filters.BasicModelFilter#buildQuery()
*/
@Override
public List<Predicate> collectPredicates() {
return collectPredicates(QOAuthClient.oAuthClient);
}
/**
* Builds the query.
*
* @param oAuthClient the OAuthClient
* @return the predicate
*/
public List<Predicate> collectPredicates(QOAuthClient oAuthClient) {
final List<Predicate> predicates = super.collectPredicates(oAuthClient, oAuthClient._super._super._super);
if (CollectionUtils.isNotEmpty(clientId)) {
predicates.add(oAuthClient.clientId.in(clientId));
}
if (title != null) {
predicates.add(title.buildQuery(oAuthClient.title));
}
if (CollectionUtils.isNotEmpty(roles)) {
predicates.add(oAuthClient.roles.any().in(roles));
}
if (grants != null) {
predicates.add(grants.buildQuery(oAuthClient.grants));
}
if (resource != null) {
predicates.add(resource.buildQuery(oAuthClient.resource));
}
if (redirect != null) {
predicates.add(redirect.buildQuery(oAuthClient.redirect));
}
if (autoApprove != null) {
predicates.add(oAuthClient.autoApprove.eq(autoApprove));
}
if (contactEmail != null) {
predicates.add(contactEmail.buildQuery(oAuthClient.contactEmail));
}
return predicates;
}
}