-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrequest.php
219 lines (177 loc) · 6.46 KB
/
request.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
<?php
/**
* Request class allow us to make HTTP requests to remote URLs.
*
* @author Faizan Ayubi
*/
namespace Framework {
use Framework\Base as Base;
use Framework\Events as Events;
use Framework\StringMethods as StringMethods;
use Framework\RequestMethods as RequestMethods;
use Framework\Request\Exception as Exception;
class Request extends Base {
protected $_request;
/**
* @readwrite
*/
public $_willFollow = true;
/**
* @readwrite
*/
protected $_willShareSession = true;
/**
* @readwrite
*/
protected $_headers = array();
/**
* @readwrite
*/
protected $_options = array();
/**
* @readwrite
*/
protected $_referer;
/**
* @readwrite
*/
protected $_agent;
protected function _getExceptionForImplementation($method) {
return new Exception\Implementation("{$method} not implemented");
}
public function __construct($options = array()) {
parent::__construct($options);
$this->agent = RequestMethods::server("HTTP_USER_AGENT", "Curl/PHP " . PHP_VERSION);
}
public function delete($url, $parameters = array()) {
return $this->request("DELETE", $url, $parameters);
}
function get($url, $parameters = array()) {
if (!empty($parameters)) {
$url .= StringMethods::indexOf($url, "?") ? "&" : "?";
$url .= is_string($parameters) ? $parameters : http_build_query($parameters, "", "&");
}
return $this->request("GET", $url);
}
function head($url, $parameters = array()) {
return $this->request("HEAD", $url, $parameters);
}
function post($url, $parameters = array()) {
return $this->request("POST", $url, $parameters);
}
function put($url, $parameters = array()) {
return $this->request("PUT", $url, $parameters);
}
/**
* Use Curl to make the HTTP requests. Resposible for doing the real work.
* @param type $method
* @param type $url
* @param type $parameters
* @return \Framework\Request\Response
* @throws Exception\Response
*/
function request($method, $url, $parameters = array()) {
Events::fire("framework.request.request.before", array($method, $url, $parameters));
$request = $this->_request = curl_init();
if (is_array($parameters)) {
$parameters = http_build_query($parameters, "", "&");
}
$this
->_setRequestMethod($method)
->_setRequestOptions($url, $parameters)
->_setRequestHeaders();
$response = curl_exec($request);
if ($response) {
$response = new Request\Response(array(
"response" => $response
));
} else {
throw new Exception\Response(ucfirst(curl_error($request)));
}
Events::fire("framework.request.request.after", array($method, $url, $parameters, $response));
curl_close($request);
return $response;
}
/**
* Convenience method for tasks perform within the three important Request setter methods.
* @param type $key
* @param type $value
* @return \Framework\Request
*/
protected function _setOption($key, $value) {
curl_setopt($this->_request, $key, $value);
return $this;
}
/**
* Convenience method for tasks perform within the three important Request setter methods.
* @param type $key
* @return type
*/
protected function _normalize($key) {
return "CURLOPT_" . str_replace("CURLOPT_", "", strtoupper($key));
}
/**
* Sets Curl parameters relating to each of the different request methods.
* @param type $method
* @return \Framework\Request
*/
protected function _setRequestMethod($method) {
switch (strtoupper($method)) {
case "HEAD":
$this->_setOption(CURLOPT_NOBODY, true);
break;
case "GET":
$this->_setOption(CURLOPT_HTTPGET, true);
break;
case "POST":
$this->_setOption(CURLOPT_POST, true);
break;
default:
$this->_setOption(CURLOPT_CUSTOMREQUEST, $method);
break;
}
return $this;
}
/**
* Iterates through all the request-specific parameters that need to be set.
* @param type $url
* @param type $parameters
* @return \Framework\Request
*/
protected function _setRequestOptions($url, $parameters) {
$this
->_setOption(CURLOPT_URL, $url)
->_setOption(CURLOPT_HEADER, true)
->_setOption(CURLOPT_RETURNTRANSFER, true)
->_setOption(CURLOPT_USERAGENT, $this->agent);
if (!empty($parameters)) {
$this->_setOption(CURLOPT_POSTFIELDS, $parameters);
}
if ($this->willFollow) {
$this->_setOption(CURLOPT_FOLLOWLOCATION, true);
}
if ($this->willShareSession) {
$this->_setOption(CURLOPT_COOKIE, session_name() . "=" . session_id());
}
if ($this->referer) {
$this->_setOption(CURLOPT_REFERER, $this->referer);
}
foreach ($this->_options as $key => $value) {
$this->_setOption(constant($this->_normalize($key)), $value);
}
return $this;
}
/**
* Iterates through the headers specified by the setHeaders() setter method to add any custom headers to the request.
* @return \Framework\Request
*/
protected function _setRequestHeaders() {
$headers = array();
foreach ($this->headers as $key => $value) {
$headers[] = $key . ': ' . $value;
}
$this->_setOption(CURLOPT_HTTPHEADER, $headers);
return $this;
}
}
}