SourceDescObservationController.java
/*
* Copyright 2026 Global Crop Diversity Trust
* Licensed under the Apache License, Version 2.0
* See LICENSE file in project root folder or http://www.apache.org/licenses/LICENSE-2.0
*/
package org.gringlobal.api.v2.impl;
import java.io.IOException;
import org.gringlobal.api.FilteredPage;
import org.gringlobal.api.Pagination;
import org.gringlobal.api.model.SourceDescObservationDTO;
import org.gringlobal.api.model.TranslatedSourceDescObservationDTO;
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 io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.tags.Tag;
import org.apache.commons.lang3.ArrayUtils;
import org.springdoc.api.annotations.ParameterObject;
@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")
public FilteredPage<TranslatedSourceDescObservationDTO, 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);
return new FilteredPage<>(normalizedFilter, serviceFacade.listTranslated(filter, pageable));
}
}