]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/CoreBundle/Helper/ContentProxy.php
Merge pull request #4438 from wallabag/dependabot/composer/scheb/two-factor-bundle...
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Helper / ContentProxy.php
CommitLineData
558d9aab
JB
1<?php
2
3namespace Wallabag\CoreBundle\Helper;
4
5use Graby\Graby;
45fd7e09 6use Psr\Log\LoggerInterface;
8d7b4f0e 7use Symfony\Component\HttpFoundation\File\MimeType\MimeTypeExtensionGuesser;
42f3bb2c 8use Symfony\Component\Validator\Constraints\Locale as LocaleConstraint;
0d349ea6
JB
9use Symfony\Component\Validator\Constraints\Url as UrlConstraint;
10use Symfony\Component\Validator\Validator\ValidatorInterface;
f808b016
JB
11use Wallabag\CoreBundle\Entity\Entry;
12use Wallabag\CoreBundle\Tools\Utils;
558d9aab
JB
13
14/**
423efade 15 * This kind of proxy class takes care of getting the content from an url
16 * and updates the entry with what it found.
558d9aab
JB
17 */
18class ContentProxy
19{
20 protected $graby;
c3510620 21 protected $tagger;
b22eb276 22 protected $ignoreOriginProcessor;
be54dfe4 23 protected $validator;
1c9cd2a7 24 protected $logger;
8d7b4f0e 25 protected $mimeGuesser;
29dca432 26 protected $fetchingErrorMessage;
6bc6fb1f 27 protected $eventDispatcher;
8a219854 28 protected $storeArticleHeaders;
558d9aab 29
b22eb276 30 public function __construct(Graby $graby, RuleBasedTagger $tagger, RuleBasedIgnoreOriginProcessor $ignoreOriginProcessor, ValidatorInterface $validator, LoggerInterface $logger, $fetchingErrorMessage, $storeArticleHeaders = false)
558d9aab 31 {
347fa6be 32 $this->graby = $graby;
c3510620 33 $this->tagger = $tagger;
b22eb276 34 $this->ignoreOriginProcessor = $ignoreOriginProcessor;
0d349ea6 35 $this->validator = $validator;
1c9cd2a7 36 $this->logger = $logger;
8d7b4f0e 37 $this->mimeGuesser = new MimeTypeExtensionGuesser();
29dca432 38 $this->fetchingErrorMessage = $fetchingErrorMessage;
8a219854 39 $this->storeArticleHeaders = $storeArticleHeaders;
558d9aab
JB
40 }
41
42 /**
6acadf8e 43 * Update entry using either fetched or provided content.
4d0ec0e7 44 *
6acadf8e
JB
45 * @param Entry $entry Entry to update
46 * @param string $url Url of the content
47 * @param array $content Array with content provided for import with AT LEAST keys title, html, url to skip the fetchContent from the url
48 * @param bool $disableContentUpdate Whether to skip trying to fetch content using Graby
558d9aab 49 */
6acadf8e 50 public function updateEntry(Entry $entry, $url, array $content = [], $disableContentUpdate = false)
558d9aab 51 {
2dbb5b23 52 $this->graby->toggleImgNoReferrer(true);
6acadf8e
JB
53 if (!empty($content['html'])) {
54 $content['html'] = $this->graby->cleanupHtml($content['html'], $url);
d5c2cc54 55 }
e668a812 56
6acadf8e 57 if ((empty($content) || false === $this->validateContent($content)) && false === $disableContentUpdate) {
ec970721 58 $fetchedContent = $this->graby->fetchContent($url);
b6c1e1ba
JB
59
60 $fetchedContent['title'] = $this->sanitizeContentTitle(
61 $fetchedContent['title'],
62 isset($fetchedContent['headers']['content-type']) ? $fetchedContent['headers']['content-type'] : ''
63 );
106bdbcd
JB
64
65 // when content is imported, we have information in $content
66 // in case fetching content goes bad, we'll keep the imported information instead of overriding them
6acadf8e 67 if (empty($content) || $fetchedContent['html'] !== $this->fetchingErrorMessage) {
29dca432
JC
68 $content = $fetchedContent;
69 }
4d0ec0e7 70 }
558d9aab 71
6acadf8e
JB
72 // be sure to keep the url in case of error
73 // so we'll be able to refetch it in the future
74 $content['url'] = !empty($content['url']) ? $content['url'] : $url;
75
4a81360e
KD
76 // In one case (at least in tests), url is empty here
77 // so we set it using $url provided in the updateEntry call.
781864b9
KD
78 // Not sure what are the other possible cases where this property is empty
79 if (empty($entry->getUrl()) && !empty($url)) {
4a81360e
KD
80 $entry->setUrl($url);
81 }
82
f3bfb875
JB
83 $entry->setGivenUrl($url);
84
d0e9b3d6
JC
85 $this->stockEntry($entry, $content);
86 }
87
c18a2476
JB
88 /**
89 * Use a Symfony validator to ensure the language is well formatted.
90 *
c18a2476
JB
91 * @param string $value Language to validate and save
92 */
93 public function updateLanguage(Entry $entry, $value)
94 {
95 // some lang are defined as fr-FR, es-ES.
96 // replacing - by _ might increase language support
97 $value = str_replace('-', '_', $value);
98
99 $errors = $this->validator->validate(
100 $value,
101 (new LocaleConstraint())
102 );
103
2a1ceb67 104 if (0 === \count($errors)) {
c18a2476
JB
105 $entry->setLanguage($value);
106
107 return;
108 }
109
110 $this->logger->warning('Language validation failed. ' . (string) $errors);
111 }
112
113 /**
114 * Use a Symfony validator to ensure the preview picture is a real url.
115 *
c18a2476
JB
116 * @param string $value URL to validate and save
117 */
118 public function updatePreviewPicture(Entry $entry, $value)
119 {
120 $errors = $this->validator->validate(
121 $value,
122 (new UrlConstraint())
123 );
124
2a1ceb67 125 if (0 === \count($errors)) {
c18a2476
JB
126 $entry->setPreviewPicture($value);
127
128 return;
129 }
130
131 $this->logger->warning('PreviewPicture validation failed. ' . (string) $errors);
132 }
133
134 /**
135 * Update date.
136 *
c18a2476
JB
137 * @param string $value Date to validate and save
138 */
139 public function updatePublishedAt(Entry $entry, $value)
140 {
ff9f89fd 141 $date = $value;
c18a2476
JB
142
143 // is it a timestamp?
3ef055ce 144 if (false !== filter_var($date, FILTER_VALIDATE_INT)) {
ff9f89fd 145 $date = '@' . $date;
c18a2476
JB
146 }
147
148 try {
ff9f89fd
JB
149 // is it already a DateTime?
150 // (it's inside the try/catch in case of fail to be parse time string)
151 if (!$date instanceof \DateTime) {
152 $date = new \DateTime($date);
153 }
154
155 $entry->setPublishedAt($date);
c18a2476
JB
156 } catch (\Exception $e) {
157 $this->logger->warning('Error while defining date', ['e' => $e, 'url' => $entry->getUrl(), 'date' => $value]);
158 }
159 }
160
af29e1bf
KD
161 /**
162 * Helper to extract and save host from entry url.
af29e1bf
KD
163 */
164 public function setEntryDomainName(Entry $entry)
165 {
166 $domainName = parse_url($entry->getUrl(), PHP_URL_HOST);
167 if (false !== $domainName) {
168 $entry->setDomainName($domainName);
169 }
170 }
171
172 /**
173 * Helper to set a default title using:
174 * - url basename, if applicable
175 * - hostname.
af29e1bf
KD
176 */
177 public function setDefaultEntryTitle(Entry $entry)
178 {
179 $url = parse_url($entry->getUrl());
180 $path = pathinfo($url['path'], PATHINFO_BASENAME);
181
182 if (empty($path)) {
183 $path = $url['host'];
184 }
185
186 $entry->setTitle($path);
187 }
188
83f1c327
T
189 /**
190 * Try to sanitize the title of the fetched content from wrong character encodings and invalid UTF-8 character.
191 *
b6c1e1ba
JB
192 * @param string $title
193 * @param string $contentType
83f1c327
T
194 *
195 * @return string
196 */
197 private function sanitizeContentTitle($title, $contentType)
198 {
199 if ('application/pdf' === $contentType) {
200 $title = $this->convertPdfEncodingToUTF8($title);
201 }
202
203 return $this->sanitizeUTF8Text($title);
204 }
205
206 /**
207 * If the title from the fetched content comes from a PDF, then its very possible that the character encoding is not
208 * UTF-8. This methods tries to identify the character encoding and translate the title to UTF-8.
209 *
210 * @param $title
211 *
212 * @return string (maybe contains invalid UTF-8 character)
213 */
214 private function convertPdfEncodingToUTF8($title)
215 {
216 // first try UTF-8 because its easier to detect its present/absence
217 foreach (['UTF-8', 'UTF-16BE', 'WINDOWS-1252'] as $encoding) {
218 if (mb_check_encoding($title, $encoding)) {
219 return mb_convert_encoding($title, 'UTF-8', $encoding);
220 }
221 }
222
223 return $title;
224 }
225
226 /**
227 * Remove invalid UTF-8 characters from the given string.
228 *
229 * @param string $rawText
230 *
231 * @return string
232 */
233 private function sanitizeUTF8Text($rawText)
234 {
235 if (mb_check_encoding($rawText, 'UTF-8')) {
236 return $rawText;
237 }
238
239 return iconv('UTF-8', 'UTF-8//IGNORE', $rawText);
240 }
241
d0e9b3d6
JC
242 /**
243 * Stock entry with fetched or imported content.
244 * Will fall back to OpenGraph data if available.
245 *
d5c2cc54 246 * @param Entry $entry Entry to stock
ec970721 247 * @param array $content Array with at least title, url & html
d0e9b3d6
JC
248 */
249 private function stockEntry(Entry $entry, array $content)
250 {
e07fadea 251 $this->updateOriginUrl($entry, $content['url']);
a05b6115 252
af29e1bf 253 $this->setEntryDomainName($entry);
a05b6115
JB
254
255 if (!empty($content['title'])) {
256 $entry->setTitle($content['title']);
558d9aab
JB
257 }
258
8ca858ee
JB
259 if (empty($content['html'])) {
260 $content['html'] = $this->fetchingErrorMessage;
558d9aab 261
5f084262 262 if (!empty($content['description'])) {
8ca858ee 263 $content['html'] .= '<p><i>But we found a short description: </i></p>';
5f084262 264 $content['html'] .= $content['description'];
558d9aab
JB
265 }
266 }
267
8ca858ee
JB
268 $entry->setContent($content['html']);
269 $entry->setReadingTime(Utils::getReadingTime($content['html']));
f0378b4d 270
a05b6115
JB
271 if (!empty($content['status'])) {
272 $entry->setHttpStatus($content['status']);
5e9009ce
NL
273 }
274
2a1ceb67 275 if (!empty($content['authors']) && \is_array($content['authors'])) {
7b0b3622
NL
276 $entry->setPublishedBy($content['authors']);
277 }
278
5f084262 279 if (!empty($content['headers'])) {
280 $entry->setHeaders($content['headers']);
dda6a6ad
NL
281 }
282
a05b6115
JB
283 if (!empty($content['date'])) {
284 $this->updatePublishedAt($entry, $content['date']);
285 }
0d349ea6 286
a05b6115
JB
287 if (!empty($content['language'])) {
288 $this->updateLanguage($entry, $content['language']);
289 }
290
423efade 291 $previewPictureUrl = '';
5f084262 292 if (!empty($content['image'])) {
293 $previewPictureUrl = $content['image'];
a05b6115 294 }
0d349ea6 295
be54dfe4 296 // if content is an image, define it as a preview too
b6c1e1ba 297 if (!empty($content['headers']['content-type']) && \in_array($this->mimeGuesser->guess($content['headers']['content-type']), ['jpeg', 'jpg', 'gif', 'png'], true)) {
423efade 298 $previewPictureUrl = $content['url'];
299 } elseif (empty($previewPictureUrl)) {
300 $this->logger->debug('Extracting images from content to provide a default preview picture');
301 $imagesUrls = DownloadImages::extractImagesUrlsFromHtml($content['html']);
302 $this->logger->debug(\count($imagesUrls) . ' pictures found');
b6c1e1ba 303
423efade 304 if (!empty($imagesUrls)) {
305 $previewPictureUrl = $imagesUrls[0];
306 }
307 }
308
6e68417f
JB
309 if (!empty($content['headers']['content-type'])) {
310 $entry->setMimetype($content['headers']['content-type']);
311 }
312
423efade 313 if (!empty($previewPictureUrl)) {
314 $this->updatePreviewPicture($entry, $previewPictureUrl);
0d349ea6
JB
315 }
316
1c9cd2a7
KG
317 try {
318 $this->tagger->tag($entry);
319 } catch (\Exception $e) {
4094ea47 320 $this->logger->error('Error while trying to automatically tag an entry.', [
d0e9b3d6 321 'entry_url' => $content['url'],
1c9cd2a7 322 'error_msg' => $e->getMessage(),
4094ea47 323 ]);
1c9cd2a7 324 }
558d9aab 325 }
c2656f96 326
e07fadea
KD
327 /**
328 * Update the origin_url field when a redirection occurs
329 * This field is set if it is empty and new url does not match ignore list.
330 *
e07fadea
KD
331 * @param string $url
332 */
333 private function updateOriginUrl(Entry $entry, $url)
334 {
5ba5e22a
KD
335 if (empty($url) || $entry->getUrl() === $url) {
336 return false;
337 }
338
339 $parsed_entry_url = parse_url($entry->getUrl());
340 $parsed_content_url = parse_url($url);
e07fadea 341
44e63667
KD
342 /**
343 * The following part computes the list of part changes between two
344 * parse_url arrays.
345 *
346 * As array_diff_assoc only computes changes to go from the left array
347 * to the right one, we make two differents arrays to have both
348 * directions. We merge these two arrays and sort keys before passing
349 * the result to the switch.
350 *
351 * The resulting array gives us all changing parts between the two
352 * urls: scheme, host, path, query and/or fragment.
353 */
5ba5e22a
KD
354 $diff_ec = array_diff_assoc($parsed_entry_url, $parsed_content_url);
355 $diff_ce = array_diff_assoc($parsed_content_url, $parsed_entry_url);
e07fadea 356
5ba5e22a
KD
357 $diff = array_merge($diff_ec, $diff_ce);
358 $diff_keys = array_keys($diff);
359 sort($diff_keys);
360
b22eb276 361 if ($this->ignoreOriginProcessor->process($entry)) {
5ba5e22a 362 $entry->setUrl($url);
1b220426 363
5ba5e22a
KD
364 return false;
365 }
e07fadea 366
44e63667
KD
367 /**
368 * This switch case lets us apply different behaviors according to
369 * changing parts of urls.
370 *
371 * As $diff_keys is an array, we provide arrays as cases. ['path'] means
372 * 'only the path is different between the two urls' whereas
373 * ['fragment', 'query'] means 'only fragment and query string parts are
374 * different between the two urls'.
1b220426 375 *
44e63667
KD
376 * Note that values in $diff_keys are sorted.
377 */
5ba5e22a
KD
378 switch ($diff_keys) {
379 case ['path']:
380 if (($parsed_entry_url['path'] . '/' === $parsed_content_url['path']) // diff is trailing slash, we only replace the url of the entry
381 || ($url === urldecode($entry->getUrl()))) { // we update entry url if new url is a decoded version of it, see EntryRepository#findByUrlAndUserId
382 $entry->setUrl($url);
383 }
384 break;
385 case ['scheme']:
b49c87ac 386 $entry->setUrl($url);
5ba5e22a
KD
387 break;
388 case ['fragment']:
5ba5e22a
KD
389 // noop
390 break;
391 default:
392 if (empty($entry->getOriginUrl())) {
393 $entry->setOriginUrl($entry->getUrl());
b49c87ac 394 }
5ba5e22a
KD
395 $entry->setUrl($url);
396 break;
e07fadea
KD
397 }
398 }
399
4d0ec0e7 400 /**
d0e9b3d6 401 * Validate that the given content has at least a title, an html and a url.
4d0ec0e7 402 *
6acadf8e 403 * @return bool true if valid otherwise false
4d0ec0e7
JB
404 */
405 private function validateContent(array $content)
406 {
6acadf8e 407 return !empty($content['title']) && !empty($content['html']) && !empty($content['url']);
4d0ec0e7 408 }
558d9aab 409}