2020-03-04 22:07:05 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2021-03-29 08:40:20 +02:00
|
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
2020-03-04 22:07:05 +01:00
|
|
|
*
|
|
|
|
* @license GNU APGL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Friendica\Network;
|
|
|
|
|
2020-03-04 22:30:24 +01:00
|
|
|
use DOMDocument;
|
|
|
|
use DomXPath;
|
2020-03-04 22:11:01 +01:00
|
|
|
use Friendica\Core\Config\IConfig;
|
2020-03-04 22:07:05 +01:00
|
|
|
use Friendica\Core\System;
|
|
|
|
use Friendica\Util\Network;
|
2020-03-04 22:11:01 +01:00
|
|
|
use Friendica\Util\Profiler;
|
2021-08-20 19:48:14 +02:00
|
|
|
use GuzzleHttp\Client;
|
2021-08-23 00:14:18 +02:00
|
|
|
use GuzzleHttp\Cookie\FileCookieJar;
|
2021-08-20 19:48:14 +02:00
|
|
|
use GuzzleHttp\Exception\RequestException;
|
2021-08-20 19:48:20 +02:00
|
|
|
use GuzzleHttp\Exception\TransferException;
|
2021-08-23 00:14:18 +02:00
|
|
|
use GuzzleHttp\RequestOptions;
|
2021-08-20 19:48:14 +02:00
|
|
|
use Psr\Http\Message\ResponseInterface;
|
2020-03-04 22:11:01 +01:00
|
|
|
use Psr\Log\LoggerInterface;
|
2020-03-04 22:07:05 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Performs HTTP requests to a given URL
|
|
|
|
*/
|
2021-08-23 00:14:18 +02:00
|
|
|
class HTTPClient implements IHTTPClient
|
2020-03-04 22:07:05 +01:00
|
|
|
{
|
2020-03-04 22:11:01 +01:00
|
|
|
/** @var LoggerInterface */
|
|
|
|
private $logger;
|
|
|
|
/** @var Profiler */
|
|
|
|
private $profiler;
|
|
|
|
/** @var IConfig */
|
|
|
|
private $config;
|
|
|
|
/** @var string */
|
2021-08-23 00:14:18 +02:00
|
|
|
private $userAgent;
|
|
|
|
/** @var Client */
|
|
|
|
private $client;
|
2020-03-04 22:11:01 +01:00
|
|
|
|
2021-08-23 00:14:18 +02:00
|
|
|
public function __construct(LoggerInterface $logger, Profiler $profiler, IConfig $config, string $userAgent, Client $client)
|
2020-03-04 22:11:01 +01:00
|
|
|
{
|
2021-08-23 00:14:18 +02:00
|
|
|
$this->logger = $logger;
|
|
|
|
$this->profiler = $profiler;
|
|
|
|
$this->config = $config;
|
|
|
|
$this->userAgent = $userAgent;
|
|
|
|
$this->client = $client;
|
2020-03-04 22:11:01 +01:00
|
|
|
}
|
|
|
|
|
2021-08-23 13:44:46 +02:00
|
|
|
/**
|
|
|
|
* @throws HTTPException\InternalServerErrorException
|
|
|
|
*/
|
|
|
|
protected function request(string $method, string $url, array $opts = []): IHTTPResult
|
2020-03-04 22:07:05 +01:00
|
|
|
{
|
2021-07-27 04:57:29 +00:00
|
|
|
$this->profiler->startRecording('network');
|
2021-08-23 14:02:52 +02:00
|
|
|
$this->logger->debug('Request start.', ['url' => $url, 'method' => $method]);
|
2020-03-04 22:07:05 +01:00
|
|
|
|
2021-07-19 06:14:14 +00:00
|
|
|
if (Network::isLocalLink($url)) {
|
|
|
|
$this->logger->info('Local link', ['url' => $url, 'callstack' => System::callstack(20)]);
|
|
|
|
}
|
|
|
|
|
2020-03-04 22:07:05 +01:00
|
|
|
if (strlen($url) > 1000) {
|
2020-03-04 22:15:46 +01:00
|
|
|
$this->logger->debug('URL is longer than 1000 characters.', ['url' => $url, 'callstack' => System::callstack(20)]);
|
2021-07-27 04:57:29 +00:00
|
|
|
$this->profiler->stopRecording();
|
2020-03-04 22:07:05 +01:00
|
|
|
return CurlResult::createErrorCurl(substr($url, 0, 200));
|
|
|
|
}
|
|
|
|
|
|
|
|
$parts2 = [];
|
|
|
|
$parts = parse_url($url);
|
|
|
|
$path_parts = explode('/', $parts['path'] ?? '');
|
|
|
|
foreach ($path_parts as $part) {
|
|
|
|
if (strlen($part) <> mb_strlen($part)) {
|
|
|
|
$parts2[] = rawurlencode($part);
|
|
|
|
} else {
|
|
|
|
$parts2[] = $part;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$parts['path'] = implode('/', $parts2);
|
|
|
|
$url = Network::unparseURL($parts);
|
|
|
|
|
|
|
|
if (Network::isUrlBlocked($url)) {
|
2020-03-04 22:15:46 +01:00
|
|
|
$this->logger->info('Domain is blocked.', ['url' => $url]);
|
2021-07-27 04:57:29 +00:00
|
|
|
$this->profiler->stopRecording();
|
2020-03-04 22:07:05 +01:00
|
|
|
return CurlResult::createErrorCurl($url);
|
|
|
|
}
|
|
|
|
|
2021-08-23 00:14:18 +02:00
|
|
|
$conf = [];
|
2020-03-04 22:07:05 +01:00
|
|
|
|
|
|
|
if (!empty($opts['cookiejar'])) {
|
2021-08-23 13:44:46 +02:00
|
|
|
$jar = new FileCookieJar($opts['cookiejar']);
|
2021-08-23 00:14:18 +02:00
|
|
|
$conf[RequestOptions::COOKIES] = $jar;
|
2020-03-04 22:07:05 +01:00
|
|
|
}
|
|
|
|
|
2021-08-23 13:44:46 +02:00
|
|
|
$header = [];
|
|
|
|
|
2020-03-04 22:07:05 +01:00
|
|
|
if (!empty($opts['accept_content'])) {
|
2021-08-23 13:44:46 +02:00
|
|
|
array_push($header, 'Accept: ' . $opts['accept_content']);
|
2020-03-04 22:07:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($opts['header'])) {
|
2021-08-23 13:44:46 +02:00
|
|
|
$header = array_merge($opts['header'], $header);
|
2020-03-04 22:07:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($opts['headers'])) {
|
2020-10-18 22:32:36 +02:00
|
|
|
$this->logger->notice('Wrong option \'headers\' used.');
|
2021-08-23 13:44:46 +02:00
|
|
|
$header = array_merge($opts['headers'], $header);
|
2020-03-04 22:07:05 +01:00
|
|
|
}
|
|
|
|
|
2021-08-23 13:44:46 +02:00
|
|
|
$conf[RequestOptions::HEADERS] = array_merge($this->client->getConfig(RequestOptions::HEADERS), $header);
|
|
|
|
|
2020-03-04 22:07:05 +01:00
|
|
|
if (!empty($opts['timeout'])) {
|
2021-08-23 13:44:46 +02:00
|
|
|
$conf[RequestOptions::TIMEOUT] = $opts['timeout'];
|
2020-03-04 22:07:05 +01:00
|
|
|
}
|
|
|
|
|
2021-08-23 13:44:46 +02:00
|
|
|
$conf[RequestOptions::ON_HEADERS] = function (ResponseInterface $response) use ($opts) {
|
2021-08-20 19:48:20 +02:00
|
|
|
if (!empty($opts['content_length']) &&
|
|
|
|
$response->getHeaderLine('Content-Length') > $opts['content_length']) {
|
|
|
|
throw new TransferException('The file is too big!');
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2021-08-20 19:48:14 +02:00
|
|
|
try {
|
2021-08-23 14:02:52 +02:00
|
|
|
switch ($method) {
|
|
|
|
case 'get':
|
|
|
|
$response = $this->client->get($url, $conf);
|
|
|
|
break;
|
|
|
|
case 'head':
|
|
|
|
$response = $this->client->head($url, $conf);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
throw new TransferException('Invalid method');
|
|
|
|
}
|
2021-08-20 19:48:14 +02:00
|
|
|
return new GuzzleResponse($response, $url);
|
2021-08-20 19:48:20 +02:00
|
|
|
} catch (TransferException $exception) {
|
|
|
|
if ($exception instanceof RequestException &&
|
|
|
|
$exception->hasResponse()) {
|
2021-08-20 19:48:21 +02:00
|
|
|
return new GuzzleResponse($exception->getResponse(), $url, $exception->getCode(), '');
|
2021-08-20 19:48:14 +02:00
|
|
|
} else {
|
2021-08-20 19:48:21 +02:00
|
|
|
return new CurlResult($url, '', ['http_code' => $exception->getCode()], $exception->getCode(), '');
|
2021-08-20 19:48:14 +02:00
|
|
|
}
|
|
|
|
} finally {
|
2021-08-23 14:02:52 +02:00
|
|
|
$this->logger->debug('Request stop.', ['url' => $url, 'method' => $method]);
|
2021-07-27 04:57:29 +00:00
|
|
|
$this->profiler->stopRecording();
|
2020-10-11 23:26:12 +02:00
|
|
|
}
|
2020-03-04 22:07:05 +01:00
|
|
|
}
|
|
|
|
|
2021-08-23 00:14:18 +02:00
|
|
|
/** {@inheritDoc}
|
|
|
|
*
|
|
|
|
* @throws HTTPException\InternalServerErrorException
|
|
|
|
*/
|
2021-08-23 13:44:46 +02:00
|
|
|
public function head(string $url, array $opts = []): IHTTPResult
|
2021-08-23 00:14:18 +02:00
|
|
|
{
|
|
|
|
return $this->request('head', $url, $opts);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritDoc}
|
|
|
|
*/
|
2021-08-23 13:44:46 +02:00
|
|
|
public function get(string $url, array $opts = []): IHTTPResult
|
2021-08-23 00:14:18 +02:00
|
|
|
{
|
|
|
|
return $this->request('get', $url, $opts);
|
|
|
|
}
|
|
|
|
|
2020-03-04 22:07:05 +01:00
|
|
|
/**
|
2020-03-04 22:56:16 +01:00
|
|
|
* {@inheritDoc}
|
2020-03-04 22:07:05 +01:00
|
|
|
*/
|
2021-08-23 14:02:52 +02:00
|
|
|
public function post(string $url, $params, array $headers = [], int $timeout = 0): IHTTPResult
|
2020-03-04 22:07:05 +01:00
|
|
|
{
|
2021-08-23 14:02:52 +02:00
|
|
|
$opts = [];
|
2020-03-04 22:07:05 +01:00
|
|
|
|
2021-08-23 14:02:52 +02:00
|
|
|
$opts[RequestOptions::JSON] = $params;
|
2020-03-04 22:07:05 +01:00
|
|
|
|
|
|
|
if (!empty($headers)) {
|
2021-08-23 14:02:52 +02:00
|
|
|
$opts['headers'] = $headers;
|
2020-03-04 22:07:05 +01:00
|
|
|
}
|
|
|
|
|
2021-08-23 14:02:52 +02:00
|
|
|
if (!empty($timeout)) {
|
|
|
|
$opts[RequestOptions::TIMEOUT] = $timeout;
|
2020-03-04 22:07:05 +01:00
|
|
|
}
|
|
|
|
|
2021-08-23 14:02:52 +02:00
|
|
|
return $this->request('post', $url, $opts);
|
2020-03-04 22:07:05 +01:00
|
|
|
}
|
|
|
|
|
2020-03-04 22:30:24 +01:00
|
|
|
/**
|
2020-03-04 22:56:16 +01:00
|
|
|
* {@inheritDoc}
|
2020-03-04 22:30:24 +01:00
|
|
|
*/
|
2020-03-04 22:33:31 +01:00
|
|
|
public function finalUrl(string $url, int $depth = 1, bool $fetchbody = false)
|
2020-03-04 22:30:24 +01:00
|
|
|
{
|
2021-07-19 06:14:14 +00:00
|
|
|
if (Network::isLocalLink($url)) {
|
|
|
|
$this->logger->info('Local link', ['url' => $url, 'callstack' => System::callstack(20)]);
|
|
|
|
}
|
|
|
|
|
2020-08-07 13:49:59 +00:00
|
|
|
if (Network::isUrlBlocked($url)) {
|
|
|
|
$this->logger->info('Domain is blocked.', ['url' => $url]);
|
|
|
|
return $url;
|
|
|
|
}
|
|
|
|
|
2020-09-16 04:56:37 +00:00
|
|
|
if (Network::isRedirectBlocked($url)) {
|
|
|
|
$this->logger->info('Domain should not be redirected.', ['url' => $url]);
|
|
|
|
return $url;
|
|
|
|
}
|
|
|
|
|
2020-03-04 22:30:24 +01:00
|
|
|
$url = Network::stripTrackingQueryParams($url);
|
|
|
|
|
|
|
|
if ($depth > 10) {
|
|
|
|
return $url;
|
|
|
|
}
|
|
|
|
|
|
|
|
$url = trim($url, "'");
|
|
|
|
|
2021-07-27 04:57:29 +00:00
|
|
|
$this->profiler->startRecording('network');
|
2020-03-04 22:30:24 +01:00
|
|
|
|
|
|
|
$ch = curl_init();
|
|
|
|
curl_setopt($ch, CURLOPT_URL, $url);
|
|
|
|
curl_setopt($ch, CURLOPT_HEADER, 1);
|
|
|
|
curl_setopt($ch, CURLOPT_NOBODY, 1);
|
2020-08-18 03:55:27 +00:00
|
|
|
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10);
|
2020-03-04 22:30:24 +01:00
|
|
|
curl_setopt($ch, CURLOPT_TIMEOUT, 10);
|
|
|
|
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|
2021-08-23 00:14:18 +02:00
|
|
|
curl_setopt($ch, CURLOPT_USERAGENT, $this->userAgent);
|
2020-03-04 22:30:24 +01:00
|
|
|
|
|
|
|
curl_exec($ch);
|
|
|
|
$curl_info = @curl_getinfo($ch);
|
|
|
|
$http_code = $curl_info['http_code'];
|
|
|
|
curl_close($ch);
|
|
|
|
|
2021-07-27 04:57:29 +00:00
|
|
|
$this->profiler->stopRecording();
|
2020-03-04 22:30:24 +01:00
|
|
|
|
|
|
|
if ($http_code == 0) {
|
|
|
|
return $url;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (in_array($http_code, ['301', '302'])) {
|
|
|
|
if (!empty($curl_info['redirect_url'])) {
|
2020-03-04 22:33:31 +01:00
|
|
|
return $this->finalUrl($curl_info['redirect_url'], ++$depth, $fetchbody);
|
2020-03-04 22:30:24 +01:00
|
|
|
} elseif (!empty($curl_info['location'])) {
|
2020-03-04 22:33:31 +01:00
|
|
|
return $this->finalUrl($curl_info['location'], ++$depth, $fetchbody);
|
2020-03-04 22:30:24 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check for redirects in the meta elements of the body if there are no redirects in the header.
|
|
|
|
if (!$fetchbody) {
|
2020-03-04 22:33:31 +01:00
|
|
|
return $this->finalUrl($url, ++$depth, true);
|
2020-03-04 22:30:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// if the file is too large then exit
|
|
|
|
if ($curl_info["download_content_length"] > 1000000) {
|
|
|
|
return $url;
|
|
|
|
}
|
|
|
|
|
|
|
|
// if it isn't a HTML file then exit
|
|
|
|
if (!empty($curl_info["content_type"]) && !strstr(strtolower($curl_info["content_type"]), "html")) {
|
|
|
|
return $url;
|
|
|
|
}
|
|
|
|
|
2021-07-27 04:57:29 +00:00
|
|
|
$this->profiler->startRecording('network');
|
2020-03-04 22:30:24 +01:00
|
|
|
|
|
|
|
$ch = curl_init();
|
|
|
|
curl_setopt($ch, CURLOPT_URL, $url);
|
|
|
|
curl_setopt($ch, CURLOPT_HEADER, 0);
|
|
|
|
curl_setopt($ch, CURLOPT_NOBODY, 0);
|
2020-08-18 03:55:27 +00:00
|
|
|
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10);
|
2020-03-04 22:30:24 +01:00
|
|
|
curl_setopt($ch, CURLOPT_TIMEOUT, 10);
|
|
|
|
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|
2021-08-23 00:14:18 +02:00
|
|
|
curl_setopt($ch, CURLOPT_USERAGENT, $this->userAgent);
|
2020-03-04 22:30:24 +01:00
|
|
|
|
|
|
|
$body = curl_exec($ch);
|
|
|
|
curl_close($ch);
|
|
|
|
|
2021-07-27 04:57:29 +00:00
|
|
|
$this->profiler->stopRecording();
|
2020-03-04 22:30:24 +01:00
|
|
|
|
|
|
|
if (trim($body) == "") {
|
|
|
|
return $url;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check for redirect in meta elements
|
|
|
|
$doc = new DOMDocument();
|
|
|
|
@$doc->loadHTML($body);
|
|
|
|
|
|
|
|
$xpath = new DomXPath($doc);
|
|
|
|
|
|
|
|
$list = $xpath->query("//meta[@content]");
|
|
|
|
foreach ($list as $node) {
|
|
|
|
$attr = [];
|
|
|
|
if ($node->attributes->length) {
|
|
|
|
foreach ($node->attributes as $attribute) {
|
|
|
|
$attr[$attribute->name] = $attribute->value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (@$attr["http-equiv"] == 'refresh') {
|
|
|
|
$path = $attr["content"];
|
|
|
|
$pathinfo = explode(";", $path);
|
|
|
|
foreach ($pathinfo as $value) {
|
|
|
|
if (substr(strtolower($value), 0, 4) == "url=") {
|
2020-03-04 22:33:31 +01:00
|
|
|
return $this->finalUrl(substr($value, 4), ++$depth);
|
2020-03-04 22:30:24 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $url;
|
|
|
|
}
|
|
|
|
|
2020-03-04 22:07:05 +01:00
|
|
|
/**
|
2020-03-04 22:56:16 +01:00
|
|
|
* {@inheritDoc}
|
2020-03-04 22:07:05 +01:00
|
|
|
*/
|
2021-08-20 22:30:54 +02:00
|
|
|
public function fetch(string $url, int $timeout = 0, string $accept_content = '', string $cookiejar = '')
|
2020-03-04 22:07:05 +01:00
|
|
|
{
|
2021-08-22 22:43:28 +02:00
|
|
|
$ret = $this->fetchFull($url, $timeout, $accept_content, $cookiejar);
|
2020-03-04 22:07:05 +01:00
|
|
|
|
|
|
|
return $ret->getBody();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-03-04 22:56:16 +01:00
|
|
|
* {@inheritDoc}
|
2020-03-04 22:07:05 +01:00
|
|
|
*/
|
2021-08-20 22:30:54 +02:00
|
|
|
public function fetchFull(string $url, int $timeout = 0, string $accept_content = '', string $cookiejar = '')
|
2020-03-04 22:07:05 +01:00
|
|
|
{
|
2020-03-04 22:35:09 +01:00
|
|
|
return $this->get(
|
2020-03-04 22:07:05 +01:00
|
|
|
$url,
|
|
|
|
[
|
|
|
|
'timeout' => $timeout,
|
|
|
|
'accept_content' => $accept_content,
|
|
|
|
'cookiejar' => $cookiejar
|
2021-08-20 19:48:14 +02:00
|
|
|
]
|
2020-03-04 22:07:05 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|