mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
02dc3154e3
Instead of vue based.
64 lines
1.8 KiB
PHP
64 lines
1.8 KiB
PHP
<?php
|
|
|
|
namespace BookStack\Http\Controllers\Images;
|
|
|
|
use BookStack\Exceptions\ImageUploadException;
|
|
use BookStack\Uploads\ImageRepo;
|
|
use Illuminate\Http\Request;
|
|
use BookStack\Http\Controllers\Controller;
|
|
use Illuminate\Validation\ValidationException;
|
|
|
|
class GalleryImageController extends Controller
|
|
{
|
|
protected $imageRepo;
|
|
|
|
/**
|
|
* GalleryImageController constructor.
|
|
*/
|
|
public function __construct(ImageRepo $imageRepo)
|
|
{
|
|
$this->imageRepo = $imageRepo;
|
|
parent::__construct();
|
|
}
|
|
|
|
/**
|
|
* 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('gallery', $parentTypeFilter, $page, 24, $uploadedToFilter, $searchTerm);
|
|
return view('components.image-manager-list', [
|
|
'images' => $imgData['images'],
|
|
'hasMore' => $imgData['has_more'],
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* Store a new gallery image in the system.
|
|
* @throws ValidationException
|
|
*/
|
|
public function create(Request $request)
|
|
{
|
|
$this->checkPermission('image-create-all');
|
|
$this->validate($request, [
|
|
'file' => $this->getImageValidationRules()
|
|
]);
|
|
|
|
try {
|
|
$imageUpload = $request->file('file');
|
|
$uploadedTo = $request->get('uploaded_to', 0);
|
|
$image = $this->imageRepo->saveNew($imageUpload, 'gallery', $uploadedTo);
|
|
} catch (ImageUploadException $e) {
|
|
return response($e->getMessage(), 500);
|
|
}
|
|
|
|
return response()->json($image);
|
|
}
|
|
}
|