From fe2d45b2d1198804da2d89f5b5fea40d91200e65 Mon Sep 17 00:00:00 2001 From: Ted Bowman <ted+git@tedbow.com> Date: Tue, 6 Dec 2022 14:29:18 -0500 Subject: [PATCH] subscribe to preapply --- package_manager/src/Validator/ComposerExecutableValidator.php | 2 ++ package_manager/src/Validator/ComposerJsonExistsValidator.php | 2 ++ package_manager/src/Validator/ComposerPatchesValidator.php | 2 ++ package_manager/src/Validator/ComposerSettingsValidator.php | 2 ++ package_manager/src/Validator/DiskSpaceValidator.php | 2 ++ package_manager/src/Validator/EnvironmentSupportValidator.php | 2 ++ package_manager/src/Validator/MultisiteValidator.php | 2 ++ package_manager/src/Validator/SettingsValidator.php | 2 ++ package_manager/src/Validator/WritableFileSystemValidator.php | 2 ++ src/Validator/CronServerValidator.php | 2 ++ src/Validator/XdebugValidator.php | 2 ++ 11 files changed, 22 insertions(+) diff --git a/package_manager/src/Validator/ComposerExecutableValidator.php b/package_manager/src/Validator/ComposerExecutableValidator.php index 56ca62ffaa..af61765cc2 100644 --- a/package_manager/src/Validator/ComposerExecutableValidator.php +++ b/package_manager/src/Validator/ComposerExecutableValidator.php @@ -7,6 +7,7 @@ namespace Drupal\package_manager\Validator; use Composer\Semver\Semver; use Drupal\Core\Extension\ModuleHandlerInterface; use Drupal\Core\Url; +use Drupal\package_manager\Event\PreApplyEvent; use Drupal\package_manager\Event\PreCreateEvent; use Drupal\package_manager\Event\PreOperationStageEvent; use Drupal\Core\StringTranslation\StringTranslationTrait; @@ -129,6 +130,7 @@ class ComposerExecutableValidator implements EventSubscriberInterface { public static function getSubscribedEvents(): array { return [ PreCreateEvent::class => 'validateStagePreOperation', + PreApplyEvent::class => 'validateStagePreOperation', StatusCheckEvent::class => 'validateStagePreOperation', ]; } diff --git a/package_manager/src/Validator/ComposerJsonExistsValidator.php b/package_manager/src/Validator/ComposerJsonExistsValidator.php index 9542c70004..c10fe88fde 100644 --- a/package_manager/src/Validator/ComposerJsonExistsValidator.php +++ b/package_manager/src/Validator/ComposerJsonExistsValidator.php @@ -6,6 +6,7 @@ namespace Drupal\package_manager\Validator; use Drupal\Core\StringTranslation\StringTranslationTrait; use Drupal\Core\StringTranslation\TranslationInterface; +use Drupal\package_manager\Event\PreApplyEvent; use Symfony\Component\EventDispatcher\EventSubscriberInterface; use Drupal\package_manager\Event\PreCreateEvent; use Drupal\package_manager\Event\PreOperationStageEvent; @@ -52,6 +53,7 @@ final class ComposerJsonExistsValidator implements EventSubscriberInterface { // @see \Drupal\package_manager\Validator\EnvironmentSupportValidator return [ PreCreateEvent::class => ['validateComposerJson', 190], + PreApplyEvent::class => ['validateComposerJson', 190], StatusCheckEvent::class => ['validateComposerJson', 190], ]; } diff --git a/package_manager/src/Validator/ComposerPatchesValidator.php b/package_manager/src/Validator/ComposerPatchesValidator.php index 464b19fbc2..65ca7c4c8d 100644 --- a/package_manager/src/Validator/ComposerPatchesValidator.php +++ b/package_manager/src/Validator/ComposerPatchesValidator.php @@ -5,6 +5,7 @@ declare(strict_types = 1); namespace Drupal\package_manager\Validator; use Drupal\Core\StringTranslation\StringTranslationTrait; +use Drupal\package_manager\Event\PreApplyEvent; use Drupal\package_manager\Event\PreCreateEvent; use Drupal\package_manager\Event\PreOperationStageEvent; use Drupal\package_manager\Event\StatusCheckEvent; @@ -46,6 +47,7 @@ class ComposerPatchesValidator implements EventSubscriberInterface { public static function getSubscribedEvents(): array { return [ PreCreateEvent::class => 'validateStagePreOperation', + PreApplyEvent::class => 'validateStagePreOperation', StatusCheckEvent::class => 'validateStagePreOperation', ]; } diff --git a/package_manager/src/Validator/ComposerSettingsValidator.php b/package_manager/src/Validator/ComposerSettingsValidator.php index 8a712d278a..747a2dfa69 100644 --- a/package_manager/src/Validator/ComposerSettingsValidator.php +++ b/package_manager/src/Validator/ComposerSettingsValidator.php @@ -6,6 +6,7 @@ namespace Drupal\package_manager\Validator; use Drupal\Core\StringTranslation\StringTranslationTrait; use Drupal\Core\StringTranslation\TranslationInterface; +use Drupal\package_manager\Event\PreApplyEvent; use Drupal\package_manager\Event\PreCreateEvent; use Drupal\package_manager\Event\PreOperationStageEvent; use Drupal\package_manager\Event\StatusCheckEvent; @@ -57,6 +58,7 @@ final class ComposerSettingsValidator implements EventSubscriberInterface { public static function getSubscribedEvents(): array { return [ PreCreateEvent::class => 'validateStagePreOperation', + PreApplyEvent::class => 'validateStagePreOperation', StatusCheckEvent::class => 'validateStagePreOperation', ]; } diff --git a/package_manager/src/Validator/DiskSpaceValidator.php b/package_manager/src/Validator/DiskSpaceValidator.php index dba29845ee..b372674871 100644 --- a/package_manager/src/Validator/DiskSpaceValidator.php +++ b/package_manager/src/Validator/DiskSpaceValidator.php @@ -4,6 +4,7 @@ declare(strict_types = 1); namespace Drupal\package_manager\Validator; +use Drupal\package_manager\Event\PreApplyEvent; use Drupal\package_manager\Event\PreCreateEvent; use Drupal\package_manager\Event\PreOperationStageEvent; use Drupal\Component\FileSystem\FileSystem; @@ -169,6 +170,7 @@ class DiskSpaceValidator implements EventSubscriberInterface { public static function getSubscribedEvents(): array { return [ PreCreateEvent::class => 'validateStagePreOperation', + PreApplyEvent::class => 'validateStagePreOperation', StatusCheckEvent::class => 'validateStagePreOperation', ]; } diff --git a/package_manager/src/Validator/EnvironmentSupportValidator.php b/package_manager/src/Validator/EnvironmentSupportValidator.php index 090a8d1da4..d1338bb308 100644 --- a/package_manager/src/Validator/EnvironmentSupportValidator.php +++ b/package_manager/src/Validator/EnvironmentSupportValidator.php @@ -6,6 +6,7 @@ namespace Drupal\package_manager\Validator; use Drupal\Core\Link; use Drupal\Core\StringTranslation\StringTranslationTrait; +use Drupal\package_manager\Event\PreApplyEvent; use Drupal\package_manager\Event\PreCreateEvent; use Drupal\package_manager\Event\PreOperationStageEvent; use Drupal\package_manager\Event\StatusCheckEvent; @@ -66,6 +67,7 @@ final class EnvironmentSupportValidator implements EventSubscriberInterface { public static function getSubscribedEvents(): array { return [ PreCreateEvent::class => ['validateStagePreOperation', 200], + PreApplyEvent::class => ['validateStagePreOperation', 200], StatusCheckEvent::class => ['validateStagePreOperation', 200], ]; } diff --git a/package_manager/src/Validator/MultisiteValidator.php b/package_manager/src/Validator/MultisiteValidator.php index b4437f89a4..968c2cf59f 100644 --- a/package_manager/src/Validator/MultisiteValidator.php +++ b/package_manager/src/Validator/MultisiteValidator.php @@ -6,6 +6,7 @@ namespace Drupal\package_manager\Validator; use Drupal\Core\StringTranslation\StringTranslationTrait; use Drupal\Core\StringTranslation\TranslationInterface; +use Drupal\package_manager\Event\PreApplyEvent; use Drupal\package_manager\Event\PreCreateEvent; use Drupal\package_manager\Event\PreOperationStageEvent; use Drupal\package_manager\Event\StatusCheckEvent; @@ -77,6 +78,7 @@ final class MultisiteValidator implements EventSubscriberInterface { public static function getSubscribedEvents(): array { return [ PreCreateEvent::class => 'validateStagePreOperation', + PreApplyEvent::class => 'validateStagePreOperation', StatusCheckEvent::class => 'validateStagePreOperation', ]; } diff --git a/package_manager/src/Validator/SettingsValidator.php b/package_manager/src/Validator/SettingsValidator.php index be93a75283..697b0201fd 100644 --- a/package_manager/src/Validator/SettingsValidator.php +++ b/package_manager/src/Validator/SettingsValidator.php @@ -7,6 +7,7 @@ namespace Drupal\package_manager\Validator; use Drupal\Core\Site\Settings; use Drupal\Core\StringTranslation\StringTranslationTrait; use Drupal\Core\StringTranslation\TranslationInterface; +use Drupal\package_manager\Event\PreApplyEvent; use Drupal\package_manager\Event\PreCreateEvent; use Drupal\package_manager\Event\PreOperationStageEvent; use Drupal\package_manager\Event\StatusCheckEvent; @@ -51,6 +52,7 @@ final class SettingsValidator implements EventSubscriberInterface { public static function getSubscribedEvents(): array { return [ PreCreateEvent::class => 'validateStagePreOperation', + PreApplyEvent::class => 'validateStagePreOperation', StatusCheckEvent::class => 'validateStagePreOperation', ]; } diff --git a/package_manager/src/Validator/WritableFileSystemValidator.php b/package_manager/src/Validator/WritableFileSystemValidator.php index 333a24afe8..1f0571b3b9 100644 --- a/package_manager/src/Validator/WritableFileSystemValidator.php +++ b/package_manager/src/Validator/WritableFileSystemValidator.php @@ -5,6 +5,7 @@ declare(strict_types = 1); namespace Drupal\package_manager\Validator; use Drupal\Core\StringTranslation\TranslationInterface; +use Drupal\package_manager\Event\PreApplyEvent; use Drupal\package_manager\Event\PreCreateEvent; use Drupal\package_manager\Event\PreOperationStageEvent; use Drupal\Core\StringTranslation\StringTranslationTrait; @@ -99,6 +100,7 @@ class WritableFileSystemValidator implements EventSubscriberInterface { public static function getSubscribedEvents(): array { return [ PreCreateEvent::class => 'validateStagePreOperation', + PreApplyEvent::class => 'validateStagePreOperation', StatusCheckEvent::class => 'validateStagePreOperation', ]; } diff --git a/src/Validator/CronServerValidator.php b/src/Validator/CronServerValidator.php index e03f4966e7..4e4829db30 100644 --- a/src/Validator/CronServerValidator.php +++ b/src/Validator/CronServerValidator.php @@ -9,6 +9,7 @@ use Drupal\Core\Config\ConfigFactoryInterface; use Drupal\Core\Extension\ModuleHandlerInterface; use Drupal\Core\StringTranslation\StringTranslationTrait; use Drupal\Core\Url; +use Drupal\package_manager\Event\PreApplyEvent; use Drupal\package_manager\Event\PreCreateEvent; use Drupal\package_manager\Event\PreOperationStageEvent; use Drupal\package_manager\Event\StatusCheckEvent; @@ -118,6 +119,7 @@ final class CronServerValidator implements EventSubscriberInterface { public static function getSubscribedEvents(): array { return [ PreCreateEvent::class => 'checkServer', + PreApplyEvent::class => 'checkServer', StatusCheckEvent::class => 'checkServer', ]; } diff --git a/src/Validator/XdebugValidator.php b/src/Validator/XdebugValidator.php index ec6ff6513c..156ae7aaf7 100644 --- a/src/Validator/XdebugValidator.php +++ b/src/Validator/XdebugValidator.php @@ -4,6 +4,7 @@ declare(strict_types = 1); namespace Drupal\automatic_updates\Validator; +use Drupal\package_manager\Event\PreApplyEvent; use Symfony\Component\EventDispatcher\EventSubscriberInterface; use Drupal\automatic_updates\CronUpdater; use Drupal\automatic_updates\Updater; @@ -80,6 +81,7 @@ final class XdebugValidator implements EventSubscriberInterface { public static function getSubscribedEvents(): array { return [ PreCreateEvent::class => 'checkForXdebug', + PreApplyEvent::class => 'checkForXdebug', StatusCheckEvent::class => 'checkForXdebug', ]; } -- GitLab