# usc-e-shop/1.3.17/classes/httpRequest.class.php

Welcart e-Commerce, version 1.3.17. 103 lines.

- Page: https://pluginprobe.com/plugins/usc-e-shop/1.3.17/code/classes/httpRequest.class.php
- Raw: https://pluginprobe.com/plugins/usc-e-shop/1.3.17/raw/classes/httpRequest.class.php
- Modified: 2012-04-20T08:45:48+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/usc-e-shop/1.3.17/code/classes/httpRequest.class.php#L10-L20`.

```php
<?php
class usces_httpRequest {
	
	var $host;
	var $path;
	var $data;
	var $method;
	var $port;
	var $rawhost;
	
	var $header;
	var $content;
	var $parsedHeader;
	
	function usces_httpRequest($host, $path, $method = 'POST', $ssl = false, $port = 0) {
		$this->host = $host;
		$this->rawhost = $ssl ? ("ssl://".$host) : $host;
		$this->path = $path;
		$this->method = strtoupper($method);
		if ($port) {
			$this->port = $port;
		} else {
			if (!$ssl) $this->port = 80; else $this->port = 443;
		}
	}
	
	function connect( $data = ''){
		$fp = fsockopen($this->rawhost, $this->port);
		if (!$fp) return false;
		
		fputs($fp, "$this->method $this->path HTTP/1.1\r\n");
		fputs($fp, "Host: $this->host\r\n");
		//fputs($fp, "Content-type: $contenttype\r\n");
		fputs($fp, "Content-length: ".strlen($data)."\r\n");
		fputs($fp, "Connection: close\r\n");
		fputs($fp, "\r\n");
		fputs($fp, $data);
		
		$responseHeader = '';
		$responseContent = '';
		
		do{
			$responseHeader.= fread($fp, 1);
		}while (!preg_match('/\\r\\n\\r\\n$/', $responseHeader));
		
		if (!strstr($responseHeader, "Transfer-Encoding: chunked")){
			while (!feof($fp)){
				$responseContent.= fgets($fp, 128);
			}
		}else{
			while ($chunk_length = hexdec(fgets($fp))){
				$responseContentChunk = '';
				
				$read_length = 0;
				
				while ($read_length < $chunk_length){
					$responseContentChunk .= fread($fp, $chunk_length - $read_length);
					$read_length = strlen($responseContentChunk);
				}
				
				$responseContent.= $responseContentChunk;
				
				fgets($fp);
			}
		}
		
		$this->header = chop($responseHeader);
		$this->content = $responseContent;
		$this->parsedHeader = $this->headerParse();
		
		$code = intval(trim(substr($this->parsedHeader[0], 9)));
		
		return $code;
	}
	
	function headerParse(){
		$h = $this->header;
		$a=explode("\r\n", $h);
		$out = array();
		foreach ($a as $v){
			$k = strpos($v, ':');
			if ($k) {
				$key = trim(substr($v,0,$k));
				$value = trim(substr($v,$k+1));
			if (!$key) continue;
				$out[$key] = $value;
			}else{
				if ($v) $out[] = $v;
			}
		}
		return $out;
	}
	
	function getContent() {
		return $this->content;
	}
	
	function getHeader() {
		return $this->parsedHeader;
	}
}
?>

```
