TagController.java

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

  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.extern.slf4j.Slf4j;
  6. import no.nav.data.common.exceptions.ValidationException;
  7. import no.nav.data.common.rest.RestResponsePage;
  8. import org.springframework.http.HttpStatus;
  9. import org.springframework.http.ResponseEntity;
  10. import org.springframework.web.bind.annotation.GetMapping;
  11. import org.springframework.web.bind.annotation.PathVariable;
  12. import org.springframework.web.bind.annotation.RequestMapping;
  13. import org.springframework.web.bind.annotation.RestController;

  14. import static no.nav.data.common.utils.StartsWithComparator.startsWith;
  15. import static no.nav.data.common.utils.StreamUtils.filter;
  16. import static org.apache.commons.lang3.StringUtils.containsIgnoreCase;

  17. @Slf4j
  18. @RestController
  19. @RequestMapping("/tag")
  20. @Tag(name = "Tag")
  21. public class TagController {

  22.     private final TagRepository tagRepository;

  23.     public TagController(TagRepository tagRepository) {
  24.         this.tagRepository = tagRepository;
  25.     }

  26.     @Operation(summary = "Get tags")
  27.     @ApiResponse(description = "Tags fetched")
  28.     @GetMapping
  29.     public ResponseEntity<RestResponsePage<String>> getTags() {
  30.         var tags = tagRepository.getTags();
  31.         return new ResponseEntity<>(new RestResponsePage<>(tags), HttpStatus.OK);
  32.     }

  33.     @Operation(summary = "Search tags")
  34.     @ApiResponse(description = "Tags fetched")
  35.     @GetMapping("/search/{name}")
  36.     public ResponseEntity<RestResponsePage<String>> searchTags(@PathVariable String name) {
  37.         String trimmedName = name.trim();
  38.         log.info("Tag search '{}'", trimmedName);
  39.         if (trimmedName.length() < 3) {
  40.             throw new ValidationException("Search resource must be at least 3 characters");
  41.         }
  42.         var tags = filter(tagRepository.getTags(), tag -> containsIgnoreCase(tag, trimmedName));
  43.         tags.sort(startsWith(trimmedName));
  44.         return new ResponseEntity<>(new RestResponsePage<>(tags), HttpStatus.OK);
  45.     }

  46.     static class TagPageResponse extends RestResponsePage<String> {

  47.     }

  48. }