2019-04-27 09:18:00 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace BookStack\Http\Controllers\Images;
|
|
|
|
|
|
|
|
use BookStack\Exceptions\ImageUploadException;
|
2021-06-26 11:23:15 -04:00
|
|
|
use BookStack\Http\Controllers\Controller;
|
2019-04-27 09:18:00 -04:00
|
|
|
use BookStack\Uploads\ImageRepo;
|
2020-04-05 12:27:16 -04:00
|
|
|
use Exception;
|
2019-04-27 09:18:00 -04:00
|
|
|
use Illuminate\Http\Request;
|
|
|
|
|
|
|
|
class DrawioImageController extends Controller
|
|
|
|
{
|
|
|
|
protected $imageRepo;
|
|
|
|
|
|
|
|
public function __construct(ImageRepo $imageRepo)
|
|
|
|
{
|
|
|
|
$this->imageRepo = $imageRepo;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a list of gallery images, in a list.
|
|
|
|
* Can be paged and filtered by entity.
|
|
|
|
*/
|
|
|
|
public function list(Request $request)
|
|
|
|
{
|
|
|
|
$page = $request->get('page', 1);
|
|
|
|
$searchTerm = $request->get('search', null);
|
|
|
|
$uploadedToFilter = $request->get('uploaded_to', null);
|
|
|
|
$parentTypeFilter = $request->get('filter_type', null);
|
|
|
|
|
|
|
|
$imgData = $this->imageRepo->getEntityFiltered('drawio', $parentTypeFilter, $page, 24, $uploadedToFilter, $searchTerm);
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2021-08-22 08:15:58 -04:00
|
|
|
return view('pages.parts.image-manager-list', [
|
2021-06-26 11:23:15 -04:00
|
|
|
'images' => $imgData['images'],
|
2020-07-24 19:20:58 -04:00
|
|
|
'hasMore' => $imgData['has_more'],
|
|
|
|
]);
|
2019-04-27 09:18:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Store a new gallery image in the system.
|
2021-06-26 11:23:15 -04:00
|
|
|
*
|
2020-04-05 12:27:16 -04:00
|
|
|
* @throws Exception
|
2019-04-27 09:18:00 -04:00
|
|
|
*/
|
|
|
|
public function create(Request $request)
|
|
|
|
{
|
|
|
|
$this->validate($request, [
|
2021-11-04 20:26:55 -04:00
|
|
|
'image' => ['required', 'string'],
|
|
|
|
'uploaded_to' => ['required', 'integer'],
|
2019-04-27 09:18:00 -04:00
|
|
|
]);
|
|
|
|
|
|
|
|
$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);
|
|
|
|
}
|
|
|
|
|
2019-05-04 10:48:15 -04:00
|
|
|
/**
|
|
|
|
* Get the content of an image based64 encoded.
|
|
|
|
*/
|
|
|
|
public function getAsBase64($id)
|
|
|
|
{
|
|
|
|
$image = $this->imageRepo->getById($id);
|
2021-11-01 07:17:30 -04:00
|
|
|
if (is_null($image) || $image->type !== 'drawio' || !userCan('page-view', $image->getPage())) {
|
2021-06-26 11:23:15 -04:00
|
|
|
return $this->jsonError('Image data could not be found');
|
2019-05-04 10:48:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
$imageData = $this->imageRepo->getImageData($image);
|
2021-11-01 07:17:30 -04:00
|
|
|
if (is_null($imageData)) {
|
2021-06-26 11:23:15 -04:00
|
|
|
return $this->jsonError('Image data could not be found');
|
2019-05-04 10:48:15 -04:00
|
|
|
}
|
2020-07-24 19:20:58 -04:00
|
|
|
|
2019-05-04 10:48:15 -04:00
|
|
|
return response()->json([
|
2021-06-26 11:23:15 -04:00
|
|
|
'content' => base64_encode($imageData),
|
2019-05-04 10:48:15 -04:00
|
|
|
]);
|
|
|
|
}
|
2019-04-27 09:18:00 -04:00
|
|
|
}
|