mirror of
				https://github.com/BookStackApp/BookStack.git
				synced 2025-10-29 16:09:29 +03:00 
			
		
		
		
	- Primarily moved and re-organised view files. - Included readme within views to document the convention. - Fixed some issues with page field select list in previous commit. - Tweaked some route names while going through. - Split some views out further. Closes #2805
		
			
				
	
	
		
			65 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			65 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace BookStack\Http\Controllers\Images;
 | |
| 
 | |
| use BookStack\Exceptions\ImageUploadException;
 | |
| use BookStack\Http\Controllers\Controller;
 | |
| use BookStack\Uploads\ImageRepo;
 | |
| use Illuminate\Http\Request;
 | |
| use Illuminate\Validation\ValidationException;
 | |
| 
 | |
| class GalleryImageController extends Controller
 | |
| {
 | |
|     protected $imageRepo;
 | |
| 
 | |
|     /**
 | |
|      * GalleryImageController constructor.
 | |
|      */
 | |
|     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('gallery', $parentTypeFilter, $page, 24, $uploadedToFilter, $searchTerm);
 | |
| 
 | |
|         return view('pages.parts.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);
 | |
|     }
 | |
| }
 |