]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/CoreBundle/Helper/DownloadImages.php
Add a real configuration for CS-Fixer
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Helper / DownloadImages.php
CommitLineData
419214d7
TC
1<?php
2
3namespace Wallabag\CoreBundle\Helper;
4
7f559418 5use GuzzleHttp\Client;
577c0b6d 6use GuzzleHttp\Message\Response;
f808b016
JB
7use Psr\Log\LoggerInterface;
8use Symfony\Component\DomCrawler\Crawler;
e0597476 9use Symfony\Component\Finder\Finder;
f808b016 10use Symfony\Component\HttpFoundation\File\MimeType\MimeTypeExtensionGuesser;
419214d7 11
156bf627
JB
12class DownloadImages
13{
7f559418
JB
14 const REGENERATE_PICTURES_QUALITY = 80;
15
16 private $client;
17 private $baseFolder;
419214d7 18 private $logger;
7f559418 19 private $mimeGuesser;
41ada277 20 private $wallabagUrl;
419214d7 21
e0597476 22 public function __construct(Client $client, $baseFolder, $wallabagUrl, LoggerInterface $logger)
156bf627 23 {
7f559418
JB
24 $this->client = $client;
25 $this->baseFolder = $baseFolder;
e0597476 26 $this->wallabagUrl = rtrim($wallabagUrl, '/');
419214d7 27 $this->logger = $logger;
7f559418
JB
28 $this->mimeGuesser = new MimeTypeExtensionGuesser();
29
30 $this->setFolder();
419214d7
TC
31 }
32
7f559418
JB
33 /**
34 * Process the html and extract image from it, save them to local and return the updated html.
35 *
e0597476 36 * @param int $entryId ID of the entry
7f559418 37 * @param string $html
e0597476 38 * @param string $url Used as a base path for relative image and folder
7f559418
JB
39 *
40 * @return string
41 */
e0597476 42 public function processHtml($entryId, $html, $url)
156bf627 43 {
7f559418 44 $crawler = new Crawler($html);
419214d7
TC
45 $result = $crawler
46 ->filterXpath('//img')
9bf7752f 47 ->extract(['src']);
419214d7 48
e0597476 49 $relativePath = $this->getRelativePath($entryId);
7f559418 50
419214d7
TC
51 // download and save the image to the folder
52 foreach ($result as $image) {
e0597476 53 $imagePath = $this->processSingleImage($entryId, $image, $url, $relativePath);
7f559418
JB
54
55 if (false === $imagePath) {
56 continue;
57 }
58
9bf7752f 59 // if image contains "&" and we can't find it in the html it might be because it's encoded as &amp;
fcad69a4
JB
60 if (false !== stripos($image, '&') && false === stripos($html, $image)) {
61 $image = str_replace('&', '&amp;', $image);
62 }
63
7f559418 64 $html = str_replace($image, $imagePath, $html);
419214d7
TC
65 }
66
7f559418 67 return $html;
419214d7
TC
68 }
69
7f559418
JB
70 /**
71 * Process a single image:
72 * - retrieve it
73 * - re-saved it (for security reason)
74 * - return the new local path.
75 *
e0597476 76 * @param int $entryId ID of the entry
7f559418
JB
77 * @param string $imagePath Path to the image to retrieve
78 * @param string $url Url from where the image were found
79 * @param string $relativePath Relative local path to saved the image
80 *
81 * @return string Relative url to access the image from the web
82 */
e0597476 83 public function processSingleImage($entryId, $imagePath, $url, $relativePath = null)
156bf627 84 {
e0597476
JB
85 if (null === $relativePath) {
86 $relativePath = $this->getRelativePath($entryId);
419214d7
TC
87 }
88
f808b016 89 $this->logger->debug('DownloadImages: working on image: ' . $imagePath);
e0597476 90
f808b016 91 $folderPath = $this->baseFolder . '/' . $relativePath;
419214d7 92
7f559418
JB
93 // build image path
94 $absolutePath = $this->getAbsoluteLink($url, $imagePath);
95 if (false === $absolutePath) {
e0597476 96 $this->logger->error('DownloadImages: Can not determine the absolute path for that image, skipping.');
419214d7
TC
97
98 return false;
99 }
100
48656e0e
JB
101 try {
102 $res = $this->client->get($absolutePath);
103 } catch (\Exception $e) {
e0597476 104 $this->logger->error('DownloadImages: Can not retrieve image, skipping.', ['exception' => $e]);
48656e0e
JB
105
106 return false;
107 }
7f559418 108
577c0b6d
JB
109 $ext = $this->getExtensionFromResponse($res, $imagePath);
110 if (false === $res) {
419214d7
TC
111 return false;
112 }
577c0b6d 113
7f559418 114 $hashImage = hash('crc32', $absolutePath);
f808b016 115 $localPath = $folderPath . '/' . $hashImage . '.' . $ext;
7f559418
JB
116
117 try {
118 $im = imagecreatefromstring($res->getBody());
119 } catch (\Exception $e) {
120 $im = false;
121 }
419214d7 122
48656e0e 123 if (false === $im) {
e0597476 124 $this->logger->error('DownloadImages: Error while regenerating image', ['path' => $localPath]);
419214d7
TC
125
126 return false;
127 }
128
7f559418
JB
129 switch ($ext) {
130 case 'gif':
001cc716 131 imagegif($im, $localPath);
e0597476 132 $this->logger->debug('DownloadImages: Re-creating gif');
419214d7 133 break;
7f559418
JB
134 case 'jpeg':
135 case 'jpg':
001cc716 136 imagejpeg($im, $localPath, self::REGENERATE_PICTURES_QUALITY);
e0597476 137 $this->logger->debug('DownloadImages: Re-creating jpg');
419214d7 138 break;
7f559418 139 case 'png':
7a3260ae
KD
140 imagealphablending($im, false);
141 imagesavealpha($im, true);
001cc716 142 imagepng($im, $localPath, ceil(self::REGENERATE_PICTURES_QUALITY / 100 * 9));
e0597476 143 $this->logger->debug('DownloadImages: Re-creating png');
419214d7 144 }
7f559418 145
419214d7
TC
146 imagedestroy($im);
147
f808b016 148 return $this->wallabagUrl . '/assets/images/' . $relativePath . '/' . $hashImage . '.' . $ext;
419214d7
TC
149 }
150
e0597476
JB
151 /**
152 * Remove all images for the given entry id.
153 *
154 * @param int $entryId ID of the entry
155 */
156 public function removeImages($entryId)
157 {
158 $relativePath = $this->getRelativePath($entryId);
f808b016 159 $folderPath = $this->baseFolder . '/' . $relativePath;
e0597476
JB
160
161 $finder = new Finder();
162 $finder
163 ->files()
164 ->ignoreDotFiles(true)
165 ->in($folderPath);
166
167 foreach ($finder as $file) {
168 @unlink($file->getRealPath());
169 }
170
171 @rmdir($folderPath);
172 }
173
f808b016
JB
174 /**
175 * Setup base folder where all images are going to be saved.
176 */
177 private function setFolder()
178 {
179 // if folder doesn't exist, attempt to create one and store the folder name in property $folder
180 if (!file_exists($this->baseFolder)) {
181 mkdir($this->baseFolder, 0755, true);
182 }
183 }
184
7f559418
JB
185 /**
186 * Generate the folder where we are going to save images based on the entry url.
187 *
e0597476 188 * @param int $entryId ID of the entry
7f559418
JB
189 *
190 * @return string
191 */
e0597476 192 private function getRelativePath($entryId)
419214d7 193 {
e0597476 194 $hashId = hash('crc32', $entryId);
f808b016
JB
195 $relativePath = $hashId[0] . '/' . $hashId[1] . '/' . $hashId;
196 $folderPath = $this->baseFolder . '/' . $relativePath;
419214d7 197
7f559418
JB
198 if (!file_exists($folderPath)) {
199 mkdir($folderPath, 0777, true);
419214d7
TC
200 }
201
e0597476 202 $this->logger->debug('DownloadImages: Folder used for that Entry id', ['folder' => $folderPath, 'entryId' => $entryId]);
419214d7 203
7f559418
JB
204 return $relativePath;
205 }
419214d7 206
7f559418
JB
207 /**
208 * Make an $url absolute based on the $base.
209 *
210 * @see Graby->makeAbsoluteStr
211 *
212 * @param string $base Base url
213 * @param string $url Url to make it absolute
214 *
215 * @return false|string
216 */
217 private function getAbsoluteLink($base, $url)
218 {
219 if (preg_match('!^https?://!i', $url)) {
220 // already absolute
221 return $url;
419214d7
TC
222 }
223
7f559418 224 $base = new \SimplePie_IRI($base);
419214d7 225
7f559418
JB
226 // remove '//' in URL path (causes URLs not to resolve properly)
227 if (isset($base->ipath)) {
228 $base->ipath = preg_replace('!//+!', '/', $base->ipath);
419214d7
TC
229 }
230
7f559418
JB
231 if ($absolute = \SimplePie_IRI::absolutize($base, $url)) {
232 return $absolute->get_uri();
94654765 233 }
156bf627 234
e0597476 235 $this->logger->error('DownloadImages: Can not make an absolute link', ['base' => $base, 'url' => $url]);
48656e0e 236
7f559418 237 return false;
94654765 238 }
577c0b6d
JB
239
240 /**
241 * Retrieve and validate the extension from the response of the url of the image.
242 *
243 * @param Response $res Guzzle Response
244 * @param string $imagePath Path from the src image from the content (used for log only)
245 *
246 * @return string|false Extension name or false if validation failed
247 */
248 private function getExtensionFromResponse(Response $res, $imagePath)
249 {
250 $ext = $this->mimeGuesser->guess($res->getHeader('content-type'));
251 $this->logger->debug('DownloadImages: Checking extension', ['ext' => $ext, 'header' => $res->getHeader('content-type')]);
252
253 // ok header doesn't have the extension, try a different way
254 if (empty($ext)) {
255 $types = [
256 'jpeg' => "\xFF\xD8\xFF",
257 'gif' => 'GIF',
258 'png' => "\x89\x50\x4e\x47\x0d\x0a",
259 ];
260 $bytes = substr((string) $res->getBody(), 0, 8);
261
262 foreach ($types as $type => $header) {
263 if (0 === strpos($bytes, $header)) {
264 $ext = $type;
265 break;
266 }
267 }
268
269 $this->logger->debug('DownloadImages: Checking extension (alternative)', ['ext' => $ext]);
270 }
271
272 if (!in_array($ext, ['jpeg', 'jpg', 'gif', 'png'], true)) {
f808b016 273 $this->logger->error('DownloadImages: Processed image with not allowed extension. Skipping: ' . $imagePath);
577c0b6d
JB
274
275 return false;
276 }
277
278 return $ext;
279 }
419214d7 280}