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