class FacebookFetcher in Media entity facebook 8.2
Same name and namespace in other branches
- 8 src/FacebookFetcher.php \Drupal\media_entity_facebook\FacebookFetcher
- 3.x src/FacebookFetcher.php \Drupal\media_entity_facebook\FacebookFetcher
Class FacebookFetcher.
Hierarchy
- class \Drupal\media_entity_facebook\FacebookFetcher
Expanded class hierarchy of FacebookFetcher
1 file declares its use of FacebookFetcher
- Facebook.php in src/
Plugin/ media/ Source/ Facebook.php
1 string reference to 'FacebookFetcher'
1 service uses FacebookFetcher
File
- src/
FacebookFetcher.php, line 13
Namespace
Drupal\media_entity_facebookView source
class FacebookFetcher {
/**
* Stores logger.
*
* @var \Drupal\Core\Logger\LoggerChannel
*/
protected $loggerChannel;
/**
* Guzzle HTTP client.
*
* @var \GuzzleHttp\ClientInterface
*/
protected $httpClient;
/**
* The language manager.
*
* @var \Drupal\Core\Language\LanguageManagerInterface
*/
protected $languageManager;
/**
* Tracks when an error has occurred when interacting with the API.
*
* @var bool
*/
protected $apiErrorEncountered = FALSE;
/**
* FacebookFetcher constructor.
*
* @param \Drupal\Core\Logger\LoggerChannelFactoryInterface $logger_channel_factory
* The logger factory.
* @param \GuzzleHttp\ClientInterface $client
* The Guzzle HTTP client.
* @param \Drupal\Core\Language\LanguageManagerInterface $language_manager
* The language manager.
*/
public function __construct(LoggerChannelFactoryInterface $logger_channel_factory, ClientInterface $client, LanguageManagerInterface $language_manager) {
$this->loggerChannel = $logger_channel_factory
->get('media_entity_facebook');
$this->httpClient = $client;
$this->languageManager = $language_manager;
}
/**
* Fetch and return response from Facebook's oEmbed API endpoint.
*
* @param string $resource_url
* The URL to pass to Facebook's oembed API.
*/
public function getOembedData($resource_url) {
// Keep an in-memory cache of the response data for each URL, since this
// data may be requested multiple times on the same request.
static $memory_cache;
if (!isset($memory_cache)) {
$memory_cache = [];
}
if (!isset($memory_cache[$resource_url])) {
// If there was an error interacting with the Facebook API, like a network
// timeout due to Facebook being down, we don't want to clog up the Drupal
// site's resources by making lots of API requests that may all timeout.
// To do this, we mark when a request exception occurred and back out of
// subsequent requests if so.
if ($this->apiErrorEncountered) {
$this->loggerChannel
->error('Aborting Facebook API request due to previously encountered error.');
return FALSE;
}
$endpoint = $this
->getApiEndpointUrl($resource_url) . '?url=' . $resource_url;
try {
$options = [
'timeout' => 5,
'headers' => [
'Accept-Language' => $this->languageManager
->getCurrentLanguage()
->getId(),
],
];
$response = $this->httpClient
->request('GET', $endpoint, $options);
$decoded = json_decode((string) $response
->getBody(), TRUE);
$memory_cache[$resource_url] = $decoded;
} catch (TransferException $e) {
$this->loggerChannel
->error('Error retrieving oEmbed data for a Facebook media entity: @error', [
'@error' => $e
->getMessage(),
]);
$this->apiErrorEncountered = TRUE;
return FALSE;
}
}
return $memory_cache[$resource_url];
}
/**
* Return the appropriate Facebook oEmbed API endpoint for the content URL.
*
* @param string $content_url
* The content URL contains the URL to the resource.
*
* @return string
* The oEmbed endpoint URL.
*/
protected function getApiEndpointUrl($content_url) {
if (preg_match('/\\/videos\\//', $content_url) || preg_match('/\\/video.php\\//', $content_url)) {
return 'https://www.facebook.com/plugins/video/oembed.json/';
}
else {
return 'https://www.facebook.com/plugins/post/oembed.json/';
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
FacebookFetcher:: |
protected | property | Tracks when an error has occurred when interacting with the API. | |
FacebookFetcher:: |
protected | property | Guzzle HTTP client. | |
FacebookFetcher:: |
protected | property | The language manager. | |
FacebookFetcher:: |
protected | property | Stores logger. | |
FacebookFetcher:: |
protected | function | Return the appropriate Facebook oEmbed API endpoint for the content URL. | |
FacebookFetcher:: |
public | function | Fetch and return response from Facebook's oEmbed API endpoint. | |
FacebookFetcher:: |
public | function | FacebookFetcher constructor. |