SourceDescObservationController.java

/*
 * Copyright 2021 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.gringlobal.api.v2.impl;

import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.Parameter;
import io.swagger.v3.oas.annotations.tags.Tag;
import org.apache.commons.lang3.ArrayUtils;
import org.gringlobal.api.PageableAsQueryParam;
import org.gringlobal.api.model.SourceDescObservationDTO;
import org.gringlobal.api.model.TranslatedSourceDescObservationDTO;
import org.gringlobal.api.v1.FilteredPage;
import org.gringlobal.api.v1.Pagination;
import org.gringlobal.api.v2.FilteredCRUDController;
import org.gringlobal.api.v2.facade.SourceDescObservationApiService;
import org.gringlobal.custom.elasticsearch.SearchException;
import org.gringlobal.model.SourceDescObservation;
import org.gringlobal.service.filter.SourceDescObservationFilter;
import org.springframework.data.domain.Pageable;
import org.springframework.http.MediaType;
import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

import java.io.IOException;

@RestController("sourceDescObservationApi2")
@RequestMapping(SourceDescObservationController.API_URL)
@PreAuthorize("isAuthenticated()")
@Tag(name = "SourceDescObservation")
public class SourceDescObservationController extends FilteredCRUDController<SourceDescObservationDTO, SourceDescObservation, SourceDescObservationApiService, SourceDescObservationFilter> {
	public static final String API_URL = AccessionController.API_URL + "/sourceobs";

	/**
	 * Get filtered translated list of SourceDescObservation.
	 *
	 * @param page the page
	 * @param filter the filter
	 * @return the page
	 * @throws SearchException
	 */
	@PostMapping(value = "/t/list", produces = { MediaType.APPLICATION_JSON_VALUE })
	@Operation(description = "Retrieve list of records matching the filter", summary = "List by filter")
	@PageableAsQueryParam
	public FilteredPage<TranslatedSourceDescObservationDTO, SourceDescObservationFilter> listTranslated(@Parameter(hidden = true) final Pagination page, @RequestBody(required = false) final SourceDescObservationFilter filter) throws SearchException, IOException {

		SourceDescObservationFilter normalizedFilter = shortFilterService.normalizeFilter(filter, filterType());
		Pageable pageable = ArrayUtils.isEmpty(page.getS()) ? page.toPageRequest(MAX_PAGE_SIZE, DEFAULT_PAGE_SIZE, defaultSort()) : page.toPageRequest(MAX_PAGE_SIZE, DEFAULT_PAGE_SIZE);
		return new FilteredPage<>(normalizedFilter, serviceFacade.listTranslated(filter, pageable));
	}

}