relaxed-8.x-1.x-dev/src/Plugin/rest/resource/EnsureFullCommitResource.php
src/Plugin/rest/resource/EnsureFullCommitResource.php
<?php namespace Drupal\relaxed\Plugin\rest\resource; use Drupal\Core\Asset\AssetCollectionOptimizerInterface; use Drupal\Core\Cache\Cache; use Drupal\Core\Extension\ModuleHandlerInterface; use Drupal\multiversion\Entity\WorkspaceInterface; use Drupal\relaxed\Event\RelaxedEnsureFullCommitEvent; use Drupal\relaxed\Event\RelaxedEvents; use Drupal\rest\ModifiedResourceResponse; use Symfony\Component\EventDispatcher\EventDispatcherInterface; use Symfony\Component\HttpKernel\Exception\BadRequestHttpException; use Psr\Log\LoggerInterface; use Symfony\Component\DependencyInjection\ContainerInterface; /** * Ensures the replication is complete. * * This resource does not do anything since Drupal does not (yet) have a concept * of transactions across multiple requests. This resource only exists to comply * with the replication protocol. * * @RestResource( * id = "relaxed:ensure_full_commit", * label = "Ensure Full Commit", * serialization_class = { * "canonical" = "Drupal\multiversion\Entity\WorkspaceInterface", * }, * uri_paths = { * "canonical" = "/{db}/_ensure_full_commit", * } * ) */ class EnsureFullCommitResource extends ResourceBase { /** * The Module Handler. * * @var \Drupal\Core\Extension\ModuleHandlerInterface */ protected $moduleHandler; /** * The CSS Collection Optimizer. * * @var \Drupal\Core\Asset\AssetCollectionOptimizerInterface */ protected $cssCollectionOptimizer; /** * The JS Collection Optimizer. * * @var \Drupal\Core\Asset\AssetCollectionOptimizerInterface */ protected $jsCollectionOptimizer; /** * The event dispatcher service. * * @var \Symfony\Component\EventDispatcher\EventDispatcherInterface */ protected $eventDispatcher; /** * Constructs a Drupal\rest\Plugin\ResourceBase object. * * @param array $configuration * A configuration array containing information about the plugin instance. * @param string $plugin_id * The plugin_id for the plugin instance. * @param mixed $plugin_definition * The plugin implementation definition. * @param array $serializer_formats * The available serialization formats. * @param \Psr\Log\LoggerInterface $logger * A logger instance. * @param \Drupal\Core\Extension\ModuleHandlerInterface $module_handler * The Module Handler. * @param \Drupal\Core\Asset\AssetCollectionOptimizerInterface $css_collection_optimizer * The CSS Collection Optimizer. * @param \Drupal\Core\Asset\AssetCollectionOptimizerInterface $js_collection_optimizer * The JS Collection Optimizer. * @param \Symfony\Component\EventDispatcher\EventDispatcherInterface $event_dispatcher * The event dispatcher service. */ public function __construct(array $configuration, $plugin_id, $plugin_definition, array $serializer_formats, LoggerInterface $logger, ModuleHandlerInterface $module_handler, AssetCollectionOptimizerInterface $css_collection_optimizer, AssetCollectionOptimizerInterface $js_collection_optimizer, EventDispatcherInterface $event_dispatcher) { parent::__construct($configuration, $plugin_id, $plugin_definition, $serializer_formats, $logger); $this->moduleHandler = $module_handler; $this->cssCollectionOptimizer = $css_collection_optimizer; $this->jsCollectionOptimizer = $js_collection_optimizer; $this->eventDispatcher = $event_dispatcher; } /** * {@inheritdoc} */ public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) { return new static( $configuration, $plugin_id, $plugin_definition, $container->getParameter('serializer.formats'), $container->get('logger.factory')->get('rest'), $container->get('module_handler'), $container->get('asset.css.collection_optimizer'), $container->get('asset.js.collection_optimizer'), $container->get('event_dispatcher') ); } /** * Handle the post request. * * @param \Drupal\multiversion\Entity\WorkspaceInterface $workspace * The Workspace the replication is was. * * @return \Drupal\rest\ModifiedResourceResponse * The response. */ public function post($workspace) { if (!$workspace instanceof WorkspaceInterface) { throw new BadRequestHttpException(t('Invalid workspace name.')); } $response_data = [ 'ok' => TRUE, 'instance_start_time' => (string) $workspace->getStartTime(), ]; // Flush all persistent caches. // This is executed based on old/previously known information, which is // sufficient, since new extensions cannot have any primed caches yet. $this->moduleHandler->invokeAll('cache_flush'); foreach (Cache::getBins() as $service_id => $cache_backend) { $cache_backend->deleteAll(); } // Flush asset file caches. $this->cssCollectionOptimizer->deleteAll(); $this->jsCollectionOptimizer->deleteAll(); _drupal_flush_css_js(); $this->eventDispatcher->dispatch(RelaxedEvents::REPLICATION_ENSURE_FULL_COMMIT, new RelaxedEnsureFullCommitEvent($workspace)); return new ModifiedResourceResponse($response_data, 201); } }