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.v1.impl;
import io.swagger.v3.oas.annotations.Operation;
import org.springdoc.api.annotations.ParameterObject;
import io.swagger.v3.oas.annotations.tags.Tag;
import org.apache.commons.lang3.ArrayUtils;
import org.gringlobal.api.v1.FilteredCRUDController;
import org.gringlobal.api.v1.FilteredPage;
import org.gringlobal.api.v1.Pagination;
import org.gringlobal.custom.elasticsearch.SearchException;
import org.gringlobal.model.SourceDescObservation;
import org.gringlobal.service.SourceDescObservationService;
import org.gringlobal.service.SourceDescObservationService.TranslatedSourceDescObservation;
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("sourceDescObservationApi1")
@RequestMapping(SourceDescObservationController.API_URL)
@PreAuthorize("isAuthenticated()")
@Tag(name = "SourceDescObservation")
public class SourceDescObservationController extends FilteredCRUDController<SourceDescObservation, SourceDescObservationService, 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")
public FilteredPage<TranslatedSourceDescObservation, SourceDescObservationFilter> listTranslated(@ParameterObject 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);
FilteredPage<TranslatedSourceDescObservation, SourceDescObservationFilter> results = new FilteredPage<>(normalizedFilter, crudService.listTranslated(filter, pageable));
return results;
}
}