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