StorageService.java

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

  2. import lombok.extern.slf4j.Slf4j;
  3. import no.nav.data.common.exceptions.NotFoundException;
  4. import no.nav.data.common.storage.domain.DomainObject;
  5. import no.nav.data.common.storage.domain.GenericStorage;
  6. import no.nav.data.common.storage.domain.GenericStorageRepository;
  7. import no.nav.data.common.storage.domain.TypeRegistration;
  8. import org.springframework.stereotype.Service;
  9. import org.springframework.transaction.annotation.Transactional;
  10. import org.springframework.util.Assert;

  11. import java.time.LocalDateTime;
  12. import java.util.Collection;
  13. import java.util.List;
  14. import java.util.Optional;
  15. import java.util.UUID;

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

  17. @Slf4j
  18. @Service
  19. @Transactional
  20. public class StorageService {

  21.     private final GenericStorageRepository repository;

  22.     public StorageService(GenericStorageRepository repository) {
  23.         this.repository = repository;
  24.     }


  25.     public <T extends DomainObject> T get(UUID uuid, String type) {
  26.         return get(uuid, TypeRegistration.classFrom(type));

  27.     }

  28.     public <T extends DomainObject> T get(UUID uuid, Class<T> type) {
  29.         return getStorage(uuid, type).getDomainObjectData(type);
  30.     }

  31.     /**
  32.      * Batch save, does not work for existing objects
  33.      */
  34.     public <T extends DomainObject> List<GenericStorage> saveAll(Collection<T> objects) {
  35.         Assert.isTrue(objects.stream().noneMatch(o -> o.getId() != null), "Cannot use saveAll on existing object");
  36.         var storages = convert(objects, o -> new GenericStorage().generateId().setDomainObjectData(o));
  37.         return repository.saveAll(storages);
  38.     }

  39.     public <T extends DomainObject> T save(T object) {
  40.         var storage = object.getId() != null ? getStorage(object.getId(), object.getClass()) : new GenericStorage().generateId();
  41.         storage.setDomainObjectData(object);
  42.         var saved = repository.save(storage);
  43.         //noinspection unchecked
  44.         return (T) saved.getDomainObjectData(object.getClass());
  45.     }

  46.     public <T extends DomainObject> void deleteAll(List<T> objects) {
  47.         repository.deleteAll(convert(objects, DomainObject::getId));
  48.     }

  49.     private GenericStorage getStorage(UUID uuid, Class<? extends DomainObject> type) {
  50.         GenericStorage storage = repository.findById(uuid).orElseThrow(() -> new NotFoundException("Couldn't find " + TypeRegistration.typeOf(type) + " with id " + uuid));
  51.         storage.validateType(type);
  52.         return storage;
  53.     }

  54.     public <T extends DomainObject> boolean exists(UUID uuid, Class<T> type) {
  55.         return repository.existsByIdAndType(uuid, TypeRegistration.typeOf(type));
  56.     }

  57.     public boolean exists(UUID uuid, String type) {
  58.         return repository.existsByIdAndType(uuid, type);
  59.     }

  60.     /**
  61.      * Will not throw if object does not exist
  62.      */
  63.     public <T extends DomainObject> void softDelete(UUID id, Class<T> type) {
  64.         repository.deleteByIdAndType(id, TypeRegistration.typeOf(type));
  65.     }

  66.     public <T extends DomainObject> void delete(T item) {
  67.         repository.deleteById(item.getId());
  68.     }

  69.     public <T extends DomainObject> T delete(UUID id, Class<T> type) {
  70.         var storage = getStorage(id, type);
  71.         repository.delete(storage);
  72.         return storage.getDomainObjectData(type);
  73.     }

  74.     public <T extends DomainObject> List<T> getAll(Class<T> type) {
  75.         return convert(repository.findAllByType(TypeRegistration.typeOf(type)), gs -> gs.getDomainObjectData(type));
  76.     }

  77.     public <T extends DomainObject> Optional<GenericStorage> getSingleton(Class<T> type) {
  78.         return repository.findByType(TypeRegistration.typeOf(type));
  79.     }

  80.     public long count(Class<? extends DomainObject> aClass) {
  81.         return repository.countByType(TypeRegistration.typeOf(aClass));
  82.     }

  83.     public long deleteCreatedOlderThan(Class<? extends DomainObject> aClass, LocalDateTime time) {
  84.         return repository.deleteByTypeAndCreatedDateBefore(TypeRegistration.typeOf(aClass), time);
  85.     }
  86. }