class UpdateFetcher in Drupal 9
Same name and namespace in other branches
- 8 core/modules/update/src/UpdateFetcher.php \Drupal\update\UpdateFetcher
- 10 core/modules/update/src/UpdateFetcher.php \Drupal\update\UpdateFetcher
Fetches project information from remote locations.
Hierarchy
- class \Drupal\update\UpdateFetcher implements UpdateFetcherInterface uses DependencySerializationTrait
Expanded class hierarchy of UpdateFetcher
1 string reference to 'UpdateFetcher'
- update.services.yml in core/
modules/ update/ update.services.yml - core/modules/update/update.services.yml
1 service uses UpdateFetcher
- update.fetcher in core/
modules/ update/ update.services.yml - Drupal\update\UpdateFetcher
File
- core/
modules/ update/ src/ UpdateFetcher.php, line 14
Namespace
Drupal\updateView source
class UpdateFetcher implements UpdateFetcherInterface {
use DependencySerializationTrait;
/**
* URL to check for updates, if a given project doesn't define its own.
*/
const UPDATE_DEFAULT_URL = 'https://updates.drupal.org/release-history';
/**
* The fetch url configured in the update settings.
*
* @var string
*/
protected $fetchUrl;
/**
* The update settings.
*
* @var \Drupal\Core\Config\Config
*/
protected $updateSettings;
/**
* The HTTP client to fetch the feed data with.
*
* @var \GuzzleHttp\ClientInterface
*/
protected $httpClient;
/**
* Whether to use HTTP fallback if HTTPS fails.
*
* @var bool
*/
protected $withHttpFallback;
/**
* Constructs an UpdateFetcher.
*
* @param \Drupal\Core\Config\ConfigFactoryInterface $config_factory
* The config factory.
* @param \GuzzleHttp\ClientInterface $http_client
* A Guzzle client object.
* @param \Drupal\Core\Site\Settings|null $settings
* The settings instance.
*/
public function __construct(ConfigFactoryInterface $config_factory, ClientInterface $http_client, Settings $settings = NULL) {
$this->fetchUrl = $config_factory
->get('update.settings')
->get('fetch.url');
$this->httpClient = $http_client;
$this->updateSettings = $config_factory
->get('update.settings');
if (is_null($settings)) {
@trigger_error('The settings service should be passed to UpdateFetcher::__construct() since 9.1.0. This will be required in Drupal 10.0.0. See https://www.drupal.org/node/3179315', E_USER_DEPRECATED);
$settings = \Drupal::service('settings');
}
$this->withHttpFallback = $settings
->get('update_fetch_with_http_fallback', FALSE);
}
/**
* {@inheritdoc}
*/
public function fetchProjectData(array $project, $site_key = '') {
$url = $this
->buildFetchUrl($project, $site_key);
return $this
->doRequest($url, [
'headers' => [
'Accept' => 'text/xml',
],
], $this->withHttpFallback);
}
/**
* Applies a GET request with a possible HTTP fallback.
*
* This method falls back to HTTP in case there was some certificate
* problem.
*
* @param string $url
* The URL.
* @param array $options
* The guzzle client options.
* @param bool $with_http_fallback
* Should the function fall back to HTTP.
*
* @return string
* The body of the HTTP(S) request, or an empty string on failure.
*/
protected function doRequest(string $url, array $options, bool $with_http_fallback) : string {
$data = '';
try {
$data = (string) $this->httpClient
->get($url, [
'headers' => [
'Accept' => 'text/xml',
],
])
->getBody();
} catch (TransferException $exception) {
watchdog_exception('update', $exception);
if ($with_http_fallback && strpos($url, "http://") === FALSE) {
$url = str_replace('https://', 'http://', $url);
return $this
->doRequest($url, $options, FALSE);
}
}
return $data;
}
/**
* {@inheritdoc}
*/
public function buildFetchUrl(array $project, $site_key = '') {
$name = $project['name'];
$url = $this
->getFetchBaseUrl($project);
$url .= '/' . $name . '/current';
// Only append usage information if we have a site key and the project is
// enabled. We do not want to record usage statistics for disabled projects.
if (!empty($site_key) && strpos($project['project_type'], 'disabled') === FALSE) {
// Append the site key.
$url .= strpos($url, '?') !== FALSE ? '&' : '?';
$url .= 'site_key=';
$url .= rawurlencode($site_key);
// Append the version.
if (!empty($project['info']['version'])) {
$url .= '&version=';
$url .= rawurlencode($project['info']['version']);
}
// Append the list of modules or themes enabled.
$list = array_keys($project['includes']);
$url .= '&list=';
$url .= rawurlencode(implode(',', $list));
}
return $url;
}
/**
* {@inheritdoc}
*/
public function getFetchBaseUrl($project) {
if (isset($project['info']['project status url'])) {
$url = $project['info']['project status url'];
}
else {
$url = $this->fetchUrl;
if (empty($url)) {
$url = static::UPDATE_DEFAULT_URL;
}
}
return $url;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DependencySerializationTrait:: |
protected | property | ||
DependencySerializationTrait:: |
protected | property | ||
DependencySerializationTrait:: |
public | function | 2 | |
DependencySerializationTrait:: |
public | function | 2 | |
UpdateFetcher:: |
protected | property | The fetch url configured in the update settings. | |
UpdateFetcher:: |
protected | property | The HTTP client to fetch the feed data with. | |
UpdateFetcher:: |
protected | property | The update settings. | |
UpdateFetcher:: |
protected | property | Whether to use HTTP fallback if HTTPS fails. | |
UpdateFetcher:: |
public | function |
Generates the URL to fetch information about project updates. Overrides UpdateFetcherInterface:: |
|
UpdateFetcher:: |
protected | function | Applies a GET request with a possible HTTP fallback. | |
UpdateFetcher:: |
public | function |
Retrieves the project information. Overrides UpdateFetcherInterface:: |
|
UpdateFetcher:: |
public | function |
Returns the base of the URL to fetch available update data for a project. Overrides UpdateFetcherInterface:: |
|
UpdateFetcher:: |
constant | URL to check for updates, if a given project doesn't define its own. | ||
UpdateFetcher:: |
public | function | Constructs an UpdateFetcher. | |
UpdateFetcherInterface:: |
constant | We need to (re)fetch available update data for this project. | ||
UpdateFetcherInterface:: |
constant | Project's status cannot be checked. | ||
UpdateFetcherInterface:: |
constant | There was a failure fetching available update data for this project. | ||
UpdateFetcherInterface:: |
constant | No available update data was found for project. |