You are here

class ConfigSyncSnapshotSubscriber in Configuration Synchronizer 8.2

Updates the snapshot when config is imported.

Hierarchy

  • class \Drupal\config_sync\EventSubscriber\ConfigSyncSnapshotSubscriber implements \Symfony\Component\EventDispatcher\EventSubscriberInterface

Expanded class hierarchy of ConfigSyncSnapshotSubscriber

1 string reference to 'ConfigSyncSnapshotSubscriber'
config_sync.services.yml in ./config_sync.services.yml
config_sync.services.yml
1 service uses ConfigSyncSnapshotSubscriber
config_sync_snapshot_subscriber in ./config_sync.services.yml
Drupal\config_sync\EventSubscriber\ConfigSyncSnapshotSubscriber

File

src/EventSubscriber/ConfigSyncSnapshotSubscriber.php, line 16

Namespace

Drupal\config_sync\EventSubscriber
View source
class ConfigSyncSnapshotSubscriber implements EventSubscriberInterface {

  /**
   * The snapshotter.
   *
   * @var \Drupal\config_sync\ConfigSyncSnapshotterInterface
   */
  protected $snapshotter;

  /**
   * The filter manager.
   *
   * @var \Drupal\config_filter\ConfigFilterManagerInterface
   */
  protected $configFilterManager;

  /**
   * The state storage object.
   *
   * @var \Drupal\Core\State\StateInterface
   */
  protected $state;

  /**
   * Constructs the ConfigSnapshotSubscriber object.
   *
   * @param \Drupal\config_sync\ConfigSyncSnapshotterInterface $snapshotter
   *   The snapshotter.
   * @param \Drupal\config_filter\ConfigFilterManagerInterface $config_filter_manager
   *   The filter manager.
   * @param \Drupal\Core\State\StateInterface $state
   *   The state storage object.
   */
  public function __construct(ConfigSyncSnapshotterInterface $snapshotter, ConfigFilterManagerInterface $config_filter_manager, StateInterface $state) {
    $this->snapshotter = $snapshotter;
    $this->configFilterManager = $config_filter_manager;
    $this->state = $state;
  }

  /**
   * Refreshes the snapshot for extensions whose updates were imported.
   *
   * @param \Drupal\Core\Config\ConfigImporterEvent $event
   *   The Event to process.
   */
  public function onConfigDistroImport(Event $event) {
    $filters = $this->configFilterManager
      ->getDefinitions();
    $extensions = [];

    // There is a filter for each extension that had updates.
    foreach ($filters as $filter) {

      // Only process our own filters.
      if ($filter['provider'] === 'config_sync' && $filter['status'] && in_array('config_distro.storage.distro', $filter['storages'])) {
        $extensions[$filter['extension_type']][] = $filter['extension_name'];
      }
    }
    foreach ($extensions as $type => $names) {
      $this->snapshotter
        ->refreshExtensionSnapshot($type, $names, ConfigSyncSnapshotterInterface::SNAPSHOT_MODE_IMPORT);
    }

    // Clear data on previously-selected plugins.
    $this->state
      ->delete('config_sync.plugins');
    $this->configFilterManager
      ->clearCachedDefinitions();
  }

  /**
   * Registers the methods in this class that should be listeners.
   *
   * @return array
   *   An array of event listener definitions.
   */
  public static function getSubscribedEvents() {
    $events[ConfigDistroEvents::IMPORT][] = [
      'onConfigDistroImport',
      40,
    ];
    return $events;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
ConfigSyncSnapshotSubscriber::$configFilterManager protected property The filter manager.
ConfigSyncSnapshotSubscriber::$snapshotter protected property The snapshotter.
ConfigSyncSnapshotSubscriber::$state protected property The state storage object.
ConfigSyncSnapshotSubscriber::getSubscribedEvents public static function Registers the methods in this class that should be listeners.
ConfigSyncSnapshotSubscriber::onConfigDistroImport public function Refreshes the snapshot for extensions whose updates were imported.
ConfigSyncSnapshotSubscriber::__construct public function Constructs the ConfigSnapshotSubscriber object.