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