Skip to content
Snippets Groups Projects
Commit 28f278b4 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #1862538 by Berdir: Convert drupal_http_request() usage in update.fetch.inc to Guzzle.

parent 87f01f06
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -5,6 +5,8 @@
* Code required only when fetching information about available updates.
*/
use Guzzle\Http\Exception\RequestException;
/**
* Page callback: Checks for updates and displays the update status report.
*
......@@ -149,12 +151,14 @@ function _update_process_fetch_task($project) {
$project_name = $project['name'];
if (empty($fail[$fetch_url_base]) || $fail[$fetch_url_base] < $max_fetch_attempts) {
$result = drupal_http_request($url, array('headers' => array('accept' => 'text/xml')));
if (isset($result->error)) {
watchdog('update', 'HTTP request to @url failed with error: @error.', array('@url' => $url, '@error' => $result->error));
try {
$data = Drupal::httpClient()
->get($url, array('Accept' => 'text/xml'))
->send()
->getBody(TRUE);
}
elseif (!isset($result->error) && isset($result->data)) {
$data = $result->data;
catch (RequestException $exception) {
watchdog_exception('update', $exception);
}
}
......
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