-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhttp-agent.php
85 lines (66 loc) · 1.84 KB
/
http-agent.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<?php
require_once(dirname(__FILE__) . '/http-agent.php');
abstract class HttpAgent {
public $url;
protected $curlObj;
private $headers = array();
function __construct($initUrl) {
$this->url = $initUrl;
}
protected function generateRequestUrl() {
return $this->url;
}
public function setRequestHeader($field, $value) {
$this->headers[$field] = $value;
}
public function setRequestHeaders($values) {
if (is_array($values)) {
foreach ($values as $field => $value) {
$this->setRequestHeader($field, $value);
}
}
}
private function generateRequestHeaders() {
$result = array();
foreach ($this->headers as $field => $value) {
$result[] = $field . ': ' . $value;
}
return $result;
}
public function request() {
$this->init();
$this->initOptions();
$output = $this->execute();
$this->close();
return $output;
}
public function requestAndSave($physicalPath) {
$this->init();
$this->initOptions();
$stream = fopen($physicalPath, 'w');
curl_setopt($this->curlObj, CURLOPT_FILE, $stream);
$output = $this->execute();
$this->close();
fclose($stream);
return $output;
}
private function init() {
$this->curlObj = curl_init();
}
protected function initOptions() {
curl_setopt($this->curlObj, CURLOPT_URL, $this->generateRequestUrl());
curl_setopt($this->curlObj, CURLOPT_BINARYTRANSFER, true);
curl_setopt($this->curlObj, CURLOPT_RETURNTRANSFER, true);
curl_setopt($this->curlObj, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($this->curlObj, CURLOPT_MAXREDIRS, 10);
curl_setopt($this->curlObj, CURLOPT_AUTOREFERER, true);
curl_setopt($this->curlObj, CURLOPT_HEADER, false);
curl_setopt($this->curlObj, CURLOPT_HTTPHEADER, $this->generateRequestHeaders());
}
private function execute() {
return curl_exec($this->curlObj);
}
private function close() {
curl_close($this->curlObj);
}
}