forked from Open-Web-Analytics/Open-Web-Analytics
-
Notifications
You must be signed in to change notification settings - Fork 1
/
owa_httpRequest.php
236 lines (171 loc) · 5.41 KB
/
owa_httpRequest.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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
<?php
//
// Open Web Analytics - An Open Source Web Analytics Framework
//
// Copyright 2006 Peter Adams. All rights reserved.
//
// Licensed under GPL v2.0 http://www.gnu.org/copyleft/gpl.html
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// $Id$
//
use GuzzleHttp\Client;
use GuzzleHttp\Psr7\Request;
use GuzzleHttp\Exception\RequestException;
use GuzzleHttp\Exception\ConnectException;
use GuzzleHttp\Exception\ClientException;
/**
* Wrapper for Snoopy http request class
*
* @author Peter Adams <[email protected]>
* @copyright Copyright © 2006 Peter Adams <[email protected]>
* @license http://www.gnu.org/copyleft/gpl.html GPL v2.0
* @category owa
* @package owa
* @version $Revision$
* @since owa 1.0.0
*/
class owa_http {
/**
* Configuration
*
* @var array
*/
var $config;
/**
* Error handler
*
* @var object
*/
var $e;
/**
* The length of text contained in the snippet
*
* @var string
*/
var $snip_len = 100;
/**
* The string that is added to the beginning and
* end of snippet text.
*
* @var string
*/
var $snip_str = '...';
/**
* Anchor information for a particular link
*
* @var array
*/
var $anchor_info = [];
var $http;
var $response;
var $response_headers;
var $response_code;
var $request_headers;
function __construct() {
$this->http = new Client( [
'timeout' => 5.0,
'connect_timeout' => 5.0
] );
}
/**
* Searches a fetched html document for the anchor of a specific url
*
* @param string $link
*/
function extractAnchors() {
$regex = '/<a\s[^>]*href\s*=\s*([\"\']??)(http|https[^\\1 >]*?)\\1[^>]*>s*(.*)<\/a>/simU';
if( preg_match_all("$regex", $this->getResponseBody(), $matches, PREG_SET_ORDER ) ) {
owa_coreAPI::debug( 'Found anchors: ' . print_r( $matches, true ) );
return $matches;
}
}
function extractAnchorText( $url ) {
$anchors = $this->extractAnchors();
$anchortext = '';
if ( $anchors ) {
foreach( $anchors as $match ) {
// match[0] = full matching <a> tag
// $match[2] = link address
// $match[3] = link text
//strip any HTML tags (i.e. img, span, etc)
if ( $match[3] ) {
$match[3] = trim( owa_sanitize::stripAllTags( $match[3] ) );
}
// if anything is left as anchortext then use that
if ( $match[3] && $url === $match[2] ) {
$anchortext = $match[3];
owa_coreAPI::debug('Anchor info: '.print_r($this->anchor_info, true));
return owa_lib::inputFilter( $anchortext );
}
}
}
}
function extract_title() {
preg_match('/<title[^>]*>(.*?)<\/title>/', $this->getResponseBody(), $matches);
$title = null;
if ($matches && count($matches) > 0 && isset($matches[1])) {
$title = $matches[1];
}
owa_coreAPI::debug("referrer title extract: ". print_r($title, true));
return trim($title);
}
function strip_selected_tags($str, $tags = array(), $stripContent = false) {
foreach ($tags as $k => $tag){
if ($stripContent == true) {
$pattern = sprintf('#(<%s.*?>)(.*?)(<\/%s.*?>)#is', preg_quote($tag), preg_quote($tag));
$str = preg_replace($pattern,"",$str);
}
$str = preg_replace($pattern, '${2}',$str);
}
return $str;
}
function getRequest($url, $arguments = '') {
$this->response = '';
owa_coreAPI::debug("GET: $url");
try {
$request = new Request('GET', trim( $url ) );
$this->response = $this->http->send( $request, [
'allow_redirects' => [
'max' => 5,
'strict' => false,
'referer' => false,
'protocols' => ['http', 'https'],
'track_redirects' => false
],
'headers' => [
'User-Agent' => owa_coreAPI::getSetting('base', 'owa_user_agent')
]
]);
owa_coreAPI::debug("HTTP STATUS CODE:" . $this->getResponseStatusCode() );
}
catch( \GuzzleHttp\Exception\RequestException | \GuzzleHttp\Exception\ConnectException | \GuzzleHttp\Exception\ClientException $e ) {
$r = $e->getRequest();
$res = null;
if ( method_exists( $e, 'hasResponse' ) && $e->hasResponse() ) {
$res = $e->getResponse();
}
owa_coreAPI::debug( print_r($r, true ) );
owa_coreAPI::debug( print_r($res, true ) );
}
if ( $this->response ) {
return $this->getResponseBody();
}
}
function getResponseStatusCode() {
if ( $this->response ) {
return $this->response->getStatusCode();
}
}
function getResponseBody() {
if ( $this->response ) {
return $this->response->getBody();
}
}
}
?>