blob: 9c7ff3cc978efb9ee0970307b34b794a0937d383 [file] [log] [blame]
/*
* Copyright (c) 2014, 2021 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// Dmitry Kornilov - initial implementation
package org.eclipse.persistence.jpa.rs.features.paging;
import org.eclipse.persistence.jpa.rs.PersistenceContext;
import org.eclipse.persistence.jpa.rs.QueryParameters;
import org.eclipse.persistence.jpa.rs.exceptions.JPARSException;
import jakarta.ws.rs.core.UriInfo;
/**
* Finds out if a named query is pageable and validates paging parameters.
*
* @author Dmitry Kornilov
*/
public final class PageableQueryValidator extends AbstractPagingValidator {
private final PersistenceContext context;
private final String queryName;
/**
* Creates a validator.
*
* @param context persistence context
* @param queryName query name to validate
* @param uri request uri
*/
public PageableQueryValidator(PersistenceContext context, String queryName, UriInfo uri) {
super(uri);
this.context = context;
this.queryName = queryName;
}
/**
* Checks if request is valid.
*
* @return true if request is valid and supports pagination, false if request is valid but doesn't support pagination
* @throws org.eclipse.persistence.jpa.rs.exceptions.JPARSException in case of any validation errors
*/
@Override
public boolean isFeatureApplicable() throws JPARSException {
if (context.isQueryPageable(queryName)) {
// Query supports pagination, do parameters check
checkParameters(context.getPageableQuery(queryName).limit());
return true;
} else {
// Pagination is not supported by query. Check that there are no pagination related query parameters.
if (queryParameters.containsKey(QueryParameters.JPARS_PAGING_LIMIT)
|| queryParameters.containsKey(QueryParameters.JPARS_PAGING_OFFSET)) {
throw JPARSException.paginationParameterForNotPageableResource();
}
return false;
}
}
}