com.yourrents.services.geodata.controller.CountryController Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of your-rents-services-geodata Show documentation
Show all versions of your-rents-services-geodata Show documentation
Geographical Data services for the YourRents applications
The newest version!
package com.yourrents.services.geodata.controller;
/*-
* #%L
* YourRents GeoData Service
* %%
* Copyright (C) 2023 Your Rents Team
* %%
* 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.
* #L%
*/
import com.yourrents.services.common.searchable.Searchable;
import com.yourrents.services.common.searchable.annotation.SearchableDefault;
import com.yourrents.services.common.searchable.annotation.SearchableField;
import com.yourrents.services.common.util.exception.DataNotFoundException;
import com.yourrents.services.geodata.model.Country;
import com.yourrents.services.geodata.repository.CountryRepository;
import java.util.UUID;
import org.springdoc.core.annotations.ParameterObject;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import org.springframework.data.domain.Sort.Direction;
import org.springframework.data.web.SortDefault;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.DeleteMapping;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PatchMapping;
import org.springframework.web.bind.annotation.PathVariable;
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.ResponseStatus;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping("${yrs-geodata.api.basepath}/countries")
class CountryController {
private final CountryRepository countryRepository;
CountryController(CountryRepository countryRepository) {
this.countryRepository = countryRepository;
}
@GetMapping
ResponseEntity> getCountries(
@ParameterObject @SearchableDefault({@SearchableField(name = "uuid", type = UUID.class),
@SearchableField("isoCode"), @SearchableField("englishFullName"),
@SearchableField("iso3"),
@SearchableField("localName"),
@SearchableField(name = "number", type = Integer.class)}) Searchable filter,
@ParameterObject @SortDefault(sort = "localName", direction = Direction.ASC) Pageable pagination) {
Page page = countryRepository.find(filter, pagination);
return ResponseEntity.ok(page);
}
@GetMapping("/{uuid}")
ResponseEntity getByUuid(@PathVariable UUID uuid) {
Country country = countryRepository.findByExternalId(uuid)
.orElseThrow(
() -> new DataNotFoundException("can't find country having uuid: " + uuid));
return ResponseEntity.ok(country);
}
@PostMapping
ResponseEntity create(@RequestBody Country country) {
Country result = countryRepository.create(country);
return new ResponseEntity<>(result, HttpStatus.CREATED);
}
@PatchMapping("/{uuid}")
ResponseEntity update(@PathVariable UUID uuid,
@RequestBody Country country) {
Country result = countryRepository.update(uuid, country);
return ResponseEntity.ok(result);
}
@DeleteMapping("/{uuid}")
@ResponseStatus(HttpStatus.NO_CONTENT)
void delete(@PathVariable UUID uuid) {
countryRepository.delete(uuid);
}
}