friendica/src/Network/HTTPClient.php

255 lines
6.8 KiB
PHP
Raw Normal View History

<?php
/**
2021-03-29 08:40:20 +02:00
* @copyright Copyright (C) 2010-2021, the Friendica project
*
* @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;
use Friendica\Core\System;
use Friendica\Util\Network;
use Friendica\Util\Profiler;
2021-08-20 19:48:14 +02:00
use GuzzleHttp\Client;
use GuzzleHttp\Cookie\FileCookieJar;
2021-08-20 19:48:14 +02:00
use GuzzleHttp\Exception\RequestException;
use GuzzleHttp\Exception\TransferException;
use GuzzleHttp\RequestOptions;
use mattwright\URLResolver;
2021-08-20 19:48:14 +02:00
use Psr\Http\Message\ResponseInterface;
use Psr\Log\LoggerInterface;
/**
* Performs HTTP requests to a given URL
*/
class HTTPClient implements IHTTPClient
{
/** @var LoggerInterface */
private $logger;
/** @var Profiler */
private $profiler;
/** @var Client */
private $client;
/** @var URLResolver */
private $resolver;
public function __construct(LoggerInterface $logger, Profiler $profiler, Client $client, URLResolver $resolver)
{
$this->logger = $logger;
$this->profiler = $profiler;
$this->client = $client;
$this->resolver = $resolver;
}
2021-08-23 13:44:46 +02:00
/**
* @throws HTTPException\InternalServerErrorException
*/
protected function request(string $method, string $url, array $opts = []): IHTTPResult
{
2021-07-27 06:57:29 +02:00
$this->profiler->startRecording('network');
2021-08-23 14:02:52 +02:00
$this->logger->debug('Request start.', ['url' => $url, 'method' => $method]);
2021-07-19 08:14:14 +02:00
if (Network::isLocalLink($url)) {
$this->logger->info('Local link', ['url' => $url, 'callstack' => System::callstack(20)]);
}
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 06:57:29 +02:00
$this->profiler->stopRecording();
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 06:57:29 +02:00
$this->profiler->stopRecording();
return CurlResult::createErrorCurl($url);
}
$conf = [];
if (!empty($opts['cookiejar'])) {
2021-08-23 13:44:46 +02:00
$jar = new FileCookieJar($opts['cookiejar']);
$conf[RequestOptions::COOKIES] = $jar;
}
2021-08-23 13:44:46 +02:00
$header = [];
if (!empty($opts['accept_content'])) {
2021-08-23 13:44:46 +02:00
array_push($header, 'Accept: ' . $opts['accept_content']);
}
if (!empty($opts['header'])) {
2021-08-23 13:44:46 +02:00
$header = array_merge($opts['header'], $header);
}
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);
}
2021-08-23 13:44:46 +02:00
$conf[RequestOptions::HEADERS] = array_merge($this->client->getConfig(RequestOptions::HEADERS), $header);
if (!empty($opts['timeout'])) {
2021-08-23 13:44:46 +02:00
$conf[RequestOptions::TIMEOUT] = $opts['timeout'];
}
2021-08-23 13:44:46 +02:00
$conf[RequestOptions::ON_HEADERS] = function (ResponseInterface $response) use ($opts) {
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);
} catch (TransferException $exception) {
if ($exception instanceof RequestException &&
$exception->hasResponse()) {
return new GuzzleResponse($exception->getResponse(), $url, $exception->getCode(), '');
2021-08-20 19:48:14 +02:00
} else {
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 06:57:29 +02:00
$this->profiler->stopRecording();
}
}
/** {@inheritDoc}
*
* @throws HTTPException\InternalServerErrorException
*/
2021-08-23 13:44:46 +02:00
public function head(string $url, array $opts = []): IHTTPResult
{
return $this->request('head', $url, $opts);
}
/**
* {@inheritDoc}
*/
2021-08-23 13:44:46 +02:00
public function get(string $url, array $opts = []): IHTTPResult
{
return $this->request('get', $url, $opts);
}
/**
* {@inheritDoc}
*/
2021-08-23 14:02:52 +02:00
public function post(string $url, $params, array $headers = [], int $timeout = 0): IHTTPResult
{
2021-08-23 14:02:52 +02:00
$opts = [];
2021-08-23 14:02:52 +02:00
$opts[RequestOptions::JSON] = $params;
if (!empty($headers)) {
2021-08-23 14:02:52 +02:00
$opts['headers'] = $headers;
}
2021-08-23 14:02:52 +02:00
if (!empty($timeout)) {
$opts[RequestOptions::TIMEOUT] = $timeout;
}
2021-08-23 14:02:52 +02:00
return $this->request('post', $url, $opts);
}
/**
* {@inheritDoc}
*/
public function finalUrl(string $url)
{
$this->profiler->startRecording('network');
2021-07-19 08:14:14 +02:00
if (Network::isLocalLink($url)) {
$this->logger->debug('Local link', ['url' => $url, 'callstack' => System::callstack(20)]);
2021-07-19 08:14:14 +02:00
}
2020-08-07 15:49:59 +02:00
if (Network::isUrlBlocked($url)) {
$this->logger->info('Domain is blocked.', ['url' => $url]);
return $url;
}
if (Network::isRedirectBlocked($url)) {
$this->logger->info('Domain should not be redirected.', ['url' => $url]);
return $url;
}
$url = Network::stripTrackingQueryParams($url);
$url = trim($url, "'");
// Designate a temporary file that will store cookies during the session.
// Some websites test the browser for cookie support, so this enhances results.
$this->resolver->setCookieJar(tempnam(get_temppath() , 'url_resolver-'));
$urlResult = $this->resolver->resolveURL($url);
if ($urlResult->didErrorOccur()) {
throw new TransferException($urlResult->getErrorMessageString());
}
return $urlResult->getURL();
}
/**
* {@inheritDoc}
*/
2021-08-20 22:30:54 +02:00
public function fetch(string $url, int $timeout = 0, string $accept_content = '', string $cookiejar = '')
{
$ret = $this->fetchFull($url, $timeout, $accept_content, $cookiejar);
return $ret->getBody();
}
/**
* {@inheritDoc}
*/
2021-08-20 22:30:54 +02:00
public function fetchFull(string $url, int $timeout = 0, string $accept_content = '', string $cookiejar = '')
{
return $this->get(
$url,
[
'timeout' => $timeout,
'accept_content' => $accept_content,
'cookiejar' => $cookiejar
]
);
}
}