You are here

class DefaultFetcher in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/aggregator/src/Plugin/aggregator/fetcher/DefaultFetcher.php \Drupal\aggregator\Plugin\aggregator\fetcher\DefaultFetcher

Defines a default fetcher implementation.

Uses the http_client service to download the feed.

Plugin annotation


@AggregatorFetcher(
  id = "aggregator",
  title = @Translation("Default fetcher"),
  description = @Translation("Downloads data from a URL using Drupal's HTTP request handler.")
)

Hierarchy

Expanded class hierarchy of DefaultFetcher

1 file declares its use of DefaultFetcher
TestFetcher.php in core/modules/aggregator/tests/modules/aggregator_test/src/Plugin/aggregator/fetcher/TestFetcher.php
Contains \Drupal\aggregator_test\Plugin\aggregator\fetcher\TestFetcher.

File

core/modules/aggregator/src/Plugin/aggregator/fetcher/DefaultFetcher.php, line 34
Contains \Drupal\aggregator\Plugin\aggregator\fetcher\DefaultFetcher.

Namespace

Drupal\aggregator\Plugin\aggregator\fetcher
View source
class DefaultFetcher implements FetcherInterface, ContainerFactoryPluginInterface {

  /**
   * The HTTP client to fetch the feed data with.
   *
   * @var \Drupal\Core\Http\ClientFactory
   */
  protected $httpClientFactory;

  /**
   * A logger instance.
   *
   * @var \Psr\Log\LoggerInterface
   */
  protected $logger;

  /**
   * Constructs a DefaultFetcher object.
   *
   * @param \Drupal\Core\Http\ClientFactory $http_client_factory
   *   A Guzzle client object.
   * @param \Psr\Log\LoggerInterface $logger
   *   A logger instance.
   */
  public function __construct(ClientFactory $http_client_factory, LoggerInterface $logger) {
    $this->httpClientFactory = $http_client_factory;
    $this->logger = $logger;
  }

  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
    return new static($container
      ->get('http_client_factory'), $container
      ->get('logger.factory')
      ->get('aggregator'));
  }

  /**
   * {@inheritdoc}
   */
  public function fetch(FeedInterface $feed) {
    $request = new Request('GET', $feed
      ->getUrl());
    $feed->source_string = FALSE;

    // Generate conditional GET headers.
    if ($feed
      ->getEtag()) {
      $request = $request
        ->withAddedHeader('If-None-Match', $feed
        ->getEtag());
    }
    if ($feed
      ->getLastModified()) {
      $request = $request
        ->withAddedHeader('If-Modified-Since', gmdate(DateTimePlus::RFC7231, $feed
        ->getLastModified()));
    }
    try {

      /** @var \Psr\Http\Message\UriInterface $actual_uri */
      $actual_uri = NULL;
      $response = $this->httpClientFactory
        ->fromOptions([
        'allow_redirects' => [
          'on_redirect' => function (RequestInterface $request, ResponseInterface $response, UriInterface $uri) use (&$actual_uri) {
            $actual_uri = (string) $uri;
          },
        ],
      ])
        ->send($request);

      // In case of a 304 Not Modified, there is no new content, so return
      // FALSE.
      if ($response
        ->getStatusCode() == 304) {
        return FALSE;
      }
      $feed->source_string = (string) $response
        ->getBody();
      if ($response
        ->hasHeader('ETag')) {
        $feed
          ->setEtag($response
          ->getHeaderLine('ETag'));
      }
      if ($response
        ->hasHeader('Last-Modified')) {
        $feed
          ->setLastModified(strtotime($response
          ->getHeaderLine('Last-Modified')));
      }
      $feed->http_headers = $response
        ->getHeaders();

      // Update the feed URL in case of a 301 redirect.
      if ($actual_uri && $actual_uri !== $feed
        ->getUrl()) {
        $feed
          ->setUrl($actual_uri);
      }
      return TRUE;
    } catch (RequestException $e) {
      $this->logger
        ->warning('The feed from %site seems to be broken because of error "%error".', array(
        '%site' => $feed
          ->label(),
        '%error' => $e
          ->getMessage(),
      ));
      drupal_set_message(t('The feed from %site seems to be broken because of error "%error".', array(
        '%site' => $feed
          ->label(),
        '%error' => $e
          ->getMessage(),
      )), 'warning');
      return FALSE;
    }
  }

}

Members

Namesort descending Modifiers Type Description Overrides
DefaultFetcher::$httpClientFactory protected property The HTTP client to fetch the feed data with.
DefaultFetcher::$logger protected property A logger instance.
DefaultFetcher::create public static function Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface::create
DefaultFetcher::fetch public function Downloads feed data. Overrides FetcherInterface::fetch 1
DefaultFetcher::__construct public function Constructs a DefaultFetcher object.