WebServiceUtilityBase.php in Smart IP 8.2
Same filename and directory in other branches
Contains \Drupal\smart_ip\WebServiceUtilityBase.
Namespace
Drupal\smart_ipFile
src/WebServiceUtilityBase.phpView source
<?php
/**
* @file
* Contains \Drupal\smart_ip\WebServiceUtilityBase.
*/
namespace Drupal\smart_ip;
/**
* Web service utility methods class wrapper.
*
* @package Drupal\smart_ip
*/
abstract class WebServiceUtilityBase implements WebServiceUtilityInterface {
/**
* {@inheritdoc}
*/
public static function sendRequest($url = NULL) {
if (!empty($url)) {
try {
$response = \Drupal::httpClient()
->get($url, array(
'headers' => array(
'Accept' => 'application/json',
),
));
$data = (string) $response
->getBody();
if (empty($data)) {
\Drupal::logger('smart_ip')
->error(t('Empty response from @url', [
'@url' => $url,
]));
}
else {
return $data;
}
} catch (\Exception $e) {
\Drupal::logger('smart_ip')
->error(t('Sending request failed: @error', [
'@error' => $e
->getMessage(),
]));
}
}
return '';
}
}
Classes
Name | Description |
---|---|
WebServiceUtilityBase | Web service utility methods class wrapper. |