]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/CoreBundle/Helper/ContentProxy.php
Added internal setting to enable/disable headers storage
[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
8a219854 29 public function __construct(Graby $graby, RuleBasedTagger $tagger, ValidatorInterface $validator, LoggerInterface $logger, $fetchingErrorMessage, $storeArticleHeaders)
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);
106bdbcd
JB
56
57 // when content is imported, we have information in $content
58 // in case fetching content goes bad, we'll keep the imported information instead of overriding them
6acadf8e 59 if (empty($content) || $fetchedContent['html'] !== $this->fetchingErrorMessage) {
29dca432
JC
60 $content = $fetchedContent;
61 }
4d0ec0e7 62 }
558d9aab 63
6acadf8e
JB
64 // be sure to keep the url in case of error
65 // so we'll be able to refetch it in the future
66 $content['url'] = !empty($content['url']) ? $content['url'] : $url;
67
d0e9b3d6
JC
68 $this->stockEntry($entry, $content);
69 }
70
c18a2476
JB
71 /**
72 * Use a Symfony validator to ensure the language is well formatted.
73 *
74 * @param Entry $entry
75 * @param string $value Language to validate and save
76 */
77 public function updateLanguage(Entry $entry, $value)
78 {
79 // some lang are defined as fr-FR, es-ES.
80 // replacing - by _ might increase language support
81 $value = str_replace('-', '_', $value);
82
83 $errors = $this->validator->validate(
84 $value,
85 (new LocaleConstraint())
86 );
87
88 if (0 === count($errors)) {
89 $entry->setLanguage($value);
90
91 return;
92 }
93
94 $this->logger->warning('Language validation failed. ' . (string) $errors);
95 }
96
97 /**
98 * Use a Symfony validator to ensure the preview picture is a real url.
99 *
100 * @param Entry $entry
101 * @param string $value URL to validate and save
102 */
103 public function updatePreviewPicture(Entry $entry, $value)
104 {
105 $errors = $this->validator->validate(
106 $value,
107 (new UrlConstraint())
108 );
109
110 if (0 === count($errors)) {
111 $entry->setPreviewPicture($value);
112
113 return;
114 }
115
116 $this->logger->warning('PreviewPicture validation failed. ' . (string) $errors);
117 }
118
119 /**
120 * Update date.
121 *
122 * @param Entry $entry
123 * @param string $value Date to validate and save
124 */
125 public function updatePublishedAt(Entry $entry, $value)
126 {
ff9f89fd 127 $date = $value;
c18a2476
JB
128
129 // is it a timestamp?
3ef055ce 130 if (false !== filter_var($date, FILTER_VALIDATE_INT)) {
ff9f89fd 131 $date = '@' . $date;
c18a2476
JB
132 }
133
134 try {
ff9f89fd
JB
135 // is it already a DateTime?
136 // (it's inside the try/catch in case of fail to be parse time string)
137 if (!$date instanceof \DateTime) {
138 $date = new \DateTime($date);
139 }
140
141 $entry->setPublishedAt($date);
c18a2476
JB
142 } catch (\Exception $e) {
143 $this->logger->warning('Error while defining date', ['e' => $e, 'url' => $entry->getUrl(), 'date' => $value]);
144 }
145 }
146
d0e9b3d6
JC
147 /**
148 * Stock entry with fetched or imported content.
149 * Will fall back to OpenGraph data if available.
150 *
d5c2cc54 151 * @param Entry $entry Entry to stock
ec970721 152 * @param array $content Array with at least title, url & html
d0e9b3d6
JC
153 */
154 private function stockEntry(Entry $entry, array $content)
155 {
a05b6115
JB
156 $entry->setUrl($content['url']);
157
158 $domainName = parse_url($entry->getUrl(), PHP_URL_HOST);
159 if (false !== $domainName) {
160 $entry->setDomainName($domainName);
161 }
162
163 if (!empty($content['title'])) {
164 $entry->setTitle($content['title']);
165 } elseif (!empty($content['open_graph']['og_title'])) {
166 $entry->setTitle($content['open_graph']['og_title']);
558d9aab
JB
167 }
168
169 $html = $content['html'];
170 if (false === $html) {
36e6ef52 171 $html = $this->fetchingErrorMessage;
558d9aab 172
e668a812 173 if (!empty($content['open_graph']['og_description'])) {
558d9aab
JB
174 $html .= '<p><i>But we found a short description: </i></p>';
175 $html .= $content['open_graph']['og_description'];
176 }
177 }
178
48656e0e 179 $entry->setContent($html);
a05b6115 180 $entry->setReadingTime(Utils::getReadingTime($html));
f0378b4d 181
a05b6115
JB
182 if (!empty($content['status'])) {
183 $entry->setHttpStatus($content['status']);
5e9009ce
NL
184 }
185
645291e8 186 if (!empty($content['authors']) && is_array($content['authors'])) {
7b0b3622
NL
187 $entry->setPublishedBy($content['authors']);
188 }
189
8a219854 190 if (!empty($content['all_headers']) && $this->storeArticleHeaders) {
dda6a6ad
NL
191 $entry->setHeaders($content['all_headers']);
192 }
193
a05b6115
JB
194 if (!empty($content['date'])) {
195 $this->updatePublishedAt($entry, $content['date']);
196 }
0d349ea6 197
a05b6115
JB
198 if (!empty($content['language'])) {
199 $this->updateLanguage($entry, $content['language']);
200 }
201
202 if (!empty($content['open_graph']['og_image'])) {
203 $this->updatePreviewPicture($entry, $content['open_graph']['og_image']);
204 }
0d349ea6 205
be54dfe4 206 // if content is an image, define it as a preview too
0d349ea6 207 if (!empty($content['content_type']) && in_array($this->mimeGuesser->guess($content['content_type']), ['jpeg', 'jpg', 'gif', 'png'], true)) {
d0ec2ddd 208 $this->updatePreviewPicture($entry, $content['url']);
0d349ea6
JB
209 }
210
a05b6115
JB
211 if (!empty($content['content_type'])) {
212 $entry->setMimetype($content['content_type']);
4d0ec0e7 213 }
558d9aab 214
1c9cd2a7
KG
215 try {
216 $this->tagger->tag($entry);
217 } catch (\Exception $e) {
4094ea47 218 $this->logger->error('Error while trying to automatically tag an entry.', [
d0e9b3d6 219 'entry_url' => $content['url'],
1c9cd2a7 220 'error_msg' => $e->getMessage(),
4094ea47 221 ]);
1c9cd2a7 222 }
558d9aab 223 }
c2656f96 224
4d0ec0e7 225 /**
d0e9b3d6 226 * Validate that the given content has at least a title, an html and a url.
4d0ec0e7
JB
227 *
228 * @param array $content
6acadf8e
JB
229 *
230 * @return bool true if valid otherwise false
4d0ec0e7
JB
231 */
232 private function validateContent(array $content)
233 {
6acadf8e 234 return !empty($content['title']) && !empty($content['html']) && !empty($content['url']);
4d0ec0e7 235 }
558d9aab 236}