2016-04-03 15:59:54 +02:00
|
|
|
<?php namespace BookStack\Http\Controllers;
|
2015-07-13 22:52:56 +02:00
|
|
|
|
2018-10-13 12:27:55 +02:00
|
|
|
use BookStack\Entities\Repos\EntityRepo;
|
2018-09-25 17:58:03 +02:00
|
|
|
use BookStack\Exceptions\ImageUploadException;
|
|
|
|
use BookStack\Repos\PageRepo;
|
|
|
|
use BookStack\Uploads\Image;
|
2018-09-25 13:30:50 +02:00
|
|
|
use BookStack\Uploads\ImageRepo;
|
2015-07-13 22:52:56 +02:00
|
|
|
use Illuminate\Filesystem\Filesystem as File;
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
|
|
|
|
class ImageController extends Controller
|
|
|
|
{
|
|
|
|
protected $image;
|
|
|
|
protected $file;
|
2015-12-08 00:00:34 +01:00
|
|
|
protected $imageRepo;
|
2015-07-13 22:52:56 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* ImageController constructor.
|
2016-03-13 14:30:47 +01:00
|
|
|
* @param Image $image
|
|
|
|
* @param File $file
|
2015-12-08 00:00:34 +01:00
|
|
|
* @param ImageRepo $imageRepo
|
2015-07-13 22:52:56 +02:00
|
|
|
*/
|
2015-12-08 00:00:34 +01:00
|
|
|
public function __construct(Image $image, File $file, ImageRepo $imageRepo)
|
2015-07-13 22:52:56 +02:00
|
|
|
{
|
|
|
|
$this->image = $image;
|
|
|
|
$this->file = $file;
|
2015-12-08 00:00:34 +01:00
|
|
|
$this->imageRepo = $imageRepo;
|
2015-08-29 16:03:42 +02:00
|
|
|
parent::__construct();
|
2015-07-13 22:52:56 +02:00
|
|
|
}
|
|
|
|
|
2018-01-13 12:11:23 +01:00
|
|
|
/**
|
|
|
|
* Provide an image file from storage.
|
|
|
|
* @param string $path
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function showImage(string $path)
|
|
|
|
{
|
|
|
|
$path = storage_path('uploads/images/' . $path);
|
|
|
|
if (!file_exists($path)) {
|
|
|
|
abort(404);
|
|
|
|
}
|
|
|
|
|
|
|
|
return response()->file($path);
|
|
|
|
}
|
|
|
|
|
2015-07-14 23:34:31 +02:00
|
|
|
/**
|
2015-12-09 23:30:55 +01:00
|
|
|
* Get all images for a specific type, Paginated
|
2016-03-13 14:30:47 +01:00
|
|
|
* @param string $type
|
2015-07-14 23:34:31 +02:00
|
|
|
* @param int $page
|
|
|
|
* @return \Illuminate\Http\JsonResponse
|
|
|
|
*/
|
2015-12-08 23:04:59 +01:00
|
|
|
public function getAllByType($type, $page = 0)
|
2015-07-14 23:34:31 +02:00
|
|
|
{
|
2015-12-08 23:04:59 +01:00
|
|
|
$imgData = $this->imageRepo->getPaginatedByType($type, $page);
|
2015-12-08 00:00:34 +01:00
|
|
|
return response()->json($imgData);
|
2015-10-18 19:48:51 +02:00
|
|
|
}
|
|
|
|
|
2016-04-03 15:59:54 +02:00
|
|
|
/**
|
|
|
|
* Search through images within a particular type.
|
|
|
|
* @param $type
|
|
|
|
* @param int $page
|
|
|
|
* @param Request $request
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2018-01-28 17:58:52 +01:00
|
|
|
public function searchByType(Request $request, $type, $page = 0)
|
2016-04-03 15:59:54 +02:00
|
|
|
{
|
|
|
|
$this->validate($request, [
|
|
|
|
'term' => 'required|string'
|
|
|
|
]);
|
2016-07-01 21:11:49 +02:00
|
|
|
|
2016-04-03 15:59:54 +02:00
|
|
|
$searchTerm = $request->get('term');
|
2018-01-28 17:58:52 +01:00
|
|
|
$imgData = $this->imageRepo->searchPaginatedByType($type, $searchTerm, $page, 24);
|
2016-04-03 15:59:54 +02:00
|
|
|
return response()->json($imgData);
|
|
|
|
}
|
|
|
|
|
2015-12-09 23:30:55 +01:00
|
|
|
/**
|
|
|
|
* Get all images for a user.
|
|
|
|
* @param int $page
|
|
|
|
* @return \Illuminate\Http\JsonResponse
|
|
|
|
*/
|
|
|
|
public function getAllForUserType($page = 0)
|
|
|
|
{
|
|
|
|
$imgData = $this->imageRepo->getPaginatedByType('user', $page, 24, $this->currentUser->id);
|
|
|
|
return response()->json($imgData);
|
|
|
|
}
|
|
|
|
|
2016-04-03 15:59:54 +02:00
|
|
|
/**
|
|
|
|
* Get gallery images with a specific filter such as book or page
|
|
|
|
* @param $filter
|
|
|
|
* @param int $page
|
|
|
|
* @param Request $request
|
2016-12-04 17:51:39 +01:00
|
|
|
* @return \Illuminate\Contracts\Routing\ResponseFactory|\Illuminate\Http\JsonResponse|\Symfony\Component\HttpFoundation\Response
|
2016-04-03 15:59:54 +02:00
|
|
|
*/
|
2018-01-28 17:58:52 +01:00
|
|
|
public function getGalleryFiltered(Request $request, $filter, $page = 0)
|
2016-04-03 15:59:54 +02:00
|
|
|
{
|
|
|
|
$this->validate($request, [
|
|
|
|
'page_id' => 'required|integer'
|
|
|
|
]);
|
|
|
|
|
|
|
|
$validFilters = collect(['page', 'book']);
|
2018-01-28 17:58:52 +01:00
|
|
|
if (!$validFilters->contains($filter)) {
|
|
|
|
return response('Invalid filter', 500);
|
|
|
|
}
|
2016-04-03 15:59:54 +02:00
|
|
|
|
|
|
|
$pageId = $request->get('page_id');
|
2018-01-28 17:58:52 +01:00
|
|
|
$imgData = $this->imageRepo->getGalleryFiltered(strtolower($filter), $pageId, $page, 24);
|
2016-04-03 15:59:54 +02:00
|
|
|
|
|
|
|
return response()->json($imgData);
|
|
|
|
}
|
|
|
|
|
2015-07-13 22:52:56 +02:00
|
|
|
/**
|
|
|
|
* Handles image uploads for use on pages.
|
2016-03-13 14:30:47 +01:00
|
|
|
* @param string $type
|
2015-07-13 22:52:56 +02:00
|
|
|
* @param Request $request
|
|
|
|
* @return \Illuminate\Http\JsonResponse
|
2017-12-30 16:24:03 +01:00
|
|
|
* @throws \Exception
|
2015-07-13 22:52:56 +02:00
|
|
|
*/
|
2015-12-08 23:04:59 +01:00
|
|
|
public function uploadByType($type, Request $request)
|
2015-07-13 22:52:56 +02:00
|
|
|
{
|
2016-02-27 20:24:42 +01:00
|
|
|
$this->checkPermission('image-create-all');
|
2015-12-01 21:26:09 +01:00
|
|
|
$this->validate($request, [
|
2018-03-24 16:25:13 +01:00
|
|
|
'file' => 'is_image'
|
2015-12-01 21:26:09 +01:00
|
|
|
]);
|
2018-01-28 14:18:28 +01:00
|
|
|
|
|
|
|
if (!$this->imageRepo->isValidType($type)) {
|
|
|
|
return $this->jsonError(trans('errors.image_upload_type_error'));
|
|
|
|
}
|
2015-12-01 21:26:09 +01:00
|
|
|
|
2015-12-08 00:00:34 +01:00
|
|
|
$imageUpload = $request->file('file');
|
2016-01-17 16:19:26 +01:00
|
|
|
|
|
|
|
try {
|
2017-12-30 16:24:03 +01:00
|
|
|
$uploadedTo = $request->get('uploaded_to', 0);
|
2016-03-13 14:30:47 +01:00
|
|
|
$image = $this->imageRepo->saveNew($imageUpload, $type, $uploadedTo);
|
2016-01-17 16:19:26 +01:00
|
|
|
} catch (ImageUploadException $e) {
|
|
|
|
return response($e->getMessage(), 500);
|
|
|
|
}
|
|
|
|
|
2018-03-24 16:25:13 +01:00
|
|
|
|
2015-12-08 00:00:34 +01:00
|
|
|
return response()->json($image);
|
2015-07-13 22:52:56 +02:00
|
|
|
}
|
|
|
|
|
2017-12-30 16:24:03 +01:00
|
|
|
/**
|
|
|
|
* Upload a drawing to the system.
|
|
|
|
* @param Request $request
|
|
|
|
* @return \Illuminate\Contracts\Routing\ResponseFactory|\Illuminate\Http\JsonResponse|\Symfony\Component\HttpFoundation\Response
|
|
|
|
*/
|
|
|
|
public function uploadDrawing(Request $request)
|
|
|
|
{
|
|
|
|
$this->validate($request, [
|
|
|
|
'image' => 'required|string',
|
|
|
|
'uploaded_to' => 'required|integer'
|
|
|
|
]);
|
|
|
|
$this->checkPermission('image-create-all');
|
|
|
|
$imageBase64Data = $request->get('image');
|
|
|
|
|
|
|
|
try {
|
|
|
|
$uploadedTo = $request->get('uploaded_to', 0);
|
|
|
|
$image = $this->imageRepo->saveDrawing($imageBase64Data, $uploadedTo);
|
|
|
|
} catch (ImageUploadException $e) {
|
|
|
|
return response($e->getMessage(), 500);
|
|
|
|
}
|
|
|
|
|
|
|
|
return response()->json($image);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the content of an image based64 encoded.
|
|
|
|
* @param $id
|
|
|
|
* @return \Illuminate\Http\JsonResponse|mixed
|
|
|
|
*/
|
|
|
|
public function getBase64Image($id)
|
|
|
|
{
|
|
|
|
$image = $this->imageRepo->getById($id);
|
|
|
|
$imageData = $this->imageRepo->getImageData($image);
|
|
|
|
if ($imageData === null) {
|
|
|
|
return $this->jsonError("Image data could not be found");
|
|
|
|
}
|
|
|
|
return response()->json([
|
|
|
|
'content' => base64_encode($imageData)
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2015-12-08 23:04:59 +01:00
|
|
|
/**
|
|
|
|
* Generate a sized thumbnail for an image.
|
|
|
|
* @param $id
|
|
|
|
* @param $width
|
|
|
|
* @param $height
|
|
|
|
* @param $crop
|
|
|
|
* @return \Illuminate\Http\JsonResponse
|
2017-12-30 16:24:03 +01:00
|
|
|
* @throws ImageUploadException
|
|
|
|
* @throws \Exception
|
2015-12-08 23:04:59 +01:00
|
|
|
*/
|
|
|
|
public function getThumbnail($id, $width, $height, $crop)
|
|
|
|
{
|
2016-02-27 20:24:42 +01:00
|
|
|
$this->checkPermission('image-create-all');
|
2015-12-08 23:04:59 +01:00
|
|
|
$image = $this->imageRepo->getById($id);
|
|
|
|
$thumbnailUrl = $this->imageRepo->getThumbnail($image, $width, $height, $crop == 'false');
|
|
|
|
return response()->json(['url' => $thumbnailUrl]);
|
|
|
|
}
|
2015-12-08 00:00:34 +01:00
|
|
|
|
2015-08-16 01:18:22 +02:00
|
|
|
/**
|
|
|
|
* Update image details
|
2016-03-13 14:30:47 +01:00
|
|
|
* @param integer $imageId
|
2015-08-16 01:18:22 +02:00
|
|
|
* @param Request $request
|
|
|
|
* @return \Illuminate\Http\JsonResponse
|
2017-12-30 16:24:03 +01:00
|
|
|
* @throws ImageUploadException
|
|
|
|
* @throws \Exception
|
2015-08-16 01:18:22 +02:00
|
|
|
*/
|
|
|
|
public function update($imageId, Request $request)
|
|
|
|
{
|
|
|
|
$this->validate($request, [
|
|
|
|
'name' => 'required|min:2|string'
|
|
|
|
]);
|
2015-12-08 00:00:34 +01:00
|
|
|
$image = $this->imageRepo->getById($imageId);
|
2016-02-27 20:24:42 +01:00
|
|
|
$this->checkOwnablePermission('image-update', $image);
|
2015-12-08 00:00:34 +01:00
|
|
|
$image = $this->imageRepo->updateImageDetails($image, $request->all());
|
|
|
|
return response()->json($image);
|
2015-08-16 01:18:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-05-13 13:07:38 +02:00
|
|
|
* Show the usage of an image on pages.
|
2018-10-13 12:27:55 +02:00
|
|
|
* @param \BookStack\Entities\Repos\EntityRepo $entityRepo
|
2018-05-13 13:07:38 +02:00
|
|
|
* @param $id
|
|
|
|
* @return \Illuminate\Http\JsonResponse
|
|
|
|
*/
|
|
|
|
public function usage(EntityRepo $entityRepo, $id)
|
|
|
|
{
|
|
|
|
$image = $this->imageRepo->getById($id);
|
|
|
|
$pageSearch = $entityRepo->searchForImage($image->url);
|
|
|
|
return response()->json($pageSearch);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Deletes an image and all thumbnail/image files
|
2016-03-13 14:30:47 +01:00
|
|
|
* @param int $id
|
2015-08-16 01:18:22 +02:00
|
|
|
* @return \Illuminate\Http\JsonResponse
|
2018-05-20 17:40:30 +02:00
|
|
|
* @throws \Exception
|
2015-08-16 01:18:22 +02:00
|
|
|
*/
|
2018-05-13 13:07:38 +02:00
|
|
|
public function destroy($id)
|
2015-08-16 01:18:22 +02:00
|
|
|
{
|
2015-12-08 00:00:34 +01:00
|
|
|
$image = $this->imageRepo->getById($id);
|
2016-02-27 20:24:42 +01:00
|
|
|
$this->checkOwnablePermission('image-delete', $image);
|
2015-08-16 01:18:22 +02:00
|
|
|
|
2015-12-08 00:00:34 +01:00
|
|
|
$this->imageRepo->destroyImage($image);
|
2016-12-04 17:51:39 +01:00
|
|
|
return response()->json(trans('components.images_deleted'));
|
2015-08-16 01:18:22 +02:00
|
|
|
}
|
2015-07-13 22:52:56 +02:00
|
|
|
}
|