http.php
6.21 KB
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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
<?php
// namespace administrator\components\com_jmap\framework\http;
/**
* @package JMAP::FRAMEWORK::administrator::components::com_jmap
* @subpackage framework
* @subpackage http
* @author Joomla! Extensions Store
* @copyright (C) 2015 - Joomla! Extensions Store
* @license GNU/GPLv2 http://www.gnu.org/licenses/gpl-2.0.html
*/
defined('_JEXEC') or die('Restricted access');
/**
* HTTP connector client object interface
*
* @package JMAP::FRAMEWORK::administrator::components::com_jmap
* @subpackage framework
* @subpackage http
* @since 1.0
*/
interface IJMapHttp {
/**
* Method to send the GET command to the server.
*
* @param string $url Path to the resource.
* @param array $headers An array of name-value pairs to include in the header of the request.
*
* @return JMapHttpResponse
*
* @since 2.0
*/
public function get($url, array $headers = null);
/**
* Method to send the POST command to the server.
*
* @param string $url Path to the resource.
* @param mixed $data Either an associative array or a string to be sent with the request.
* @param array $headers An array of name-value pairs to include in the header of the request.
* @param int $timeout
* @param string $useragent
*
* @return JMapHttpResponse
*
* @since 1.0
*/
public function post($url, $data, array $headers = null, $timeout = null, $userAgent = null);
}
/**
* HTTP client class.
*
* @package JMAP::FRAMEWORK::administrator::components::com_jmap
* @subpackage framework
* @subpackage http
* @since 1.0
*/
class JMapHttp implements IJMapHttp {
/**
* Number of requests placed
* @var Int
* @access protected
*/
protected $numRequests;
/**
* @var JRegistry Options for the HTTP client
* @access protected
*/
protected $options;
/**
* @var JMapHttpTransport The HTTP transport object to use in sending HTTP requests.
* @access protected
*/
protected $transport;
/**
* Component params
* @var Object&
* @access protected
*/
protected $cParams;
/**
* Application object
* @var Object&
* @access protected
*/
protected $app;
/**
* Constructor.
*
* @param JMapHttpTransport $transport The HTTP transport object.
* @param $cParams Object& Component configuration
*
* @since 1.0
*/
public function __construct(JMapHttpTransport $transport = null, &$cParams = null) {
$this->numRequests = 0;
$this->cParams = $cParams;
$this->app = JFactory::getApplication();
$this->transport = isset($transport) ? $transport : new JMapHttpTransportSocket($this->options);
}
/**
* Method to send the OPTIONS command to the server.
*
* @param string $url Path to the resource.
* @param array $headers An array of name-value pairs to include in the header of the request.
*
* @return JMapHttpResponse
*
* @since 1.0
*/
public function options($url, array $headers = null) {
$this->numRequests++;
return $this->transport->request('OPTIONS', new JUri($url), null, $headers);
}
/**
* Method to send the HEAD command to the server.
*
* @param string $url Path to the resource.
* @param array $headers An array of name-value pairs to include in the header of the request.
*
* @return JMapHttpResponse
*
* @since 1.0
*/
public function head($url, array $headers = null) {
$this->numRequests++;
return $this->transport->request('HEAD', new JUri($url), null, $headers);
}
/**
* Method to send the GET command to the server.
*
* @param string $url Path to the resource.
* @param array $headers An array of name-value pairs to include in the header of the request.
*
* @return JMapHttpResponse
*
* @since 1.0
*/
public function get($url, array $headers = null) {
$this->numRequests++;
return $this->transport->request('GET', new JUri($url), null, $headers);
}
/**
* Method to send the POST command to the server.
*
* @param string $url Path to the resource.
* @param mixed $data Either an associative array or a string to be sent with the request.
* @param array $headers An array of name-value pairs to include in the header of the request.
*
* @return JMapHttpResponse
*
* @since 1.0
*/
public function post($url, $data, array $headers = null, $timeout = null, $userAgent = null) {
$this->numRequests++;
return $this->transport->request('POST', new JUri($url), $data, $headers, $timeout, $userAgent);
}
/**
* Method to send the PUT command to the server.
*
* @param string $url Path to the resource.
* @param mixed $data Either an associative array or a string to be sent with the request.
* @param array $headers An array of name-value pairs to include in the header of the request.
*
* @return JMapHttpResponse
*
* @since 1.0
*/
public function put($url, $data, array $headers = null) {
$this->numRequests++;
return $this->transport->request('PUT', new JUri($url), $data, $headers);
}
/**
* Method to send the DELETE command to the server.
*
* @param string $url Path to the resource.
* @param array $headers An array of name-value pairs to include in the header of the request.
*
* @return JMapHttpResponse
*
* @since 1.0
*/
public function delete($url, array $headers = null) {
$this->numRequests++;
return $this->transport->request('DELETE', new JUri($url), null, $headers);
}
/**
* Method to send the TRACE command to the server.
*
* @param string $url Path to the resource.
* @param array $headers An array of name-value pairs to include in the header of the request.
*
* @return JMapHttpResponse
*
* @since 1.0
*/
public function trace($url, array $headers = null) {
$this->numRequests++;
return $this->transport->request('TRACE', new JUri($url), null, $headers);
}
/**
* Check for remaining requests
*
* @access public
* @return boolean
*/
public function isValidRequest() {
// If unlimited requests, return always true
if ($this->cParams->get('max_images_requests', 0) == 0) {
return true;
}
// If limited check if remains count
$limitRequests = $this->cParams->get('max_images_requests');
if ($this->numRequests < $limitRequests) {
return true;
}
return false;
}
}