]> git.mxchange.org Git - friendica.git/blob - src/Network/HTTPClient.php
Revert setCookieJar() and add overwrite parameter fpr rare cases
[friendica.git] / src / Network / HTTPClient.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2021, the Friendica project
4  *
5  * @license GNU APGL version 3 or any later version
6  *
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.
11  *
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.
16  *
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/>.
19  *
20  */
21
22 namespace Friendica\Network;
23
24 use Friendica\Core\System;
25 use Friendica\Util\Network;
26 use Friendica\Util\Profiler;
27 use GuzzleHttp\Client;
28 use GuzzleHttp\Cookie\FileCookieJar;
29 use GuzzleHttp\Exception\RequestException;
30 use GuzzleHttp\Exception\TransferException;
31 use GuzzleHttp\RequestOptions;
32 use mattwright\URLResolver;
33 use Psr\Http\Message\ResponseInterface;
34 use Psr\Log\InvalidArgumentException;
35 use Psr\Log\LoggerInterface;
36
37 /**
38  * Performs HTTP requests to a given URL
39  */
40 class HTTPClient implements IHTTPClient
41 {
42         /** @var LoggerInterface */
43         private $logger;
44         /** @var Profiler */
45         private $profiler;
46         /** @var Client */
47         private $client;
48         /** @var URLResolver */
49         private $resolver;
50
51         public function __construct(LoggerInterface $logger, Profiler $profiler, Client $client, URLResolver $resolver)
52         {
53                 $this->logger   = $logger;
54                 $this->profiler = $profiler;
55                 $this->client   = $client;
56                 $this->resolver = $resolver;
57         }
58
59         /**
60          * @throws HTTPException\InternalServerErrorException
61          */
62         protected function request(string $method, string $url, array $opts = []): IHTTPResult
63         {
64                 $this->profiler->startRecording('network');
65                 $this->logger->debug('Request start.', ['url' => $url, 'method' => $method]);
66
67                 if (Network::isLocalLink($url)) {
68                         $this->logger->info('Local link', ['url' => $url, 'callstack' => System::callstack(20)]);
69                 }
70
71                 if (strlen($url) > 1000) {
72                         $this->logger->debug('URL is longer than 1000 characters.', ['url' => $url, 'callstack' => System::callstack(20)]);
73                         $this->profiler->stopRecording();
74                         return CurlResult::createErrorCurl(substr($url, 0, 200));
75                 }
76
77                 $parts2     = [];
78                 $parts      = parse_url($url);
79                 $path_parts = explode('/', $parts['path'] ?? '');
80                 foreach ($path_parts as $part) {
81                         if (strlen($part) <> mb_strlen($part)) {
82                                 $parts2[] = rawurlencode($part);
83                         } else {
84                                 $parts2[] = $part;
85                         }
86                 }
87                 $parts['path'] = implode('/', $parts2);
88                 $url           = Network::unparseURL($parts);
89
90                 if (Network::isUrlBlocked($url)) {
91                         $this->logger->info('Domain is blocked.', ['url' => $url]);
92                         $this->profiler->stopRecording();
93                         return CurlResult::createErrorCurl($url);
94                 }
95
96                 $conf = [];
97
98                 if (!empty($opts['cookiejar'])) {
99                         $jar                           = new FileCookieJar($opts['cookiejar']);
100                         $conf[RequestOptions::COOKIES] = $jar;
101                 }
102
103                 $header = [];
104
105                 if (!empty($opts['accept_content'])) {
106                         $header['Accept'] = $opts['accept_content'];
107                 }
108
109                 if (!empty($opts['header'])) {
110                         $header = array_merge($opts['header'], $header);
111                 }
112
113                 if (!empty($opts['headers'])) {
114                         $this->logger->notice('Wrong option \'headers\' used.');
115                         $header = array_merge($opts['headers'], $header);
116                 }
117
118                 $conf[RequestOptions::HEADERS] = array_merge($this->client->getConfig(RequestOptions::HEADERS), $header);
119
120                 if (!empty($opts['timeout'])) {
121                         $conf[RequestOptions::TIMEOUT] = $opts['timeout'];
122                 }
123
124                 $conf[RequestOptions::ON_HEADERS] = function (ResponseInterface $response) use ($opts) {
125                         if (!empty($opts['content_length']) &&
126                                 $response->getHeaderLine('Content-Length') > $opts['content_length']) {
127                                 throw new TransferException('The file is too big!');
128                         }
129                 };
130
131                 try {
132                         $this->logger->debug('http request config.', ['url' => $url, 'method' => $method, 'options' => $conf]);
133
134                         switch ($method) {
135                                 case 'get':
136                                 case 'head':
137                                 case 'post':
138                                 case 'put':
139                                 case 'delete':
140                                         $response = $this->client->$method($url, $conf);
141                                         break;
142                                 default:
143                                         throw new TransferException('Invalid method');
144                         }
145                         return new GuzzleResponse($response, $url);
146                 } catch (TransferException $exception) {
147                         if ($exception instanceof RequestException &&
148                                 $exception->hasResponse()) {
149                                 return new GuzzleResponse($exception->getResponse(), $url, $exception->getCode(), '');
150                         } else {
151                                 return new CurlResult($url, '', ['http_code' => $exception->getCode()], $exception->getCode(), '');
152                         }
153                 } catch (InvalidArgumentException $argumentException) {
154                         $this->logger->info('Invalid Argument for HTTP call.', ['url' => $url, 'method' => $method, 'exception' => $argumentException]);
155                         return new CurlResult($url, '', ['http_code' => $argumentException->getCode()], $argumentException->getCode(), $argumentException->getMessage());
156                 } finally {
157                         $this->logger->debug('Request stop.', ['url' => $url, 'method' => $method]);
158                         $this->profiler->stopRecording();
159                 }
160         }
161
162         /** {@inheritDoc}
163          *
164          * @throws HTTPException\InternalServerErrorException
165          */
166         public function head(string $url, array $opts = []): IHTTPResult
167         {
168                 return $this->request('head', $url, $opts);
169         }
170
171         /**
172          * {@inheritDoc}
173          */
174         public function get(string $url, array $opts = []): IHTTPResult
175         {
176                 return $this->request('get', $url, $opts);
177         }
178
179         /**
180          * {@inheritDoc}
181          */
182         public function post(string $url, $params, array $headers = [], int $timeout = 0): IHTTPResult
183         {
184                 $opts = [];
185
186                 $opts[RequestOptions::JSON] = $params;
187
188                 if (!empty($headers)) {
189                         $opts['headers'] = $headers;
190                 }
191
192                 if (!empty($timeout)) {
193                         $opts[RequestOptions::TIMEOUT] = $timeout;
194                 }
195
196                 return $this->request('post', $url, $opts);
197         }
198
199         /**
200          * {@inheritDoc}
201          */
202         public function finalUrl(string $url)
203         {
204                 $this->profiler->startRecording('network');
205
206                 if (Network::isLocalLink($url)) {
207                         $this->logger->debug('Local link', ['url' => $url, 'callstack' => System::callstack(20)]);
208                 }
209
210                 if (Network::isUrlBlocked($url)) {
211                         $this->logger->info('Domain is blocked.', ['url' => $url]);
212                         return $url;
213                 }
214
215                 if (Network::isRedirectBlocked($url)) {
216                         $this->logger->info('Domain should not be redirected.', ['url' => $url]);
217                         return $url;
218                 }
219
220                 $url = Network::stripTrackingQueryParams($url);
221
222                 $url = trim($url, "'");
223
224                 $urlResult = $this->resolver->resolveURL($url);
225
226                 if ($urlResult->didErrorOccur()) {
227                         throw new TransferException($urlResult->getErrorMessageString());
228                 }
229
230                 return $urlResult->getURL();
231         }
232
233         /**
234          * {@inheritDoc}
235          */
236         public function fetch(string $url, int $timeout = 0, string $accept_content = '', string $cookiejar = '')
237         {
238                 $ret = $this->fetchFull($url, $timeout, $accept_content, $cookiejar);
239
240                 return $ret->getBody();
241         }
242
243         /**
244          * {@inheritDoc}
245          */
246         public function fetchFull(string $url, int $timeout = 0, string $accept_content = '', string $cookiejar = '')
247         {
248                 return $this->get(
249                         $url,
250                         [
251                                 'timeout'        => $timeout,
252                                 'accept_content' => $accept_content,
253                                 'cookiejar'      => $cookiejar
254                         ]
255                 );
256         }
257 }