Skip to content
Snippets Groups Projects
Commit c4749541 authored by catch's avatar catch
Browse files

Issue #3228350 by scott_euser, asirjacques, smustgrave, longwave, catch,...

Issue #3228350 by scott_euser, asirjacques, smustgrave, longwave, catch, alexpott, quietone, wotnak: oEmbed resource fetcher should allow adjusting timeout

(cherry picked from commit 2840a9f2)
parent 179e7370
No related branches found
No related tags found
3 merge requests!11185Issue #3477324 by andypost, alexpott: Fix usage of str_getcsv() and fgetcsv() for PHP 8.4,!9944Issue #3483353: Consider making the createCopy config action optionally fail...,!8325Update file Sort.php
Pipeline #180313 passed with warnings
Pipeline: drupal

#180349

    Pipeline: drupal

    #180343

      Pipeline: drupal

      #180337

        +1
        parameters:
        media.resource_fetcher_timeout: 5
        services:
        _defaults:
        autoconfigure: true
        ......@@ -14,7 +17,7 @@ services:
        Drupal\media\OEmbed\ProviderRepositoryInterface: '@media.oembed.provider_repository'
        media.oembed.resource_fetcher:
        class: Drupal\media\OEmbed\ResourceFetcher
        arguments: ['@http_client', '@media.oembed.provider_repository', '@cache.default']
        arguments: ['@http_client', '@media.oembed.provider_repository', '@cache.default', '%media.resource_fetcher_timeout%']
        Drupal\media\OEmbed\ResourceFetcherInterface: '@media.oembed.resource_fetcher'
        media.oembed.iframe_url_helper:
        class: Drupal\media\IFrameUrlHelper
        ......
        ......@@ -15,41 +15,25 @@
        */
        class ResourceFetcher implements ResourceFetcherInterface {
        /**
        * The HTTP client.
        *
        * @var \GuzzleHttp\Client
        */
        protected $httpClient;
        /**
        * The oEmbed provider repository service.
        *
        * @var \Drupal\media\OEmbed\ProviderRepositoryInterface
        */
        protected $providers;
        /**
        * The cache backend.
        *
        * @var \Drupal\Core\Cache\CacheBackendInterface
        */
        protected $cacheBackend;
        /**
        * Constructs a ResourceFetcher object.
        *
        * @param \GuzzleHttp\ClientInterface $http_client
        * @param \GuzzleHttp\ClientInterface $httpClient
        * The HTTP client.
        * @param \Drupal\media\OEmbed\ProviderRepositoryInterface $providers
        * The oEmbed provider repository service.
        * @param \Drupal\Core\Cache\CacheBackendInterface $cache_backend
        * @param \Drupal\Core\Cache\CacheBackendInterface $cacheBackend
        * The cache backend.
        * @param int $timeout
        * The length of time to wait for the request before the request
        * should time out.
        */
        public function __construct(ClientInterface $http_client, ProviderRepositoryInterface $providers, CacheBackendInterface $cache_backend) {
        $this->httpClient = $http_client;
        $this->providers = $providers;
        $this->cacheBackend = $cache_backend;
        public function __construct(
        protected ClientInterface $httpClient,
        protected ProviderRepositoryInterface $providers,
        protected CacheBackendInterface $cacheBackend,
        protected int $timeout = 5,
        ) {
        }
        /**
        ......@@ -65,7 +49,7 @@ public function fetchResource($url) {
        try {
        $response = $this->httpClient->request('GET', $url, [
        RequestOptions::TIMEOUT => 5,
        RequestOptions::TIMEOUT => $this->timeout,
        ]);
        }
        catch (ClientExceptionInterface $e) {
        ......
        ......@@ -37,15 +37,17 @@ public function testFetchTimeout(): void {
        ]);
        $response = new Response(200, $headers, $body);
        $non_default_timeout = 10;
        $client = $this->prophesize(Client::class);
        $client->request('GET', $url, [RequestOptions::TIMEOUT => 5])
        $client->request('GET', $url, [RequestOptions::TIMEOUT => $non_default_timeout])
        ->shouldBeCalled()
        ->willReturn($response);
        $fetcher = new ResourceFetcher(
        $client->reveal(),
        $this->createMock('\Drupal\media\OEmbed\ProviderRepositoryInterface'),
        new NullBackend('default')
        new NullBackend('default'),
        $non_default_timeout
        );
        $fetcher->fetchResource($url);
        }
        ......
        0% Loading or .
        You are about to add 0 people to the discussion. Proceed with caution.
        Finish editing this message first!
        Please register or to comment