You are here

DomainNegotiator.php in Domain Access 8

Namespace

Drupal\domain

File

domain/src/DomainNegotiator.php
View source
<?php

namespace Drupal\domain;

use Drupal\Core\Config\ConfigFactoryInterface;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Extension\ModuleHandlerInterface;
use Symfony\Component\HttpFoundation\RequestStack;

/**
 * {@inheritdoc}
 */
class DomainNegotiator implements DomainNegotiatorInterface {

  /**
   * Defines record matching types when dealing with request alteration.
   *
   * @see hook_domain_request_alter().
   *
   * @deprecated These constant will be replaced in the final release by
   * Drupal\domain\DomainNegotiatorInterface. Note that the new versions have
   * been renamed to maintain beta compatibility.
   */
  const DOMAIN_MATCH_NONE = 0;
  const DOMAIN_MATCH_EXACT = 1;
  const DOMAIN_MATCH_ALIAS = 2;

  /**
   * The HTTP_HOST value of the request.
   *
   * @var string
   */
  protected $httpHost;

  /**
   * The domain record returned by the lookup request.
   *
   * @var \Drupal\domain\DomainInterface
   */
  protected $domain;

  /**
   * The domain storage class.
   *
   * @var \Drupal\domain\DomainStorageInterface|null
   */
  protected $domainStorage;

  /**
   * The entity type manager.
   *
   * @var \Drupal\Core\Entity\EntityTypeManagerInterface
   */
  protected $entityTypeManager;

  /**
   * The request stack object.
   *
   * @var \Symfony\Component\HttpFoundation\RequestStack
   */
  protected $requestStack;

  /**
   * The module handler.
   *
   * @var \Drupal\Core\Extension\ModuleHandlerInterface
   */
  protected $moduleHandler;

  /**
   * The config factory.
   *
   * @var \Drupal\Core\Config\ConfigFactoryInterface
   */
  protected $configFactory;

  /**
   * Constructs a DomainNegotiator object.
   *
   * @param \Symfony\Component\HttpFoundation\RequestStack $requestStack
   *   The request stack object.
   * @param \Drupal\Core\Extension\ModuleHandlerInterface $module_handler
   *   The module handler.
   * @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
   *   The entity type manager.
   * @param \Drupal\Core\Config\ConfigFactoryInterface $config_factory
   *   The config factory.
   */
  public function __construct(RequestStack $requestStack, ModuleHandlerInterface $module_handler, EntityTypeManagerInterface $entity_type_manager, ConfigFactoryInterface $config_factory) {
    $this->requestStack = $requestStack;
    $this->moduleHandler = $module_handler;
    $this->entityTypeManager = $entity_type_manager;
    $this->configFactory = $config_factory;
  }

  /**
   * {@inheritdoc}
   */
  public function setRequestDomain($httpHost, $reset = FALSE) {

    // @TODO: Investigate caching methods.
    $this
      ->setHttpHost($httpHost);

    // Try to load a direct match.
    if ($domain = $this
      ->domainStorage()
      ->loadByHostname($httpHost)) {

      // If the load worked, set an exact match flag for the hook.
      $domain
        ->setMatchType(DomainNegotiatorInterface::DOMAIN_MATCHED_EXACT);
    }
    else {
      $values = [
        'hostname' => $httpHost,
      ];

      /** @var \Drupal\domain\DomainInterface $domain */
      $domain = $this
        ->domainStorage()
        ->create($values);
      $domain
        ->setMatchType(DomainNegotiatorInterface::DOMAIN_MATCHED_NONE);
    }

    // Now check with modules (like Domain Alias) that register alternate
    // lookup systems with the main module.
    $this->moduleHandler
      ->alter('domain_request', $domain);

    // We must have registered a valid id, else the request made no match.
    if (!empty($domain
      ->id())) {
      $this
        ->setActiveDomain($domain);
    }
    elseif ($domain = $this
      ->domainStorage()
      ->loadDefaultDomain()) {
      $this->moduleHandler
        ->alter('domain_request', $domain);
      $domain
        ->setMatchType(DomainNegotiatorInterface::DOMAIN_MATCHED_NONE);
      if (!empty($domain
        ->id())) {
        $this
          ->setActiveDomain($domain);
      }
    }
  }

  /**
   * {@inheritdoc}
   */
  public function setActiveDomain(DomainInterface $domain) {

    // @TODO: caching
    $this->domain = $domain;
  }

  /**
   * Determine the active domain.
   */
  protected function negotiateActiveDomain() {
    $httpHost = $this
      ->negotiateActiveHostname();
    $this
      ->setRequestDomain($httpHost);
    return $this->domain;
  }

  /**
   * {@inheritdoc}
   */
  public function getActiveDomain($reset = FALSE) {
    if ($reset) {
      $this
        ->negotiateActiveDomain();
    }
    return $this->domain;
  }

  /**
   * {@inheritdoc}
   */
  public function getActiveId() {
    return $this->domain
      ->id();
  }

  /**
   * {@inheritdoc}
   */
  public function negotiateActiveHostname() {
    if ($request = $this->requestStack
      ->getCurrentRequest()) {
      $httpHost = $request
        ->getHttpHost();
    }
    else {
      $httpHost = $_SERVER['HTTP_HOST'] ?? NULL;
    }
    $hostname = !empty($httpHost) ? $httpHost : 'localhost';
    return $this
      ->domainStorage()
      ->prepareHostname($hostname);
  }

  /**
   * {@inheritdoc}
   */
  public function setHttpHost($httpHost) {
    $this->httpHost = $httpHost;
  }

  /**
   * {@inheritdoc}
   */
  public function getHttpHost() {
    return $this->httpHost;
  }

  /**
   * {@inheritdoc}
   */
  public function isRegisteredDomain($hostname) {

    // Direct hostname match always passes.
    if ($domain = $this
      ->domainStorage()
      ->loadByHostname($hostname)) {
      return TRUE;
    }

    // Check for registered alias matches.
    $values = [
      'hostname' => $hostname,
    ];

    /** @var \Drupal\domain\DomainInterface $domain */
    $domain = $this
      ->domainStorage()
      ->create($values);
    $domain
      ->setMatchType(DomainNegotiatorInterface::DOMAIN_MATCHED_NONE);

    // Now check with modules (like Domain Alias) that register alternate
    // lookup systems with the main module.
    $this->moduleHandler
      ->alter('domain_request', $domain);

    // We must have registered a valid id, else the request made no match.
    if (!empty($domain
      ->id())) {
      return TRUE;
    }
    return FALSE;
  }

  /**
   * Retrieves the domain storage handler.
   *
   * @return \Drupal\domain\DomainStorageInterface
   *   The domain storage handler.
   */
  protected function domainStorage() {
    if (!$this->domainStorage) {
      $this->domainStorage = $this->entityTypeManager
        ->getStorage('domain');
    }
    return $this->domainStorage;
  }

}

Classes

Namesort descending Description
DomainNegotiator