All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.jhipster.web.util.PaginationUtil Maven / Gradle / Ivy

Go to download

Server-side library used by applications created with the JHipster generator, see https://www.jhipster.tech/ for more information on JHipster

There is a newer version: 3.9.1
Show newest version
/*
 * Copyright 2016-2020 the original author or authors from the JHipster project.
 *
 * This file is part of the JHipster project, see https://www.jhipster.tech/
 * for more information.
 *
 * 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 io.github.jhipster.web.util;

import org.springframework.data.domain.Page;
import org.springframework.http.HttpHeaders;
import org.springframework.web.util.UriComponentsBuilder;

import java.text.MessageFormat;

/**
 * Utility class for handling pagination.
 *
 * 

* Pagination uses the same principles as the GitHub API, * and follow RFC 5988 (Link header). */ public final class PaginationUtil { private static final String HEADER_X_TOTAL_COUNT = "X-Total-Count"; private static final String HEADER_LINK_FORMAT = "<{0}>; rel=\"{1}\""; private PaginationUtil() { } /** * Generate pagination headers for a Spring Data {@link org.springframework.data.domain.Page} object. * * @param uriBuilder The URI builder. * @param page The page. * @param The type of object. * @return http header. */ public static HttpHeaders generatePaginationHttpHeaders(UriComponentsBuilder uriBuilder, Page page) { HttpHeaders headers = new HttpHeaders(); headers.add(HEADER_X_TOTAL_COUNT, Long.toString(page.getTotalElements())); int pageNumber = page.getNumber(); int pageSize = page.getSize(); StringBuilder link = new StringBuilder(); if (pageNumber < page.getTotalPages() - 1) { link.append(prepareLink(uriBuilder, pageNumber + 1, pageSize, "next")) .append(","); } if (pageNumber > 0) { link.append(prepareLink(uriBuilder, pageNumber - 1, pageSize, "prev")) .append(","); } link.append(prepareLink(uriBuilder, page.getTotalPages() - 1, pageSize, "last")) .append(",") .append(prepareLink(uriBuilder, 0, pageSize, "first")); headers.add(HttpHeaders.LINK, link.toString()); return headers; } private static String prepareLink(UriComponentsBuilder uriBuilder, int pageNumber, int pageSize, String relType) { return MessageFormat.format(HEADER_LINK_FORMAT, preparePageUri(uriBuilder, pageNumber, pageSize), relType); } private static String preparePageUri(UriComponentsBuilder uriBuilder, int pageNumber, int pageSize) { return uriBuilder.replaceQueryParam("page", Integer.toString(pageNumber)) .replaceQueryParam("size", Integer.toString(pageSize)) .toUriString() .replace(",", "%2C") .replace(";", "%3B"); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy