ProductAreaController.java

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

  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 jakarta.validation.Valid;
  6. import lombok.extern.slf4j.Slf4j;
  7. import no.nav.data.common.TeamCatalogProps;
  8. import no.nav.data.common.exceptions.ValidationException;
  9. import no.nav.data.common.rest.RestResponsePage;
  10. import no.nav.data.common.utils.StreamUtils;
  11. import no.nav.data.team.po.domain.ProductArea;
  12. import no.nav.data.team.po.dto.AddTeamsToProductAreaRequest;
  13. import no.nav.data.team.po.dto.ProductAreaRequest;
  14. import no.nav.data.team.po.dto.ProductAreaResponse;
  15. import no.nav.data.team.shared.domain.DomainObjectStatus;
  16. import org.springframework.http.HttpStatus;
  17. import org.springframework.http.ResponseEntity;
  18. import org.springframework.web.bind.annotation.DeleteMapping;
  19. import org.springframework.web.bind.annotation.GetMapping;
  20. import org.springframework.web.bind.annotation.PathVariable;
  21. import org.springframework.web.bind.annotation.PostMapping;
  22. import org.springframework.web.bind.annotation.PutMapping;
  23. import org.springframework.web.bind.annotation.RequestBody;
  24. import org.springframework.web.bind.annotation.RequestMapping;
  25. import org.springframework.web.bind.annotation.RestController;
  26. import org.springframework.web.bind.annotation.RequestParam;

  27. import java.util.Objects;
  28. import java.util.UUID;

  29. import static no.nav.data.common.utils.StreamUtils.convert;

  30. @Slf4j
  31. @RestController
  32. @RequestMapping("/productarea")
  33. @Tag(name = "ProductArea", description = "ProductArea endpoint")
  34. public class ProductAreaController {

  35.     private final ProductAreaService service;
  36.     private final TeamCatalogProps teamCatalogProps;

  37.     public ProductAreaController(ProductAreaService service, TeamCatalogProps teamCatalogProps) {
  38.         this.service = service;
  39.         this.teamCatalogProps = teamCatalogProps;
  40.     }

  41.     @Operation(summary = "Get All ProductAreas")
  42.     @ApiResponse(description = "ok")
  43.     @GetMapping
  44.     public ResponseEntity<RestResponsePage<ProductAreaResponse>> getAll(
  45.             @RequestParam(name = "status", required = false, defaultValue = "ACTIVE,PLANNED,INACTIVE") String stringStatus
  46.     ) {
  47.         log.info("Get all ProductAreas");

  48.         var po = service.getAll();

  49.         var queryStatusList = DomainObjectStatus.fromQueryParameter(stringStatus);

  50.         po = po.stream().filter(t -> queryStatusList.contains(t.getStatus())).toList();


  51.         return ResponseEntity.ok(new RestResponsePage<>(StreamUtils.convert(po, this::convertProductAreaToReponse)));
  52.     }

  53.     @Operation(summary = "Get ProductArea")
  54.     @ApiResponse(description = "ok")
  55.     @GetMapping("/{id}")
  56.     public ResponseEntity<ProductAreaResponse> getById(@PathVariable UUID id) {
  57.         log.info("Get ProductArea id={}", id);
  58.         return ResponseEntity.ok(convertProductAreaToReponse(service.get(id)));
  59.     }

  60.     @Operation(summary = "Search ProductArea")
  61.     @ApiResponse(description = "ProductArea fetched")
  62.     @GetMapping("/search/{name}")
  63.     public ResponseEntity<RestResponsePage<ProductAreaResponse>> searchProductAreaByName(@PathVariable String name) {
  64.         log.info("Received request for ProductArea with the name like {}", name);
  65.         if (name.length() < 3) {
  66.             throw new ValidationException("Search ProductArea must be at least 3 characters");
  67.         }
  68.         var po = service.search(name);
  69.         log.info("Returned {} po", po.size());
  70.         return new ResponseEntity<>(new RestResponsePage<>(convert(po,this::convertProductAreaToReponse)), HttpStatus.OK);
  71.     }

  72.     @Operation(summary = "Create ProductArea")
  73.     @ApiResponse(responseCode = "201", description = "ProductArea created")
  74.     @PostMapping
  75.     public ResponseEntity<ProductAreaResponse> createProductArea(@RequestBody ProductAreaRequest request) {
  76.         log.info("Create ProductArea");
  77.         var productArea = service.save(request);
  78.         return new ResponseEntity<>(convertProductAreaToReponse(productArea), HttpStatus.CREATED);
  79.     }

  80.     @Operation(summary = "Add teams to ProductArea")
  81.     @ApiResponse(description = "Added")
  82.     @PostMapping("/addteams")
  83.     public void addTeams(@RequestBody AddTeamsToProductAreaRequest request) {
  84.         service.addTeams(request);
  85.     }

  86.     @Operation(summary = "Update ProductArea")
  87.     @ApiResponse(description = "ProductArea updated")
  88.     @PutMapping("/{id}")
  89.     public ResponseEntity<ProductAreaResponse> updateProductArea(@PathVariable UUID id, @Valid @RequestBody ProductAreaRequest request) {
  90.         log.debug("Update ProductArea id={}", id);
  91.         if (!Objects.equals(id, request.getIdAsUUID())) {
  92.             throw new ValidationException(String.format("id mismatch in request %s and path %s", request.getId(), id));
  93.         }
  94.         var productArea = service.save(request);
  95.         return ResponseEntity.ok(convertProductAreaToReponse(productArea));
  96.     }

  97.     @Operation(summary = "Delete ProductArea")
  98.     @ApiResponse(description = "ProductArea deleted")
  99.     @DeleteMapping("/{id}")
  100.     public ResponseEntity<ProductAreaResponse> deleteProductAreaById(@PathVariable UUID id) {
  101.         log.info("Delete ProductArea id={}", id);
  102.         var productArea = service.delete(id);
  103.         return ResponseEntity.ok(convertProductAreaToReponse(productArea));
  104.     }

  105.     static class ProductAreaPageResponse extends RestResponsePage<ProductAreaResponse> {

  106.     }


  107.     private ProductAreaResponse convertProductAreaToReponse(ProductArea pa){
  108.         return pa.convertToResponse(teamCatalogProps.getDefaultProductareaUuid());
  109.     }

  110. }