00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034 class Varien_Http_Client extends Zend_Http_Client
00035 {
00036 protected $_urlEncodeBody = true;
00037
00038 public function __construct($uri = null, $config = null)
00039 {
00040 $this->config['useragent'] = 'Varien_Http_Client';
00041
00042 parent::__construct($uri, $config);
00043 }
00044
00045 protected function _trySetCurlAdapter()
00046 {
00047 if (extension_loaded('curl')) {
00048 $this->setAdapter(new Varien_Http_Adapter_Curl());
00049 }
00050 return $this;
00051 }
00052
00053 public function request($method = null)
00054 {
00055 $this->_trySetCurlAdapter();
00056 return parent::request($method);
00057 }
00058
00059 public function setUrlEncodeBody($flag)
00060 {
00061 $this->_urlEncodeBody = $flag;
00062 return $this;
00063 }
00064
00065 protected function prepare_body()
00066 {
00067 $body = parent::prepare_body();
00068
00069 if (!$this->_urlEncodeBody && $body) {
00070 $body = urldecode($body);
00071 $this->setHeaders('Content-length', strlen($body));
00072 }
00073
00074 return $body;
00075 }
00076 }