class HostMultipleGreylistConfirm in http:BL 8
Provides a multiple host grey-listing (and un-banning) confirmation form.
Hierarchy
- class \Drupal\Core\Form\FormBase implements ContainerInjectionInterface, FormInterface uses DependencySerializationTrait, LoggerChannelTrait, MessengerTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTrait- class \Drupal\Core\Form\ConfirmFormBase implements ConfirmFormInterface- class \Drupal\httpbl\Form\HostMultipleGreylistConfirm
 
 
- class \Drupal\Core\Form\ConfirmFormBase implements ConfirmFormInterface
Expanded class hierarchy of HostMultipleGreylistConfirm
1 string reference to 'HostMultipleGreylistConfirm'
File
- src/Form/ HostMultipleGreylistConfirm.php, line 18 
Namespace
Drupal\httpbl\FormView source
class HostMultipleGreylistConfirm extends ConfirmFormBase {
  /**
   * The array of hosts to greylist.
   *
   * @var string[][]
   */
  protected $hostInfo = array();
  /**
   * The tempstore factory.
   *
   * @var \Drupal\user\PrivateTempStoreFactory
   */
  protected $tempStoreFactory;
  /**
   * The host entity and storage manager.
   *
   * @var \Drupal\Core\Entity\EntityTypeManagerInterface
   */
  protected $manager;
  /**
   * The ban IP manager.
   *
   * @var \Drupal\ban\BanIpManagerInterface
   */
  protected $banManager;
  /**
   * A logger arbitration instance.
   *
   * @var \Drupal\httpbl\Logger\HttpblLogTrapperInterface
   */
  protected $logTrapper;
  /**
   * Constructs a new HostMultipleGreylistConfirm form object.
   *
   * @param \Drupal\user\PrivateTempStoreFactory $temp_store_factory
   *   The tempstore factory.
   * @param \Drupal\Core\Entity\EntityTypeManagerInterface $manager
   *   The entity manager.
   * @param \Drupal\ban\BanIpManagerInterface $banManager
   *   The Ban manager.
   * @param \Drupal\httpbl\Logger\HttpblLogTrapperInterface $logTrapper
   *   A logger arbitration instance.
   */
  public function __construct(PrivateTempStoreFactory $temp_store_factory, EntityTypeManagerInterface $manager, BanIpManagerInterface $banManager, HttpblLogTrapperInterface $logTrapper) {
    $this->tempStoreFactory = $temp_store_factory;
    //Get the storage info from the EntityTypeManager.
    $this->storage = $manager
      ->getStorage('host');
    $this->banManager = $banManager;
    $this->logTrapper = $logTrapper;
  }
  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container) {
    return new static($container
      ->get('user.private_tempstore'), $container
      ->get('entity_type.manager'), $container
      ->get('ban.ip_manager'), $container
      ->get('httpbl.logtrapper'));
  }
  /**
   * {@inheritdoc}
   */
  public function getFormId() {
    return 'host_multiple_greylist_confirm';
  }
  /**
   * {@inheritdoc}
   */
  public function getDescription() {
    return $this
      ->t('<p>Any banned hosts will be un-banned.  Already grey-listed hosts will be ignored.</p><p>These actions are un-doable by using other actions*.</p>');
  }
  /**
   * {@inheritdoc}
   */
  public function getQuestion() {
    return $this
      ->formatPlural(count($this->hostInfo), 'Are you sure you want to grey-list this host?', 'Are you sure you want to grey-list these hosts?');
  }
  /**
   * {@inheritdoc}
   */
  public function getCancelUrl() {
    return new Url('entity.host.collection');
  }
  /**
   * {@inheritdoc}
   */
  public function getConfirmText() {
    return t('Grey-list');
  }
  /**
   * {@inheritdoc}
   */
  public function buildForm(array $form, FormStateInterface $form_state) {
    // Retrieve temporary storage.
    $this->hostInfo = $this->tempStoreFactory
      ->get('host_multiple_greylist_confirm')
      ->get(\Drupal::currentUser()
      ->id());
    if (empty($this->hostInfo)) {
      return new RedirectResponse($this
        ->getCancelUrl()
        ->setAbsolute()
        ->toString());
    }
    /** @var \Drupal\httpbl\HostInterface[] $hosts */
    $hosts = $this->storage
      ->loadMultiple(array_keys($this->hostInfo));
    $items = [];
    // Prepare a list of any matching, grey-listed IPs, so we can include the
    // fact they are already grey-listed in the confirmation message.
    foreach ($this->hostInfo as $id => $host_ips) {
      foreach ($host_ips as $host_ip) {
        $host = $hosts[$id];
        $host_status = $host
          ->getHostStatus();
        $key = $id . ':' . $host_ip;
        $default_key = $id . ':' . $host_ip;
        // If we have any already grey-listed hosts, we theme notice they will
        // be ignored.
        if ($host_status == HTTPBL_LIST_GREY) {
          $items[$default_key] = [
            'label' => [
              '#markup' => $this
                ->t('Ignoring @label - <em> already grey-listed.</em>', [
                '@label' => $host
                  ->label(),
              ]),
            ],
            'ignored hosts' => [
              '#theme' => 'item_list',
            ],
          ];
        }
        elseif (!isset($items[$default_key])) {
          $items[$key] = $host
            ->label();
        }
      }
    }
    $form['hosts'] = array(
      '#theme' => 'item_list',
      '#items' => $items,
    );
    $form = parent::buildForm($form, $form_state);
    return $form;
  }
  /**
   * {@inheritdoc}
   */
  public function submitForm(array &$form, FormStateInterface $form_state) {
    if ($form_state
      ->getValue('confirm') && !empty($this->hostInfo)) {
      $greylist_hosts = [];
      $unban_hosts = [];
      /** @var \Drupal\httpbl\HostInterface[] $hosts */
      $hosts = $this->storage
        ->loadMultiple(array_keys($this->hostInfo));
      foreach ($this->hostInfo as $id => $host_ips) {
        foreach ($host_ips as $host_ip) {
          $host = $hosts[$id];
          $host_status = $host
            ->getHostStatus();
          // If this host is banned...
          if ($this->banManager
            ->isBanned($host_ip)) {
            // Queue the host for un-banning;
            $unban_hosts[$id] = $host;
          }
          // If this host is not already grey-listed
          if ($host_status != HTTPBL_LIST_GREY) {
            // Queue the host for grey-listing;
            $greylist_hosts[$id] = $host;
          }
        }
      }
      if ($unban_hosts) {
        foreach ($unban_hosts as $unban_host) {
          $this->banManager
            ->unbanIp($unban_host
            ->getHostIp());
        }
        $this->logTrapper
          ->trapNotice('Un-banned @count hosts.', array(
          '@count' => count($unban_hosts),
        ));
        $unbanned_count = count($unban_hosts);
        drupal_set_message($this
          ->formatPlural($unbanned_count, 'Un-banned 1 host.', 'Un-banned @count hosts.'));
      }
      if ($greylist_hosts) {
        $now = \Drupal::time()
          ->getRequestTime();
        $offset = \Drupal::state()
          ->get('httpbl.greylist_offset') ?: 86400;
        $timestamp = $now + $offset;
        foreach ($greylist_hosts as $id => $greylist_host) {
          $host = $greylist_host;
          $host
            ->setHostStatus(HTTPBL_LIST_GREY);
          $host
            ->setExpiry($timestamp);
          $host
            ->setSource(HTTPBL_ADMIN_SOURCE);
          $host
            ->save();
        }
        $greylist_count = count($greylist_hosts);
        $this->logTrapper
          ->trapNotice('Grey-listed @count hosts.', array(
          '@count' => $greylist_count,
        ));
        drupal_set_message($this
          ->formatPlural($greylist_count, 'Grey-listed 1 host.', 'Grey-listed @count hosts.'));
      }
      else {
        // Let user know if there was nothing to do.
        drupal_set_message('No hosts were found banned.  One or more were found already grey-listed. There was nothing to do.', 'warning');
      }
      $this->tempStoreFactory
        ->get('host_multiple_greylist_confirm')
        ->delete(\Drupal::currentUser()
        ->id());
    }
    $form_state
      ->setRedirect('entity.host.collection');
  }
}Members
| Name   | Modifiers | Type | Description | Overrides | 
|---|---|---|---|---|
| ConfirmFormBase:: | public | function | Returns a caption for the link which cancels the action. Overrides ConfirmFormInterface:: | 1 | 
| ConfirmFormBase:: | public | function | Returns the internal name used to refer to the confirmation item. Overrides ConfirmFormInterface:: | |
| DependencySerializationTrait:: | protected | property | An array of entity type IDs keyed by the property name of their storages. | |
| DependencySerializationTrait:: | protected | property | An array of service IDs keyed by property name used for serialization. | |
| DependencySerializationTrait:: | public | function | 1 | |
| DependencySerializationTrait:: | public | function | 2 | |
| FormBase:: | protected | property | The config factory. | 1 | 
| FormBase:: | protected | property | The request stack. | 1 | 
| FormBase:: | protected | property | The route match. | |
| FormBase:: | protected | function | Retrieves a configuration object. | |
| FormBase:: | protected | function | Gets the config factory for this form. | 1 | 
| FormBase:: | private | function | Returns the service container. | |
| FormBase:: | protected | function | Gets the current user. | |
| FormBase:: | protected | function | Gets the request object. | |
| FormBase:: | protected | function | Gets the route match. | |
| FormBase:: | protected | function | Gets the logger for a specific channel. | |
| FormBase:: | protected | function | Returns a redirect response object for the specified route. Overrides UrlGeneratorTrait:: | |
| FormBase:: | public | function | Resets the configuration factory. | |
| FormBase:: | public | function | Sets the config factory for this form. | |
| FormBase:: | public | function | Sets the request stack object to use. | |
| FormBase:: | public | function | Form validation handler. Overrides FormInterface:: | 62 | 
| HostMultipleGreylistConfirm:: | protected | property | The ban IP manager. | |
| HostMultipleGreylistConfirm:: | protected | property | The array of hosts to greylist. | |
| HostMultipleGreylistConfirm:: | protected | property | A logger arbitration instance. | |
| HostMultipleGreylistConfirm:: | protected | property | The host entity and storage manager. | |
| HostMultipleGreylistConfirm:: | protected | property | The tempstore factory. | |
| HostMultipleGreylistConfirm:: | public | function | Form constructor. Overrides ConfirmFormBase:: | |
| HostMultipleGreylistConfirm:: | public static | function | Instantiates a new instance of this class. Overrides FormBase:: | |
| HostMultipleGreylistConfirm:: | public | function | Returns the route to go to if the user cancels the action. Overrides ConfirmFormInterface:: | |
| HostMultipleGreylistConfirm:: | public | function | Returns a caption for the button that confirms the action. Overrides ConfirmFormBase:: | |
| HostMultipleGreylistConfirm:: | public | function | Returns additional text to display as a description. Overrides ConfirmFormBase:: | |
| HostMultipleGreylistConfirm:: | public | function | Returns a unique string identifying the form. Overrides FormInterface:: | |
| HostMultipleGreylistConfirm:: | public | function | Returns the question to ask the user. Overrides ConfirmFormInterface:: | |
| HostMultipleGreylistConfirm:: | public | function | Form submission handler. Overrides FormInterface:: | |
| HostMultipleGreylistConfirm:: | public | function | Constructs a new HostMultipleGreylistConfirm form object. | |
| LinkGeneratorTrait:: | protected | property | The link generator. | 1 | 
| LinkGeneratorTrait:: | protected | function | Returns the link generator. | |
| LinkGeneratorTrait:: | protected | function | Renders a link to a route given a route name and its parameters. | |
| LinkGeneratorTrait:: | public | function | Sets the link generator service. | |
| LoggerChannelTrait:: | protected | property | The logger channel factory service. | |
| LoggerChannelTrait:: | protected | function | Gets the logger for a specific channel. | |
| LoggerChannelTrait:: | public | function | Injects the logger channel factory. | |
| MessengerTrait:: | protected | property | The messenger. | 29 | 
| MessengerTrait:: | public | function | Gets the messenger. | 29 | 
| MessengerTrait:: | public | function | Sets the messenger. | |
| RedirectDestinationTrait:: | protected | property | The redirect destination service. | 1 | 
| RedirectDestinationTrait:: | protected | function | Prepares a 'destination' URL query parameter for use with \Drupal\Core\Url. | |
| RedirectDestinationTrait:: | protected | function | Returns the redirect destination service. | |
| RedirectDestinationTrait:: | public | function | Sets the redirect destination service. | |
| StringTranslationTrait:: | protected | property | The string translation service. | 1 | 
| StringTranslationTrait:: | protected | function | Formats a string containing a count of items. | |
| StringTranslationTrait:: | protected | function | Returns the number of plurals supported by a given language. | |
| StringTranslationTrait:: | protected | function | Gets the string translation service. | |
| StringTranslationTrait:: | public | function | Sets the string translation service to use. | 2 | 
| StringTranslationTrait:: | protected | function | Translates a string to the current language or to a given language. | |
| UrlGeneratorTrait:: | protected | property | The url generator. | |
| UrlGeneratorTrait:: | protected | function | Returns the URL generator service. | |
| UrlGeneratorTrait:: | public | function | Sets the URL generator service. | |
| UrlGeneratorTrait:: | protected | function | Generates a URL or path for a specific route based on the given parameters. | 
