2013-06-08 20:10:53 +00:00
|
|
|
<?php
|
2014-01-29 11:07:59 +00:00
|
|
|
|
2013-06-08 20:10:53 +00:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* Contains \Drupal\system\SystemConfigSubscriber.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Drupal\system;
|
|
|
|
|
2015-05-17 20:18:22 +00:00
|
|
|
use Drupal\Core\Config\ConfigEvents;
|
2013-06-08 20:10:53 +00:00
|
|
|
use Drupal\Core\Config\ConfigImporterEvent;
|
2015-05-17 20:18:22 +00:00
|
|
|
use Drupal\Core\StringTranslation\StringTranslationTrait;
|
|
|
|
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
|
2013-06-08 20:10:53 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* System Config subscriber.
|
|
|
|
*/
|
2015-05-17 20:18:22 +00:00
|
|
|
class SystemConfigSubscriber implements EventSubscriberInterface {
|
|
|
|
use StringTranslationTrait;
|
2013-06-08 20:10:53 +00:00
|
|
|
|
|
|
|
/**
|
2014-04-14 20:44:46 +00:00
|
|
|
* Checks that the configuration synchronization is valid.
|
|
|
|
*
|
2015-05-17 20:18:22 +00:00
|
|
|
* This event listener prevents deleting all configuration. If there is
|
|
|
|
* nothing to import then event propagation is stopped because there is no
|
|
|
|
* config import to validate.
|
2014-01-29 11:07:59 +00:00
|
|
|
*
|
2015-05-17 20:18:22 +00:00
|
|
|
* @param \Drupal\Core\Config\ConfigImporterEvent $event
|
2014-01-29 11:07:59 +00:00
|
|
|
* The config import event.
|
|
|
|
*/
|
2015-05-17 20:18:22 +00:00
|
|
|
public function onConfigImporterValidateNotEmpty(ConfigImporterEvent $event) {
|
2014-01-29 11:07:59 +00:00
|
|
|
$importList = $event->getConfigImporter()->getStorageComparer()->getSourceStorage()->listAll();
|
|
|
|
if (empty($importList)) {
|
2014-04-14 20:44:46 +00:00
|
|
|
$event->getConfigImporter()->logError($this->t('This import is empty and if applied would delete all of your configuration, so has been rejected.'));
|
2015-05-17 20:18:22 +00:00
|
|
|
$event->stopPropagation();
|
2014-04-14 20:44:46 +00:00
|
|
|
}
|
2015-05-17 20:18:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks that the configuration synchronization is valid.
|
|
|
|
*
|
|
|
|
* This event listener checks that the system.site:uuid's in the source and
|
|
|
|
* target match.
|
|
|
|
*
|
|
|
|
* @param ConfigImporterEvent $event
|
|
|
|
* The config import event.
|
|
|
|
*/
|
|
|
|
public function onConfigImporterValidateSiteUUID(ConfigImporterEvent $event) {
|
2014-04-14 20:44:46 +00:00
|
|
|
if (!$event->getConfigImporter()->getStorageComparer()->validateSiteUuid()) {
|
|
|
|
$event->getConfigImporter()->logError($this->t('Site UUID in source storage does not match the target storage.'));
|
2013-06-08 20:10:53 +00:00
|
|
|
}
|
|
|
|
}
|
2015-05-17 20:18:22 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
public static function getSubscribedEvents() {
|
|
|
|
// The empty check has a high priority so that is can stop propagation if
|
|
|
|
// there is no configuration to import.
|
|
|
|
$events[ConfigEvents::IMPORT_VALIDATE][] = array('onConfigImporterValidateNotEmpty', 512);
|
|
|
|
$events[ConfigEvents::IMPORT_VALIDATE][] = array('onConfigImporterValidateSiteUUID', 256);
|
|
|
|
return $events;
|
|
|
|
}
|
2013-06-08 20:10:53 +00:00
|
|
|
}
|