2018-09-25 07:30:50 -04:00
|
|
|
<?php namespace BookStack\Uploads;
|
2015-12-09 14:50:17 -05:00
|
|
|
|
2018-09-25 11:58:03 -04:00
|
|
|
use BookStack\Exceptions\ImageUploadException;
|
2018-05-20 13:16:01 -04:00
|
|
|
use DB;
|
2020-12-06 07:58:40 -05:00
|
|
|
use ErrorException;
|
2016-02-02 02:34:48 -05:00
|
|
|
use Exception;
|
2018-09-25 11:58:03 -04:00
|
|
|
use Illuminate\Contracts\Cache\Repository as Cache;
|
|
|
|
use Illuminate\Contracts\Filesystem\Factory as FileSystem;
|
2020-12-06 07:58:40 -05:00
|
|
|
use Illuminate\Contracts\Filesystem\Filesystem as FileSystemInstance;
|
|
|
|
use Illuminate\Contracts\Filesystem\FileNotFoundException;
|
2019-09-13 18:58:40 -04:00
|
|
|
use Illuminate\Support\Str;
|
2016-02-03 15:52:25 -05:00
|
|
|
use Intervention\Image\Exception\NotSupportedException;
|
2015-12-09 14:50:17 -05:00
|
|
|
use Intervention\Image\ImageManager;
|
|
|
|
use Symfony\Component\HttpFoundation\File\UploadedFile;
|
|
|
|
|
2020-12-06 07:58:40 -05:00
|
|
|
class ImageService
|
2015-12-09 14:50:17 -05:00
|
|
|
{
|
|
|
|
protected $imageTool;
|
|
|
|
protected $cache;
|
|
|
|
protected $storageUrl;
|
2018-05-20 13:16:01 -04:00
|
|
|
protected $image;
|
2020-12-06 07:58:40 -05:00
|
|
|
protected $fileSystem;
|
2015-12-09 14:50:17 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* ImageService constructor.
|
|
|
|
*/
|
2020-12-08 18:46:38 -05:00
|
|
|
public function __construct(Image $image, ImageManager $imageTool, FileSystem $fileSystem, Cache $cache)
|
2015-12-09 14:50:17 -05:00
|
|
|
{
|
2018-05-20 13:16:01 -04:00
|
|
|
$this->image = $image;
|
2015-12-09 14:50:17 -05:00
|
|
|
$this->imageTool = $imageTool;
|
2020-12-06 07:58:40 -05:00
|
|
|
$this->fileSystem = $fileSystem;
|
2015-12-09 14:50:17 -05:00
|
|
|
$this->cache = $cache;
|
|
|
|
}
|
|
|
|
|
2018-03-25 07:41:52 -04:00
|
|
|
/**
|
|
|
|
* Get the storage that will be used for storing images.
|
|
|
|
*/
|
2020-12-06 07:58:40 -05:00
|
|
|
protected function getStorage(string $type = ''): FileSystemInstance
|
2018-03-25 07:41:52 -04:00
|
|
|
{
|
2019-06-23 11:01:15 -04:00
|
|
|
$storageType = config('filesystems.images');
|
2018-03-25 07:41:52 -04:00
|
|
|
|
2019-06-23 11:01:15 -04:00
|
|
|
// Ensure system images (App logo) are uploaded to a public space
|
2018-03-25 07:41:52 -04:00
|
|
|
if ($type === 'system' && $storageType === 'local_secure') {
|
|
|
|
$storageType = 'local';
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->fileSystem->disk($storageType);
|
|
|
|
}
|
|
|
|
|
2015-12-09 17:30:55 -05:00
|
|
|
/**
|
|
|
|
* Saves a new image from an upload.
|
|
|
|
* @return mixed
|
2016-03-13 09:30:47 -04:00
|
|
|
* @throws ImageUploadException
|
2015-12-09 17:30:55 -05:00
|
|
|
*/
|
2019-05-04 10:48:15 -04:00
|
|
|
public function saveNewFromUpload(
|
|
|
|
UploadedFile $uploadedFile,
|
|
|
|
string $type,
|
|
|
|
int $uploadedTo = 0,
|
|
|
|
int $resizeWidth = null,
|
|
|
|
int $resizeHeight = null,
|
|
|
|
bool $keepRatio = true
|
2019-05-05 09:54:37 -04:00
|
|
|
) {
|
2021-03-14 19:20:21 -04:00
|
|
|
$imageName = $uploadedFile->getClientOriginalName();
|
2015-12-09 17:30:55 -05:00
|
|
|
$imageData = file_get_contents($uploadedFile->getRealPath());
|
2019-05-04 10:48:15 -04:00
|
|
|
|
|
|
|
if ($resizeWidth !== null || $resizeHeight !== null) {
|
|
|
|
$imageData = $this->resizeImage($imageData, $resizeWidth, $resizeHeight, $keepRatio);
|
|
|
|
}
|
|
|
|
|
2016-03-13 09:30:47 -04:00
|
|
|
return $this->saveNew($imageName, $imageData, $type, $uploadedTo);
|
2015-12-09 17:30:55 -05:00
|
|
|
}
|
|
|
|
|
2017-12-30 10:24:03 -05:00
|
|
|
/**
|
|
|
|
* Save a new image from a uri-encoded base64 string of data.
|
|
|
|
* @throws ImageUploadException
|
|
|
|
*/
|
2020-12-08 18:46:38 -05:00
|
|
|
public function saveNewFromBase64Uri(string $base64Uri, string $name, string $type, int $uploadedTo = 0): Image
|
2017-12-30 10:24:03 -05:00
|
|
|
{
|
|
|
|
$splitData = explode(';base64,', $base64Uri);
|
|
|
|
if (count($splitData) < 2) {
|
|
|
|
throw new ImageUploadException("Invalid base64 image data provided");
|
|
|
|
}
|
|
|
|
$data = base64_decode($splitData[1]);
|
|
|
|
return $this->saveNew($name, $data, $type, $uploadedTo);
|
|
|
|
}
|
2015-12-09 17:30:55 -05:00
|
|
|
|
|
|
|
/**
|
2020-07-25 06:18:40 -04:00
|
|
|
* Save a new image into storage.
|
2016-01-17 10:20:07 -05:00
|
|
|
* @throws ImageUploadException
|
2015-12-09 17:30:55 -05:00
|
|
|
*/
|
2020-12-08 18:46:38 -05:00
|
|
|
public function saveNew(string $imageName, string $imageData, string $type, int $uploadedTo = 0): Image
|
2015-12-09 14:50:17 -05:00
|
|
|
{
|
2018-03-25 07:41:52 -04:00
|
|
|
$storage = $this->getStorage($type);
|
2016-03-06 07:55:08 -05:00
|
|
|
$secureUploads = setting('app-secure-images');
|
2020-07-25 06:18:40 -04:00
|
|
|
$fileName = $this->cleanImageFileName($imageName);
|
2015-12-09 14:50:17 -05:00
|
|
|
|
2019-05-04 10:48:15 -04:00
|
|
|
$imagePath = '/uploads/images/' . $type . '/' . Date('Y-m') . '/';
|
2016-10-09 13:58:22 -04:00
|
|
|
|
2020-07-25 06:18:40 -04:00
|
|
|
while ($storage->exists($imagePath . $fileName)) {
|
|
|
|
$fileName = Str::random(3) . $fileName;
|
2015-12-09 14:50:17 -05:00
|
|
|
}
|
2018-05-20 11:47:53 -04:00
|
|
|
|
2020-07-25 06:18:40 -04:00
|
|
|
$fullPath = $imagePath . $fileName;
|
2018-05-20 11:47:53 -04:00
|
|
|
if ($secureUploads) {
|
2020-07-25 06:18:40 -04:00
|
|
|
$fullPath = $imagePath . Str::random(16) . '-' . $fileName;
|
2018-05-20 11:47:53 -04:00
|
|
|
}
|
2015-12-09 14:50:17 -05:00
|
|
|
|
2016-02-02 02:34:48 -05:00
|
|
|
try {
|
2021-04-27 15:36:42 -04:00
|
|
|
$storage->put($fullPath, $imageData, ['visibility' => 'public']);
|
2016-02-02 02:34:48 -05:00
|
|
|
} catch (Exception $e) {
|
2021-04-19 15:16:49 -04:00
|
|
|
\Log::error('Error when attempting image upload:' . $e->getMessage());
|
2016-12-04 11:51:39 -05:00
|
|
|
throw new ImageUploadException(trans('errors.path_not_writable', ['filePath' => $fullPath]));
|
2016-02-02 02:34:48 -05:00
|
|
|
}
|
2015-12-09 14:50:17 -05:00
|
|
|
|
2016-01-17 10:20:07 -05:00
|
|
|
$imageDetails = [
|
2020-12-06 07:58:40 -05:00
|
|
|
'name' => $imageName,
|
|
|
|
'path' => $fullPath,
|
|
|
|
'url' => $this->getPublicUrl($fullPath),
|
|
|
|
'type' => $type,
|
2016-03-13 09:30:47 -04:00
|
|
|
'uploaded_to' => $uploadedTo
|
2016-01-17 10:20:07 -05:00
|
|
|
];
|
|
|
|
|
2016-09-29 07:43:46 -04:00
|
|
|
if (user()->id !== 0) {
|
|
|
|
$userId = user()->id;
|
2016-01-17 10:20:07 -05:00
|
|
|
$imageDetails['created_by'] = $userId;
|
|
|
|
$imageDetails['updated_by'] = $userId;
|
|
|
|
}
|
|
|
|
|
2018-05-20 13:16:01 -04:00
|
|
|
$image = $this->image->newInstance();
|
2018-01-13 06:11:23 -05:00
|
|
|
$image->forceFill($imageDetails)->save();
|
2015-12-09 14:50:17 -05:00
|
|
|
return $image;
|
|
|
|
}
|
|
|
|
|
2020-07-25 06:18:40 -04:00
|
|
|
/**
|
|
|
|
* Clean up an image file name to be both URL and storage safe.
|
|
|
|
*/
|
|
|
|
protected function cleanImageFileName(string $name): string
|
|
|
|
{
|
|
|
|
$name = str_replace(' ', '-', $name);
|
|
|
|
$nameParts = explode('.', $name);
|
|
|
|
$extension = array_pop($nameParts);
|
2021-03-14 19:20:21 -04:00
|
|
|
$name = implode('-', $nameParts);
|
2020-07-25 06:18:40 -04:00
|
|
|
$name = Str::slug($name);
|
|
|
|
|
|
|
|
if (strlen($name) === 0) {
|
|
|
|
$name = Str::random(10);
|
|
|
|
}
|
|
|
|
|
2020-12-06 07:58:40 -05:00
|
|
|
return $name . '.' . $extension;
|
2020-07-25 06:18:40 -04:00
|
|
|
}
|
2016-10-09 13:58:22 -04:00
|
|
|
|
2018-03-18 16:14:33 -04:00
|
|
|
/**
|
|
|
|
* Checks if the image is a gif. Returns true if it is, else false.
|
|
|
|
*/
|
2020-12-06 07:58:40 -05:00
|
|
|
protected function isGif(Image $image): bool
|
2018-03-27 15:37:01 -04:00
|
|
|
{
|
2018-05-13 12:41:35 -04:00
|
|
|
return strtolower(pathinfo($image->path, PATHINFO_EXTENSION)) === 'gif';
|
2018-03-18 16:14:33 -04:00
|
|
|
}
|
|
|
|
|
2015-12-09 14:50:17 -05:00
|
|
|
/**
|
|
|
|
* Get the thumbnail for an image.
|
|
|
|
* If $keepRatio is true only the width will be used.
|
|
|
|
* Checks the cache then storage to avoid creating / accessing the filesystem on every check.
|
|
|
|
* @param Image $image
|
2016-02-03 15:52:25 -05:00
|
|
|
* @param int $width
|
|
|
|
* @param int $height
|
|
|
|
* @param bool $keepRatio
|
2015-12-09 14:50:17 -05:00
|
|
|
* @return string
|
2016-02-03 15:52:25 -05:00
|
|
|
* @throws Exception
|
|
|
|
* @throws ImageUploadException
|
2015-12-09 14:50:17 -05:00
|
|
|
*/
|
|
|
|
public function getThumbnail(Image $image, $width = 220, $height = 220, $keepRatio = false)
|
|
|
|
{
|
2018-03-18 16:14:33 -04:00
|
|
|
if ($keepRatio && $this->isGif($image)) {
|
2018-05-13 12:41:35 -04:00
|
|
|
return $this->getPublicUrl($image->path);
|
2018-03-18 16:14:33 -04:00
|
|
|
}
|
|
|
|
|
2015-12-09 14:50:17 -05:00
|
|
|
$thumbDirName = '/' . ($keepRatio ? 'scaled-' : 'thumbs-') . $width . '-' . $height . '/';
|
2018-05-13 12:41:35 -04:00
|
|
|
$imagePath = $image->path;
|
2016-10-09 13:58:22 -04:00
|
|
|
$thumbFilePath = dirname($imagePath) . $thumbDirName . basename($imagePath);
|
2015-12-09 14:50:17 -05:00
|
|
|
|
|
|
|
if ($this->cache->has('images-' . $image->id . '-' . $thumbFilePath) && $this->cache->get('images-' . $thumbFilePath)) {
|
|
|
|
return $this->getPublicUrl($thumbFilePath);
|
|
|
|
}
|
|
|
|
|
2018-03-25 07:41:52 -04:00
|
|
|
$storage = $this->getStorage($image->type);
|
2015-12-09 14:50:17 -05:00
|
|
|
if ($storage->exists($thumbFilePath)) {
|
|
|
|
return $this->getPublicUrl($thumbFilePath);
|
|
|
|
}
|
|
|
|
|
2019-05-04 10:48:15 -04:00
|
|
|
$thumbData = $this->resizeImage($storage->get($imagePath), $width, $height, $keepRatio);
|
|
|
|
|
2021-04-27 15:36:42 -04:00
|
|
|
$storage->put($thumbFilePath, $thumbData, ['visibility' => 'public']);
|
2019-09-13 18:58:40 -04:00
|
|
|
$this->cache->put('images-' . $image->id . '-' . $thumbFilePath, $thumbFilePath, 60 * 60 * 72);
|
2019-05-04 10:48:15 -04:00
|
|
|
|
2020-07-24 18:41:59 -04:00
|
|
|
|
2019-05-04 10:48:15 -04:00
|
|
|
return $this->getPublicUrl($thumbFilePath);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Resize image data.
|
|
|
|
* @param string $imageData
|
|
|
|
* @param int $width
|
|
|
|
* @param int $height
|
|
|
|
* @param bool $keepRatio
|
|
|
|
* @return string
|
|
|
|
* @throws ImageUploadException
|
|
|
|
*/
|
2019-05-04 13:11:00 -04:00
|
|
|
protected function resizeImage(string $imageData, $width = 220, $height = null, bool $keepRatio = true)
|
2019-05-04 10:48:15 -04:00
|
|
|
{
|
2016-02-03 15:52:25 -05:00
|
|
|
try {
|
2019-05-04 10:48:15 -04:00
|
|
|
$thumb = $this->imageTool->make($imageData);
|
2016-02-03 15:52:25 -05:00
|
|
|
} catch (Exception $e) {
|
2020-12-06 07:58:40 -05:00
|
|
|
if ($e instanceof ErrorException || $e instanceof NotSupportedException) {
|
2016-12-04 11:51:39 -05:00
|
|
|
throw new ImageUploadException(trans('errors.cannot_create_thumbs'));
|
2016-02-03 15:52:25 -05:00
|
|
|
}
|
2018-01-13 06:11:23 -05:00
|
|
|
throw $e;
|
2016-02-03 15:52:25 -05:00
|
|
|
}
|
|
|
|
|
2015-12-09 14:50:17 -05:00
|
|
|
if ($keepRatio) {
|
2019-05-04 10:48:15 -04:00
|
|
|
$thumb->resize($width, $height, function ($constraint) {
|
2015-12-09 14:50:17 -05:00
|
|
|
$constraint->aspectRatio();
|
|
|
|
$constraint->upsize();
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
$thumb->fit($width, $height);
|
|
|
|
}
|
2019-12-22 07:44:49 -05:00
|
|
|
|
|
|
|
$thumbData = (string)$thumb->encode();
|
|
|
|
|
|
|
|
// Use original image data if we're keeping the ratio
|
|
|
|
// and the resizing does not save any space.
|
|
|
|
if ($keepRatio && strlen($thumbData) > strlen($imageData)) {
|
|
|
|
return $imageData;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $thumbData;
|
2015-12-09 14:50:17 -05:00
|
|
|
}
|
|
|
|
|
2017-12-30 10:24:03 -05:00
|
|
|
/**
|
|
|
|
* Get the raw data content from an image.
|
2020-12-06 07:58:40 -05:00
|
|
|
* @throws FileNotFoundException
|
2017-12-30 10:24:03 -05:00
|
|
|
*/
|
2020-12-06 07:58:40 -05:00
|
|
|
public function getImageData(Image $image): string
|
2017-12-30 10:24:03 -05:00
|
|
|
{
|
2018-05-13 12:41:35 -04:00
|
|
|
$imagePath = $image->path;
|
2017-12-30 10:24:03 -05:00
|
|
|
$storage = $this->getStorage();
|
|
|
|
return $storage->get($imagePath);
|
|
|
|
}
|
|
|
|
|
2015-12-09 14:50:17 -05:00
|
|
|
/**
|
2018-05-13 12:41:35 -04:00
|
|
|
* Destroy an image along with its revisions, thumbnails and remaining folders.
|
2018-01-28 09:08:14 -05:00
|
|
|
* @throws Exception
|
2015-12-09 14:50:17 -05:00
|
|
|
*/
|
2018-05-13 12:41:35 -04:00
|
|
|
public function destroy(Image $image)
|
|
|
|
{
|
|
|
|
$this->destroyImagesFromPath($image->path);
|
|
|
|
$image->delete();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Destroys an image at the given path.
|
2020-07-24 18:41:59 -04:00
|
|
|
* Searches for image thumbnails in addition to main provided path.
|
2018-05-13 12:41:35 -04:00
|
|
|
*/
|
2020-07-24 18:41:59 -04:00
|
|
|
protected function destroyImagesFromPath(string $path): bool
|
2015-12-09 14:50:17 -05:00
|
|
|
{
|
|
|
|
$storage = $this->getStorage();
|
|
|
|
|
2018-05-13 12:41:35 -04:00
|
|
|
$imageFolder = dirname($path);
|
|
|
|
$imageFileName = basename($path);
|
2015-12-09 14:50:17 -05:00
|
|
|
$allImages = collect($storage->allFiles($imageFolder));
|
|
|
|
|
2018-05-13 12:41:35 -04:00
|
|
|
// Delete image files
|
2015-12-09 14:50:17 -05:00
|
|
|
$imagesToDelete = $allImages->filter(function ($imagePath) use ($imageFileName) {
|
2020-07-24 18:41:59 -04:00
|
|
|
return basename($imagePath) === $imageFileName;
|
2015-12-09 14:50:17 -05:00
|
|
|
});
|
|
|
|
$storage->delete($imagesToDelete->all());
|
|
|
|
|
|
|
|
// Cleanup of empty folders
|
2018-05-13 12:41:35 -04:00
|
|
|
$foldersInvolved = array_merge([$imageFolder], $storage->directories($imageFolder));
|
|
|
|
foreach ($foldersInvolved as $directory) {
|
2020-12-06 07:58:40 -05:00
|
|
|
if ($this->isFolderEmpty($storage, $directory)) {
|
2018-01-28 11:58:52 -05:00
|
|
|
$storage->deleteDirectory($directory);
|
|
|
|
}
|
|
|
|
}
|
2015-12-09 14:50:17 -05:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-12-06 07:58:40 -05:00
|
|
|
/**
|
|
|
|
* Check whether or not a folder is empty.
|
|
|
|
*/
|
|
|
|
protected function isFolderEmpty(FileSystemInstance $storage, string $path): bool
|
|
|
|
{
|
|
|
|
$files = $storage->files($path);
|
|
|
|
$folders = $storage->directories($path);
|
|
|
|
return (count($files) === 0 && count($folders) === 0);
|
|
|
|
}
|
|
|
|
|
2018-05-20 13:16:01 -04:00
|
|
|
/**
|
|
|
|
* Delete gallery and drawings that are not within HTML content of pages or page revisions.
|
2018-05-27 09:33:50 -04:00
|
|
|
* Checks based off of only the image name.
|
|
|
|
* Could be much improved to be more specific but kept it generic for now to be safe.
|
|
|
|
*
|
|
|
|
* Returns the path of the images that would be/have been deleted.
|
2018-05-20 13:16:01 -04:00
|
|
|
*/
|
2020-12-18 17:54:53 -05:00
|
|
|
public function deleteUnusedImages(bool $checkRevisions = true, bool $dryRun = true)
|
2018-05-20 13:16:01 -04:00
|
|
|
{
|
2020-12-18 17:54:53 -05:00
|
|
|
$types = ['gallery', 'drawio'];
|
2018-05-27 09:33:50 -04:00
|
|
|
$deletedPaths = [];
|
|
|
|
|
2018-05-20 13:16:01 -04:00
|
|
|
$this->image->newQuery()->whereIn('type', $types)
|
2020-12-18 17:54:53 -05:00
|
|
|
->chunk(1000, function ($images) use ($checkRevisions, &$deletedPaths, $dryRun) {
|
2018-09-21 13:48:47 -04:00
|
|
|
foreach ($images as $image) {
|
|
|
|
$searchQuery = '%' . basename($image->path) . '%';
|
|
|
|
$inPage = DB::table('pages')
|
2020-12-06 07:58:40 -05:00
|
|
|
->where('html', 'like', $searchQuery)->count() > 0;
|
2020-12-18 17:54:53 -05:00
|
|
|
|
2018-09-21 13:48:47 -04:00
|
|
|
$inRevision = false;
|
|
|
|
if ($checkRevisions) {
|
2020-12-06 07:58:40 -05:00
|
|
|
$inRevision = DB::table('page_revisions')
|
|
|
|
->where('html', 'like', $searchQuery)->count() > 0;
|
2018-09-21 13:48:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!$inPage && !$inRevision) {
|
|
|
|
$deletedPaths[] = $image->path;
|
|
|
|
if (!$dryRun) {
|
|
|
|
$this->destroy($image);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2018-05-27 09:33:50 -04:00
|
|
|
return $deletedPaths;
|
2018-05-20 13:16:01 -04:00
|
|
|
}
|
|
|
|
|
2018-04-22 07:23:43 -04:00
|
|
|
/**
|
|
|
|
* Convert a image URI to a Base64 encoded string.
|
2020-12-06 09:24:22 -05:00
|
|
|
* Attempts to convert the URL to a system storage url then
|
|
|
|
* fetch the data from the disk or storage location.
|
|
|
|
* Returns null if the image data cannot be fetched from storage.
|
2020-12-06 07:58:40 -05:00
|
|
|
* @throws FileNotFoundException
|
2018-04-22 07:23:43 -04:00
|
|
|
*/
|
2020-12-06 07:58:40 -05:00
|
|
|
public function imageUriToBase64(string $uri): ?string
|
2018-04-22 07:23:43 -04:00
|
|
|
{
|
2020-12-06 09:24:22 -05:00
|
|
|
$storagePath = $this->imageUrlToStoragePath($uri);
|
|
|
|
if (empty($uri) || is_null($storagePath)) {
|
|
|
|
return null;
|
2018-04-22 07:23:43 -04:00
|
|
|
}
|
|
|
|
|
2020-12-06 09:24:22 -05:00
|
|
|
$storage = $this->getStorage();
|
2018-04-22 07:23:43 -04:00
|
|
|
$imageData = null;
|
2020-12-06 09:24:22 -05:00
|
|
|
if ($storage->exists($storagePath)) {
|
|
|
|
$imageData = $storage->get($storagePath);
|
2018-04-22 07:23:43 -04:00
|
|
|
}
|
|
|
|
|
2020-12-06 09:24:22 -05:00
|
|
|
if (is_null($imageData)) {
|
2018-04-22 07:23:43 -04:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2019-07-17 17:36:49 -04:00
|
|
|
$extension = pathinfo($uri, PATHINFO_EXTENSION);
|
|
|
|
if ($extension === 'svg') {
|
|
|
|
$extension = 'svg+xml';
|
|
|
|
}
|
|
|
|
|
|
|
|
return 'data:image/' . $extension . ';base64,' . base64_encode($imageData);
|
2018-04-22 07:23:43 -04:00
|
|
|
}
|
|
|
|
|
2020-12-06 09:24:22 -05:00
|
|
|
/**
|
|
|
|
* Get a storage path for the given image URL.
|
2020-12-06 10:34:18 -05:00
|
|
|
* Ensures the path will start with "uploads/images".
|
2020-12-06 09:24:22 -05:00
|
|
|
* Returns null if the url cannot be resolved to a local URL.
|
|
|
|
*/
|
|
|
|
private function imageUrlToStoragePath(string $url): ?string
|
|
|
|
{
|
2020-12-06 10:34:18 -05:00
|
|
|
$url = ltrim(trim($url), '/');
|
2020-12-06 09:24:22 -05:00
|
|
|
|
|
|
|
// Handle potential relative paths
|
|
|
|
$isRelative = strpos($url, 'http') !== 0;
|
|
|
|
if ($isRelative) {
|
2020-12-06 10:34:18 -05:00
|
|
|
if (strpos(strtolower($url), 'uploads/images') === 0) {
|
|
|
|
return trim($url, '/');
|
|
|
|
}
|
|
|
|
return null;
|
2020-12-06 09:24:22 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Handle local images based on paths on the same domain
|
|
|
|
$potentialHostPaths = [
|
2020-12-06 10:34:18 -05:00
|
|
|
url('uploads/images/'),
|
|
|
|
$this->getPublicUrl('/uploads/images/'),
|
2020-12-06 09:24:22 -05:00
|
|
|
];
|
|
|
|
|
|
|
|
foreach ($potentialHostPaths as $potentialBasePath) {
|
|
|
|
$potentialBasePath = strtolower($potentialBasePath);
|
|
|
|
if (strpos(strtolower($url), $potentialBasePath) === 0) {
|
2020-12-06 10:34:18 -05:00
|
|
|
return 'uploads/images/' . trim(substr($url, strlen($potentialBasePath)), '/');
|
2020-12-06 09:24:22 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2015-12-09 14:50:17 -05:00
|
|
|
/**
|
|
|
|
* Gets a public facing url for an image by checking relevant environment variables.
|
2020-12-06 07:58:40 -05:00
|
|
|
* If s3-style store is in use it will default to guessing a public bucket URL.
|
2015-12-09 14:50:17 -05:00
|
|
|
*/
|
2020-12-06 07:58:40 -05:00
|
|
|
private function getPublicUrl(string $filePath): string
|
2015-12-09 14:50:17 -05:00
|
|
|
{
|
|
|
|
if ($this->storageUrl === null) {
|
2016-01-09 14:23:35 -05:00
|
|
|
$storageUrl = config('filesystems.url');
|
2015-12-09 14:50:17 -05:00
|
|
|
|
|
|
|
// Get the standard public s3 url if s3 is set as storage type
|
2016-07-10 05:28:05 -04:00
|
|
|
// Uses the nice, short URL if bucket name has no periods in otherwise the longer
|
|
|
|
// region-based url will be used to prevent http issues.
|
2019-06-23 11:01:15 -04:00
|
|
|
if ($storageUrl == false && config('filesystems.images') === 's3') {
|
2015-12-09 14:50:17 -05:00
|
|
|
$storageDetails = config('filesystems.disks.s3');
|
2016-07-10 05:28:05 -04:00
|
|
|
if (strpos($storageDetails['bucket'], '.') === false) {
|
|
|
|
$storageUrl = 'https://' . $storageDetails['bucket'] . '.s3.amazonaws.com';
|
|
|
|
} else {
|
|
|
|
$storageUrl = 'https://s3-' . $storageDetails['region'] . '.amazonaws.com/' . $storageDetails['bucket'];
|
|
|
|
}
|
2015-12-09 14:50:17 -05:00
|
|
|
}
|
|
|
|
$this->storageUrl = $storageUrl;
|
|
|
|
}
|
|
|
|
|
2019-08-04 09:26:39 -04:00
|
|
|
$basePath = ($this->storageUrl == false) ? url('/') : $this->storageUrl;
|
2018-01-13 06:11:23 -05:00
|
|
|
return rtrim($basePath, '/') . $filePath;
|
2015-12-09 14:50:17 -05:00
|
|
|
}
|
2016-07-09 09:26:53 -04:00
|
|
|
}
|