LocationController.java

  1. package no.nav.data.team.location;

  2. import io.swagger.v3.oas.annotations.Operation;
  3. import io.swagger.v3.oas.annotations.responses.ApiResponse;
  4. import io.swagger.v3.oas.annotations.tags.Tag;
  5. import lombok.RequiredArgsConstructor;
  6. import lombok.extern.slf4j.Slf4j;
  7. import no.nav.data.team.location.domain.LocationType;
  8. import no.nav.data.team.location.dto.LocationResponse;
  9. import no.nav.data.team.location.dto.LocationSimplePathResponse;
  10. import no.nav.data.team.location.dto.LocationSimpleResponse;
  11. import org.springframework.web.bind.annotation.GetMapping;
  12. import org.springframework.web.bind.annotation.PathVariable;
  13. import org.springframework.web.bind.annotation.RequestMapping;
  14. import org.springframework.web.bind.annotation.RequestParam;
  15. import org.springframework.web.bind.annotation.RestController;

  16. import java.util.List;

  17. @Slf4j
  18. @RestController
  19. @RequestMapping("/location")
  20. @RequiredArgsConstructor
  21. @Tag(name = "Location", description = "Location endpoint")
  22. public class LocationController {

  23.     private final LocationRepository locationRepository;

  24.     @GetMapping("/{code}")
  25.     @Operation(summary = "Get location")
  26.     @ApiResponse(description = "location fetched")
  27.     public LocationResponse getLocation(@PathVariable String code){
  28.         return locationRepository.getLocationByCode(code)
  29.                 .map(LocationResponse::convert)
  30.                 .orElse(null);
  31.     }

  32.     @GetMapping("/hierarchy")
  33.     @Operation(summary = "Get location hierarchy")
  34.     @ApiResponse(description = "Location hierarchy fetched")
  35.     public List<LocationResponse> getLocationHierarchy(){
  36.         return locationRepository.getLocationHierarchy().stream().map(LocationResponse::convert).toList();
  37.     }

  38.     @GetMapping("/simple/{code}")
  39.     @Operation(summary = "Get location simple")
  40.     @ApiResponse(description = "Location simple fetched")
  41.     public LocationSimplePathResponse getLocationSimple(@PathVariable String code){
  42.         return locationRepository.getLocationByCode(code)
  43.                 .map(LocationSimplePathResponse::convert)
  44.                 .orElse(null);
  45.     }

  46.     @GetMapping("/simple")
  47.     @Operation(summary = "Get locations simple")
  48.     @ApiResponse(description = "Location simple flatmap fetched")
  49.     public List<LocationSimpleResponse> getLocationsSimple(@RequestParam(required = false) LocationType locationType){
  50.         return locationRepository.getLocationsByType(locationType)
  51.                 .values()
  52.                 .stream()
  53.                 .map(LocationSimpleResponse::convert)
  54.                 .toList();
  55.     }
  56. }