class ShareaholicHttp in Share Buttons, Related Posts, Content Analytics - Shareaholic 7.3
Same name in this branch
- 7.3 lib/social-share-counts/http.php \ShareaholicHttp
- 7.3 lib/social-share-counts/drupal_http.php \ShareaholicHttp
- 7.3 lib/social-share-counts/wordpress_http.php \ShareaholicHttp
Same name and namespace in other branches
- 8 lib/social-share-counts/http.php \ShareaholicHttp
- 8 lib/social-share-counts/drupal_http.php \ShareaholicHttp
- 8 lib/social-share-counts/wordpress_http.php \ShareaholicHttp
The purpose of this class is to provide an interface around any native http function (wp_remote_get, drupal_http_request, curl) so that one use this consistent API for making http request with well defined input and output.
@package shareaholic
Hierarchy
- class \ShareaholicHttp
Expanded class hierarchy of ShareaholicHttp
File
- lib/
social-share-counts/ drupal_http.php, line 16
View source
class ShareaholicHttp {
/**
* Performs a HTTP request with a url, array of options, and ignore_error flag
*
*
* The options object is an associative array that takes the following options:
* - method: The http method for the request as a string. Defaults is 'GET'.
*
* - headers: The headers to send with the request as an associative array of name/value pairs. Default is empty array.
*
* - body: The body to send with the request as an associative array of name/value pairs. Default is NULL.
* If the body is meant to be parsed as json, specify the content type in the headers option to be 'application/json'.
*
* - redirection: The number of redirects to follow for this request as an integer, Default is 5.
*
* - timeout: The number of seconds the request should take as an integer. Default is 15 (seconds).
*
* - user-agent: The useragent for the request. Default is mozilla browser useragent.
*
*
* This function returns an object on success or false if there were errors.
* The object is an associative array with the following keys:
* - headers: the response headers as an array of key/value pairs
* - body: the response body as a string
* - response: an array with the following keys:
* - code: the response code
* - message: the status message
*
*
* @param string $url The url you are sending the request to
* @param array $options An array of supported options to pass to the request
* @param bool $ignore_error A flag indicating to log error or not. Default is false.
*
* @return mixed It returns an associative array of name value pairs or false if there was an error.
*/
public static function send($url, $options = array(), $ignore_error = false) {
return self::send_with_drupal($url, $options, $ignore_error);
}
private static function send_with_drupal($url, $options, $ignore_error) {
$request = array();
$result = array();
$request['method'] = isset($options['method']) ? $options['method'] : 'GET';
$request['headers'] = isset($options['headers']) ? $options['headers'] : array();
$request['max_redirects'] = isset($options['redirection']) ? $options['redirection'] : 5;
$request['timeout'] = isset($options['timeout']) ? $options['timeout'] : 15;
$request['headers']['User-Agent'] = isset($options['user-agent']) ? $options['user-agent'] : 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:24.0) Gecko/20100101 Firefox/24.0';
if (isset($options['body'])) {
if (isset($request['headers']['Content-Type']) && $request['headers']['Content-Type'] === 'application/json') {
$request['data'] = json_encode($options['body']);
}
else {
$request['data'] = http_build_query($options['body']);
}
}
else {
$request['body'] = NULL;
}
$response = drupal_http_request($url, $request);
if (isset($response->error)) {
if (!$ignore_error) {
ShareaholicUtilities::log('ShareaholicHttp Error for ' . $url . ' with error ' . $response->error);
}
return false;
}
$result['headers'] = $response->headers;
$result['body'] = $response->data;
$result['response'] = array(
'code' => $response->code,
'message' => $response->status_message,
);
return $result;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ShareaholicHttp:: |
public static | function | Performs a HTTP request with a url, array of options, and ignore_error flag | |
ShareaholicHttp:: |
private static | function |