wallabag/src/Wallabag/CoreBundle/Helper/DownloadImages.php

234 lines
7 KiB
PHP
Raw Normal View History

<?php
namespace Wallabag\CoreBundle\Helper;
2016-10-30 09:48:29 +00:00
use Psr\Log\LoggerInterface;
use Symfony\Component\DomCrawler\Crawler;
2016-10-30 09:48:29 +00:00
use GuzzleHttp\Client;
use Symfony\Component\HttpFoundation\File\MimeType\MimeTypeExtensionGuesser;
use Symfony\Component\Finder\Finder;
2016-10-22 07:22:30 +00:00
class DownloadImages
{
2016-10-30 09:48:29 +00:00
const REGENERATE_PICTURES_QUALITY = 80;
private $client;
private $baseFolder;
private $logger;
2016-10-30 09:48:29 +00:00
private $mimeGuesser;
private $wallabagUrl;
public function __construct(Client $client, $baseFolder, $wallabagUrl, LoggerInterface $logger)
2016-10-22 07:22:30 +00:00
{
2016-10-30 09:48:29 +00:00
$this->client = $client;
$this->baseFolder = $baseFolder;
$this->wallabagUrl = rtrim($wallabagUrl, '/');
$this->logger = $logger;
2016-10-30 09:48:29 +00:00
$this->mimeGuesser = new MimeTypeExtensionGuesser();
$this->setFolder();
}
2016-10-30 09:48:29 +00:00
/**
* Setup base folder where all images are going to be saved.
*/
private function setFolder()
2016-10-22 07:22:30 +00:00
{
// if folder doesn't exist, attempt to create one and store the folder name in property $folder
2016-10-30 09:48:29 +00:00
if (!file_exists($this->baseFolder)) {
mkdir($this->baseFolder, 0755, true);
}
}
2016-10-30 09:48:29 +00:00
/**
* Process the html and extract image from it, save them to local and return the updated html.
*
* @param int $entryId ID of the entry
2016-10-30 09:48:29 +00:00
* @param string $html
* @param string $url Used as a base path for relative image and folder
2016-10-30 09:48:29 +00:00
*
* @return string
*/
public function processHtml($entryId, $html, $url)
2016-10-22 07:22:30 +00:00
{
2016-10-30 09:48:29 +00:00
$crawler = new Crawler($html);
$result = $crawler
->filterXpath('//img')
->extract(array('src'));
$relativePath = $this->getRelativePath($entryId);
2016-10-30 09:48:29 +00:00
// download and save the image to the folder
foreach ($result as $image) {
$imagePath = $this->processSingleImage($entryId, $image, $url, $relativePath);
2016-10-30 09:48:29 +00:00
if (false === $imagePath) {
continue;
}
$html = str_replace($image, $imagePath, $html);
}
2016-10-30 09:48:29 +00:00
return $html;
}
2016-10-30 09:48:29 +00:00
/**
* Process a single image:
* - retrieve it
* - re-saved it (for security reason)
* - return the new local path.
*
* @param int $entryId ID of the entry
2016-10-30 09:48:29 +00:00
* @param string $imagePath Path to the image to retrieve
* @param string $url Url from where the image were found
* @param string $relativePath Relative local path to saved the image
*
* @return string Relative url to access the image from the web
*/
public function processSingleImage($entryId, $imagePath, $url, $relativePath = null)
2016-10-22 07:22:30 +00:00
{
if (null === $relativePath) {
$relativePath = $this->getRelativePath($entryId);
}
$this->logger->debug('DownloadImages: working on image: '.$imagePath);
2016-10-30 09:48:29 +00:00
$folderPath = $this->baseFolder.'/'.$relativePath;
2016-10-30 09:48:29 +00:00
// build image path
$absolutePath = $this->getAbsoluteLink($url, $imagePath);
if (false === $absolutePath) {
$this->logger->error('DownloadImages: Can not determine the absolute path for that image, skipping.');
return false;
}
2016-10-30 10:27:09 +00:00
try {
$res = $this->client->get($absolutePath);
} catch (\Exception $e) {
$this->logger->error('DownloadImages: Can not retrieve image, skipping.', ['exception' => $e]);
2016-10-30 10:27:09 +00:00
return false;
}
2016-10-30 09:48:29 +00:00
$ext = $this->mimeGuesser->guess($res->getHeader('content-type'));
$this->logger->debug('DownloadImages: Checking extension', ['ext' => $ext, 'header' => $res->getHeader('content-type')]);
2016-10-30 10:27:09 +00:00
if (!in_array($ext, ['jpeg', 'jpg', 'gif', 'png'], true)) {
$this->logger->error('DownloadImages: Processed image with not allowed extension. Skipping '.$imagePath);
return false;
}
2016-10-30 09:48:29 +00:00
$hashImage = hash('crc32', $absolutePath);
$localPath = $folderPath.'/'.$hashImage.'.'.$ext;
try {
$im = imagecreatefromstring($res->getBody());
} catch (\Exception $e) {
$im = false;
}
2016-10-30 10:27:09 +00:00
if (false === $im) {
$this->logger->error('DownloadImages: Error while regenerating image', ['path' => $localPath]);
return false;
}
2016-10-30 09:48:29 +00:00
switch ($ext) {
case 'gif':
2016-11-03 17:01:25 +00:00
imagegif($im, $localPath);
$this->logger->debug('DownloadImages: Re-creating gif');
break;
2016-10-30 09:48:29 +00:00
case 'jpeg':
case 'jpg':
2016-11-03 17:01:25 +00:00
imagejpeg($im, $localPath, self::REGENERATE_PICTURES_QUALITY);
$this->logger->debug('DownloadImages: Re-creating jpg');
break;
2016-10-30 09:48:29 +00:00
case 'png':
2016-11-03 17:01:25 +00:00
imagepng($im, $localPath, ceil(self::REGENERATE_PICTURES_QUALITY / 100 * 9));
$this->logger->debug('DownloadImages: Re-creating png');
}
2016-10-30 09:48:29 +00:00
imagedestroy($im);
return $this->wallabagUrl.'/assets/images/'.$relativePath.'/'.$hashImage.'.'.$ext;
}
/**
* Remove all images for the given entry id.
*
* @param int $entryId ID of the entry
*/
public function removeImages($entryId)
{
$relativePath = $this->getRelativePath($entryId);
$folderPath = $this->baseFolder.'/'.$relativePath;
$finder = new Finder();
$finder
->files()
->ignoreDotFiles(true)
->in($folderPath);
foreach ($finder as $file) {
@unlink($file->getRealPath());
}
@rmdir($folderPath);
}
2016-10-30 09:48:29 +00:00
/**
* Generate the folder where we are going to save images based on the entry url.
*
* @param int $entryId ID of the entry
2016-10-30 09:48:29 +00:00
*
* @return string
*/
private function getRelativePath($entryId)
{
$hashId = hash('crc32', $entryId);
$relativePath = $hashId[0].'/'.$hashId[1].'/'.$hashId;
2016-10-30 09:48:29 +00:00
$folderPath = $this->baseFolder.'/'.$relativePath;
2016-10-30 09:48:29 +00:00
if (!file_exists($folderPath)) {
mkdir($folderPath, 0777, true);
}
$this->logger->debug('DownloadImages: Folder used for that Entry id', ['folder' => $folderPath, 'entryId' => $entryId]);
2016-10-30 09:48:29 +00:00
return $relativePath;
}
2016-10-30 09:48:29 +00:00
/**
* Make an $url absolute based on the $base.
*
* @see Graby->makeAbsoluteStr
*
* @param string $base Base url
* @param string $url Url to make it absolute
*
* @return false|string
*/
private function getAbsoluteLink($base, $url)
{
if (preg_match('!^https?://!i', $url)) {
// already absolute
return $url;
}
2016-10-30 09:48:29 +00:00
$base = new \SimplePie_IRI($base);
2016-10-30 09:48:29 +00:00
// remove '//' in URL path (causes URLs not to resolve properly)
if (isset($base->ipath)) {
$base->ipath = preg_replace('!//+!', '/', $base->ipath);
}
2016-10-30 09:48:29 +00:00
if ($absolute = \SimplePie_IRI::absolutize($base, $url)) {
return $absolute->get_uri();
2016-06-28 20:06:00 +00:00
}
2016-10-22 07:22:30 +00:00
$this->logger->error('DownloadImages: Can not make an absolute link', ['base' => $base, 'url' => $url]);
2016-10-30 10:27:09 +00:00
2016-10-30 09:48:29 +00:00
return false;
2016-06-28 20:06:00 +00:00
}
}