AuditController.java

  1. package no.nav.data.common.auditing;

  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.auditing.domain.AuditVersion;
  7. import no.nav.data.common.auditing.domain.AuditVersionRepository;
  8. import no.nav.data.common.auditing.domain.MailLogRepository;
  9. import no.nav.data.common.auditing.dto.AuditLogResponse;
  10. import no.nav.data.common.auditing.dto.AuditResponse;
  11. import no.nav.data.common.auditing.dto.MailLogResponse;
  12. import no.nav.data.common.rest.PageParameters;
  13. import no.nav.data.common.rest.RestResponsePage;
  14. import no.nav.data.common.security.azure.support.MailLog;
  15. import no.nav.data.common.storage.StorageService;
  16. import no.nav.data.common.storage.domain.GenericStorage;
  17. import org.springdoc.core.annotations.ParameterObject;
  18. import org.springframework.data.domain.Page;
  19. import org.springframework.data.domain.Pageable;
  20. import org.springframework.http.HttpStatus;
  21. import org.springframework.http.ResponseEntity;
  22. import org.springframework.web.bind.annotation.GetMapping;
  23. import org.springframework.web.bind.annotation.PathVariable;
  24. import org.springframework.web.bind.annotation.RequestMapping;
  25. import org.springframework.web.bind.annotation.RequestParam;
  26. import org.springframework.web.bind.annotation.RestController;

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

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

  30. @Slf4j
  31. @RestController
  32. @RequestMapping("/audit")
  33. @Tag(name = "Audit")
  34. public class AuditController {

  35.     private final AuditVersionRepository repository;
  36.     private final StorageService storage;
  37.     private final MailLogRepository mailLogRepository;

  38.     public AuditController(AuditVersionRepository repository, StorageService storage, MailLogRepository mailLogRepository) {
  39.         this.repository = repository;
  40.         this.storage = storage;
  41.         this.mailLogRepository = mailLogRepository;
  42.     }

  43.     @Operation(summary = "Get Audit log")
  44.     @ApiResponse(description = "Audit log fetched")
  45.     @GetMapping
  46.     public ResponseEntity<RestResponsePage<AuditResponse>> getAll(@ParameterObject PageParameters paging, @RequestParam(required = false) String table) {
  47.         log.info("Received request for Audit {} table {}", paging, table);
  48.         Pageable pageable = paging.createSortedPageByFieldDescending(AuditVersion.Fields.time);
  49.         Page<AuditResponse> page;
  50.         if (table != null) {
  51.             page = repository.findByTable(table, pageable).map(AuditVersion::convertToResponse);
  52.         } else {
  53.             page = repository.findAll(pageable).map(AuditVersion::convertToResponse);
  54.         }
  55.         return new ResponseEntity<>(new RestResponsePage<>(page), HttpStatus.OK);
  56.     }

  57.     @Operation(summary = "Get Audit log for object")
  58.     @ApiResponse(description = "Audit log fetched")
  59.     @GetMapping("/log/{id}")
  60.     public ResponseEntity<AuditLogResponse> findForId(@PathVariable String id) {
  61.         log.info("Received request for Audit with the id={}", id);
  62.         List<AuditVersion> log = repository.findByTableIdOrderByTimeDesc(id);
  63.         return new ResponseEntity<>(new AuditLogResponse(id, convert(log, AuditVersion::convertToResponse)), HttpStatus.OK);
  64.     }

  65.     @Operation(summary = "Get mail log")
  66.     @ApiResponse(description = "Mail log fetched")
  67.     @GetMapping("/maillog")
  68.     public ResponseEntity<RestResponsePage<MailLogResponse>> getAllMailLog(@ParameterObject PageParameters paging,
  69.             @RequestParam(name = "filterOutUpdates", required = false, defaultValue = "false") boolean filterOutUpdates) {
  70.         log.info("Received request for MailLog {}", paging);
  71.         Pageable pageable = paging.createSortedPageByFieldDescending("LAST_MODIFIED_DATE");
  72.         var page = (filterOutUpdates ? mailLogRepository.findAllNonUpdates(pageable) : mailLogRepository.findAll(pageable))
  73.                 .map(GenericStorage::toMailLog).map(MailLog::convertToResponse);
  74.         return new ResponseEntity<>(new RestResponsePage<>(page), HttpStatus.OK);
  75.     }

  76.     @Operation(summary = "Get mail log for id")
  77.     @ApiResponse(description = "Audit log fetched")
  78.     @GetMapping("/maillog/{id}")
  79.     public ResponseEntity<MailLogResponse> findMailLog(@PathVariable UUID id) {
  80.         log.info("Received request for MailLog with the id={}", id);
  81.         return new ResponseEntity<>(storage.get(id, MailLog.class).convertToResponse(), HttpStatus.OK);
  82.     }

  83.     @Operation(summary = "Get mail log for user")
  84.     @ApiResponse(description = "Mail log fetched")
  85.     @GetMapping("/maillog/user/{user}")
  86.     public ResponseEntity<RestResponsePage<MailLogResponse>> getMailLogForUser(@PathVariable String user) {
  87.         log.info("Received request for MailLog for user {}", user);
  88.         var list = mailLogRepository.findByTo(user);
  89.         return new ResponseEntity<>(new RestResponsePage<>(convert(list, gs -> gs.toMailLog().convertToResponse())), HttpStatus.OK);
  90.     }

  91.     static class AuditLogPage extends RestResponsePage<AuditResponse> {

  92.     }

  93.     static class MailLogPage extends RestResponsePage<MailLogResponse> {

  94.     }

  95. }