solr_httptransport.inc 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <?php
  2. /**
  3. * @file
  4. * Contains the SearchApiSolrHttpTransport class.
  5. */
  6. /**
  7. * Drupal-based implementation of the HTTP transport interface.
  8. *
  9. * Uses drupal_http_request() for sending the request.
  10. */
  11. class SearchApiSolrHttpTransport extends Apache_Solr_HttpTransport_Abstract {
  12. /**
  13. * If set, an HTTP authentification string to use.
  14. *
  15. * @var string
  16. */
  17. protected $http_auth;
  18. /**
  19. * Constructor.
  20. *
  21. * @param $http_auth
  22. * If set, an HTTP authentification string to use.
  23. */
  24. public function __construct($http_auth = NULL) {
  25. $this->http_auth = $http_auth;
  26. }
  27. /**
  28. * Perform a GET HTTP operation with an optional timeout and return the response
  29. * contents, use getLastResponseHeaders to retrieve HTTP headers
  30. *
  31. * @param string $url
  32. * @param float $timeout
  33. * @return Apache_Solr_HttpTransport_Response HTTP response
  34. */
  35. public function performGetRequest($url, $timeout = false) {
  36. return $this->performHttpRequest('GET', $url, $timeout);
  37. }
  38. /**
  39. * Perform a HEAD HTTP operation with an optional timeout and return the response
  40. * headers - NOTE: head requests have no response body
  41. *
  42. * @param string $url
  43. * @param float $timeout
  44. * @return Apache_Solr_HttpTransport_Response HTTP response
  45. */
  46. public function performHeadRequest($url, $timeout = false) {
  47. return $this->performHttpRequest('HEAD', $url, $timeout);
  48. }
  49. /**
  50. * Perform a POST HTTP operation with an optional timeout and return the response
  51. * contents, use getLastResponseHeaders to retrieve HTTP headers
  52. *
  53. * @param string $url
  54. * @param string $rawPost
  55. * @param string $contentType
  56. * @param float $timeout
  57. * @return Apache_Solr_HttpTransport_Response HTTP response
  58. */
  59. public function performPostRequest($url, $rawPost, $contentType, $timeout = false) {
  60. return $this->performHttpRequest('POST', $url, $timeout, $rawPost, $contentType);
  61. }
  62. /**
  63. * Helper method for making an HTTP request.
  64. */
  65. protected function performHttpRequest($method, $url, $timeout, $rawPost = NULL, $contentType = NULL) {
  66. $options = array(
  67. 'method' => $method,
  68. 'timeout' => $timeout && $timeout > 0 ? $timeout : $this->getDefaultTimeout(),
  69. 'headers' => array(),
  70. );
  71. if ($this->http_auth) {
  72. $options['headers']['Authorization'] = $this->http_auth;
  73. }
  74. if ($timeout) {
  75. $options['timeout'] = $timeout;
  76. }
  77. if ($rawPost) {
  78. $options['data'] = $rawPost;
  79. }
  80. if ($contentType) {
  81. $options['headers']['Content-Type'] = $contentType;
  82. }
  83. $response = drupal_http_request($url, $options);
  84. $type = isset($response->headers['content-type']) ? $response->headers['content-type'] : 'text/xml';
  85. $body = isset($response->data) ? $response->data : NULL;
  86. return new Apache_Solr_HttpTransport_Response($response->code, $type, $body);
  87. }
  88. }