3 * @copyright Copyright (C) 2010-2021, the Friendica project
5 * @license GNU APGL version 3 or any later version
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as
9 * published by the Free Software Foundation, either version 3 of the
10 * License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
22 namespace Friendica\Network;
27 use Friendica\Core\Config\IConfig;
28 use Friendica\Core\System;
29 use Friendica\Util\Network;
30 use Friendica\Util\Profiler;
31 use Psr\Log\LoggerInterface;
34 * Performs HTTP requests to a given URL
36 class HTTPRequest implements IHTTPRequest
38 /** @var LoggerInterface */
47 public function __construct(LoggerInterface $logger, Profiler $profiler, IConfig $config, App\BaseURL $baseUrl)
49 $this->logger = $logger;
50 $this->profiler = $profiler;
51 $this->config = $config;
52 $this->baseUrl = $baseUrl->get();
57 * @throws HTTPException\InternalServerErrorException
59 public function head(string $url, array $opts = [])
61 $opts['nobody'] = true;
63 return $this->get($url, $opts);
69 * @param int $redirects The recursion counter for internal use - default 0
71 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
73 public function get(string $url, array $opts = [], int &$redirects = 0)
75 $stamp1 = microtime(true);
77 if (strlen($url) > 1000) {
78 $this->logger->debug('URL is longer than 1000 characters.', ['url' => $url, 'callstack' => System::callstack(20)]);
79 $this->profiler->saveTimestamp($stamp1, 'network');
80 return CurlResult::createErrorCurl(substr($url, 0, 200));
84 $parts = parse_url($url);
85 $path_parts = explode('/', $parts['path'] ?? '');
86 foreach ($path_parts as $part) {
87 if (strlen($part) <> mb_strlen($part)) {
88 $parts2[] = rawurlencode($part);
93 $parts['path'] = implode('/', $parts2);
94 $url = Network::unparseURL($parts);
96 if (Network::isUrlBlocked($url)) {
97 $this->logger->info('Domain is blocked.', ['url' => $url]);
98 $this->profiler->saveTimestamp($stamp1, 'network');
99 return CurlResult::createErrorCurl($url);
102 $ch = @curl_init($url);
104 if (($redirects > 8) || (!$ch)) {
105 $this->profiler->saveTimestamp($stamp1, 'network');
106 return CurlResult::createErrorCurl($url);
109 @curl_setopt($ch, CURLOPT_HEADER, true);
111 if (!empty($opts['cookiejar'])) {
112 curl_setopt($ch, CURLOPT_COOKIEJAR, $opts["cookiejar"]);
113 curl_setopt($ch, CURLOPT_COOKIEFILE, $opts["cookiejar"]);
116 // These settings aren't needed. We're following the location already.
117 // @curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
118 // @curl_setopt($ch, CURLOPT_MAXREDIRS, 5);
120 if (!empty($opts['accept_content'])) {
124 ['Accept: ' . $opts['accept_content']]
128 if (!empty($opts['header'])) {
129 curl_setopt($ch, CURLOPT_HTTPHEADER, $opts['header']);
132 @curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
133 @curl_setopt($ch, CURLOPT_USERAGENT, $this->getUserAgent());
135 $range = intval($this->config->get('system', 'curl_range_bytes', 0));
138 @curl_setopt($ch, CURLOPT_RANGE, '0-' . $range);
141 // Without this setting it seems as if some webservers send compressed content
142 // This seems to confuse curl so that it shows this uncompressed.
143 /// @todo We could possibly set this value to "gzip" or something similar
144 curl_setopt($ch, CURLOPT_ENCODING, '');
146 if (!empty($opts['headers'])) {
147 $this->logger->notice('Wrong option \'headers\' used.');
148 @curl_setopt($ch, CURLOPT_HTTPHEADER, $opts['headers']);
151 if (!empty($opts['nobody'])) {
152 @curl_setopt($ch, CURLOPT_NOBODY, $opts['nobody']);
155 @curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10);
157 if (!empty($opts['timeout'])) {
158 @curl_setopt($ch, CURLOPT_TIMEOUT, $opts['timeout']);
160 $curl_time = $this->config->get('system', 'curl_timeout', 60);
161 @curl_setopt($ch, CURLOPT_TIMEOUT, intval($curl_time));
164 // by default we will allow self-signed certs
165 // but you can override this
167 $check_cert = $this->config->get('system', 'verifyssl');
168 @curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, (($check_cert) ? true : false));
171 @curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
174 $proxy = $this->config->get('system', 'proxy');
176 if (!empty($proxy)) {
177 @curl_setopt($ch, CURLOPT_HTTPPROXYTUNNEL, 1);
178 @curl_setopt($ch, CURLOPT_PROXY, $proxy);
179 $proxyuser = $this->config->get('system', 'proxyuser');
181 if (!empty($proxyuser)) {
182 @curl_setopt($ch, CURLOPT_PROXYUSERPWD, $proxyuser);
186 if ($this->config->get('system', 'ipv4_resolve', false)) {
187 curl_setopt($ch, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4);
190 $s = @curl_exec($ch);
191 $curl_info = @curl_getinfo($ch);
193 // Special treatment for HTTP Code 416
194 // See https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/416
195 if (($curl_info['http_code'] == 416) && ($range > 0)) {
196 @curl_setopt($ch, CURLOPT_RANGE, '');
197 $s = @curl_exec($ch);
198 $curl_info = @curl_getinfo($ch);
201 $curlResponse = new CurlResult($url, $s, $curl_info, curl_errno($ch), curl_error($ch));
203 if (!Network::isRedirectBlocked($url) && $curlResponse->isRedirectUrl()) {
205 $this->logger->notice('Curl redirect.', ['url' => $url, 'to' => $curlResponse->getRedirectUrl()]);
207 $this->profiler->saveTimestamp($stamp1, 'network');
208 return $this->get($curlResponse->getRedirectUrl(), $opts, $redirects);
213 $this->profiler->saveTimestamp($stamp1, 'network');
215 return $curlResponse;
221 * @param int $redirects The recursion counter for internal use - default 0
223 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
225 public function post(string $url, $params, array $headers = [], int $timeout = 0, int &$redirects = 0)
227 $stamp1 = microtime(true);
229 if (Network::isUrlBlocked($url)) {
230 $this->logger->info('Domain is blocked.' . ['url' => $url]);
231 $this->profiler->saveTimestamp($stamp1, 'network');
232 return CurlResult::createErrorCurl($url);
235 $ch = curl_init($url);
237 if (($redirects > 8) || (!$ch)) {
238 $this->profiler->saveTimestamp($stamp1, 'network');
239 return CurlResult::createErrorCurl($url);
242 $this->logger->debug('Post_url: start.', ['url' => $url]);
244 curl_setopt($ch, CURLOPT_HEADER, true);
245 curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
246 curl_setopt($ch, CURLOPT_POST, 1);
247 curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
248 curl_setopt($ch, CURLOPT_USERAGENT, $this->getUserAgent());
250 if ($this->config->get('system', 'ipv4_resolve', false)) {
251 curl_setopt($ch, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4);
254 @curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10);
256 if (intval($timeout)) {
257 curl_setopt($ch, CURLOPT_TIMEOUT, $timeout);
259 $curl_time = $this->config->get('system', 'curl_timeout', 60);
260 curl_setopt($ch, CURLOPT_TIMEOUT, intval($curl_time));
263 if (!empty($headers)) {
264 curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
267 $check_cert = $this->config->get('system', 'verifyssl');
268 curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, (($check_cert) ? true : false));
271 @curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
274 $proxy = $this->config->get('system', 'proxy');
276 if (!empty($proxy)) {
277 curl_setopt($ch, CURLOPT_HTTPPROXYTUNNEL, 1);
278 curl_setopt($ch, CURLOPT_PROXY, $proxy);
279 $proxyuser = $this->config->get('system', 'proxyuser');
280 if (!empty($proxyuser)) {
281 curl_setopt($ch, CURLOPT_PROXYUSERPWD, $proxyuser);
285 // don't let curl abort the entire application
286 // if it throws any errors.
288 $s = @curl_exec($ch);
290 $curl_info = curl_getinfo($ch);
292 $curlResponse = new CurlResult($url, $s, $curl_info, curl_errno($ch), curl_error($ch));
294 if (!Network::isRedirectBlocked($url) && $curlResponse->isRedirectUrl()) {
296 $this->logger->info('Post redirect.', ['url' => $url, 'to' => $curlResponse->getRedirectUrl()]);
298 $this->profiler->saveTimestamp($stamp1, 'network');
299 return $this->post($curlResponse->getRedirectUrl(), $params, $headers, $redirects, $timeout);
304 $this->profiler->saveTimestamp($stamp1, 'network');
306 // Very old versions of Lighttpd don't like the "Expect" header, so we remove it when needed
307 if ($curlResponse->getReturnCode() == 417) {
310 if (empty($headers)) {
311 $headers = ['Expect:'];
313 if (!in_array('Expect:', $headers)) {
314 array_push($headers, 'Expect:');
317 $this->logger->info('Server responds with 417, applying workaround', ['url' => $url]);
318 return $this->post($url, $params, $headers, $redirects, $timeout);
321 $this->logger->debug('Post_url: End.', ['url' => $url]);
323 return $curlResponse;
329 public function finalUrl(string $url, int $depth = 1, bool $fetchbody = false)
331 if (Network::isUrlBlocked($url)) {
332 $this->logger->info('Domain is blocked.', ['url' => $url]);
336 if (Network::isRedirectBlocked($url)) {
337 $this->logger->info('Domain should not be redirected.', ['url' => $url]);
341 $url = Network::stripTrackingQueryParams($url);
347 $url = trim($url, "'");
349 $stamp1 = microtime(true);
352 curl_setopt($ch, CURLOPT_URL, $url);
353 curl_setopt($ch, CURLOPT_HEADER, 1);
354 curl_setopt($ch, CURLOPT_NOBODY, 1);
355 curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10);
356 curl_setopt($ch, CURLOPT_TIMEOUT, 10);
357 curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
358 curl_setopt($ch, CURLOPT_USERAGENT, $this->getUserAgent());
361 $curl_info = @curl_getinfo($ch);
362 $http_code = $curl_info['http_code'];
365 $this->profiler->saveTimestamp($stamp1, "network");
367 if ($http_code == 0) {
371 if (in_array($http_code, ['301', '302'])) {
372 if (!empty($curl_info['redirect_url'])) {
373 return $this->finalUrl($curl_info['redirect_url'], ++$depth, $fetchbody);
374 } elseif (!empty($curl_info['location'])) {
375 return $this->finalUrl($curl_info['location'], ++$depth, $fetchbody);
379 // Check for redirects in the meta elements of the body if there are no redirects in the header.
381 return $this->finalUrl($url, ++$depth, true);
384 // if the file is too large then exit
385 if ($curl_info["download_content_length"] > 1000000) {
389 // if it isn't a HTML file then exit
390 if (!empty($curl_info["content_type"]) && !strstr(strtolower($curl_info["content_type"]), "html")) {
394 $stamp1 = microtime(true);
397 curl_setopt($ch, CURLOPT_URL, $url);
398 curl_setopt($ch, CURLOPT_HEADER, 0);
399 curl_setopt($ch, CURLOPT_NOBODY, 0);
400 curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10);
401 curl_setopt($ch, CURLOPT_TIMEOUT, 10);
402 curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
403 curl_setopt($ch, CURLOPT_USERAGENT, $this->getUserAgent());
405 $body = curl_exec($ch);
408 $this->profiler->saveTimestamp($stamp1, "network");
410 if (trim($body) == "") {
414 // Check for redirect in meta elements
415 $doc = new DOMDocument();
416 @$doc->loadHTML($body);
418 $xpath = new DomXPath($doc);
420 $list = $xpath->query("//meta[@content]");
421 foreach ($list as $node) {
423 if ($node->attributes->length) {
424 foreach ($node->attributes as $attribute) {
425 $attr[$attribute->name] = $attribute->value;
429 if (@$attr["http-equiv"] == 'refresh') {
430 $path = $attr["content"];
431 $pathinfo = explode(";", $path);
432 foreach ($pathinfo as $value) {
433 if (substr(strtolower($value), 0, 4) == "url=") {
434 return $this->finalUrl(substr($value, 4), ++$depth);
446 * @param int $redirects The recursion counter for internal use - default 0
448 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
450 public function fetch(string $url, int $timeout = 0, string $accept_content = '', string $cookiejar = '', int &$redirects = 0)
452 $ret = $this->fetchFull($url, $timeout, $accept_content, $cookiejar, $redirects);
454 return $ret->getBody();
460 * @param int $redirects The recursion counter for internal use - default 0
462 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
464 public function fetchFull(string $url, int $timeout = 0, string $accept_content = '', string $cookiejar = '', int &$redirects = 0)
469 'timeout' => $timeout,
470 'accept_content' => $accept_content,
471 'cookiejar' => $cookiejar
480 public function getUserAgent()
483 FRIENDICA_PLATFORM . " '" .
484 FRIENDICA_CODENAME . "' " .
485 FRIENDICA_VERSION . '-' .
486 DB_UPDATE_VERSION . '; ' .