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