You are here

class InitSubscriber in Advanced CSS/JS Aggregation 8.2

Same name in this branch
  1. 8.2 advagg_mod/src/EventSubscriber/InitSubscriber.php \Drupal\advagg_mod\EventSubscriber\InitSubscriber
  2. 8.2 advagg_bundler/src/EventSubscriber/InitSubscriber.php \Drupal\advagg_bundler\EventSubscriber\InitSubscriber
Same name and namespace in other branches
  1. 8.4 advagg_mod/src/EventSubscriber/InitSubscriber.php \Drupal\advagg_mod\EventSubscriber\InitSubscriber
  2. 8.3 advagg_mod/src/EventSubscriber/InitSubscriber.php \Drupal\advagg_mod\EventSubscriber\InitSubscriber

Perform initialization tasks for advagg_mod.

Hierarchy

  • class \Drupal\advagg_mod\EventSubscriber\InitSubscriber implements \Symfony\Component\EventDispatcher\EventSubscriberInterface

Expanded class hierarchy of InitSubscriber

1 string reference to 'InitSubscriber'
advagg_mod.services.yml in advagg_mod/advagg_mod.services.yml
advagg_mod/advagg_mod.services.yml
1 service uses InitSubscriber
init_subscriber in advagg_mod/advagg_mod.services.yml
Drupal\advagg_mod\EventSubscriber\InitSubscriber

File

advagg_mod/src/EventSubscriber/InitSubscriber.php, line 12

Namespace

Drupal\advagg_mod\EventSubscriber
View source
class InitSubscriber implements EventSubscriberInterface {

  /**
   * A config object for the advagg_mod configuration.
   *
   * @var \Drupal\Core\Config\Config
   */
  protected $config;

  /**
   * An editable config object for the advagg configuration.
   *
   * @var \Drupal\Core\Config\Config
   */
  protected $advaggConfig;

  /**
   * Constructs the Subscriber object.
   *
   * @param \Drupal\Core\Config\ConfigFactoryInterface $config_factory
   *   A config factory for retrieving required config objects.
   */
  public function __construct(ConfigFactoryInterface $config_factory) {
    $this->config = $config_factory
      ->get('advagg.settings');
    $this->advaggConfig = $config_factory
      ->getEditable('advagg.settings');
  }

  /**
   * {@inheritdoc}
   */
  public static function getSubscribedEvents() {
    return [
      KernelEvents::REQUEST => [
        'onEvent',
        0,
      ],
    ];
  }

  /**
   * Synchronize global_counter variable between sites.
   *
   * Only if using unified_multisite_dir.
   */
  public function onEvent() {
    $dir = rtrim($this->config
      ->get('unified_multisite_dir'), '/');
    if (empty($dir) || !file_exists($dir) || !is_dir($dir)) {
      return;
    }
    $counter_filename = $dir . '/_global_counter';
    $local_counter = advagg_get_global_counter();
    if (!file_exists($counter_filename)) {
      file_unmanaged_save_data($local_counter, $counter_filename, FILE_EXISTS_REPLACE);
    }
    else {
      $shared_counter = (int) file_get_contents($counter_filename);
      if ($shared_counter == $local_counter) {

        // Counters are the same, return.
        return;
      }
      elseif ($shared_counter < $local_counter) {

        // Local counter is higher, update saved file and return.
        ile_unmanaged_save_data($local_counter, $counter_filename, FILE_EXISTS_REPLACE);
        return;
      }
      elseif ($shared_counter > $local_counter) {

        // Shared counter is higher, update local copy and return.
        $this->advaggConfig
          ->set('global_counter', $shared_counter)
          ->save();
        return;
      }
    }
  }

}

Members

Namesort descending Modifiers Type Description Overrides
InitSubscriber::$advaggConfig protected property An editable config object for the advagg configuration.
InitSubscriber::$config protected property A config object for the advagg_mod configuration.
InitSubscriber::getSubscribedEvents public static function Returns an array of event names this subscriber wants to listen to.
InitSubscriber::onEvent public function Synchronize global_counter variable between sites.
InitSubscriber::__construct public function Constructs the Subscriber object.