| 
									
										
										
										
											2019-04-27 21:18:00 +08:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace BookStack\Http\Controllers\Images; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | use BookStack\Exceptions\ImageUploadException; | 
					
						
							|  |  |  | use BookStack\Uploads\ImageRepo; | 
					
						
							|  |  |  | use Illuminate\Http\Request; | 
					
						
							|  |  |  | use BookStack\Http\Controllers\Controller; | 
					
						
							| 
									
										
										
										
											2020-07-25 07:20:58 +08:00
										 |  |  | use Illuminate\Validation\ValidationException; | 
					
						
							| 
									
										
										
										
											2019-04-27 21:18:00 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 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); | 
					
						
							| 
									
										
										
										
											2020-07-25 07:20:58 +08:00
										 |  |  |         return view('components.image-manager-list', [ | 
					
						
							|  |  |  |             'images' => $imgData['images'], | 
					
						
							|  |  |  |             'hasMore' => $imgData['has_more'], | 
					
						
							|  |  |  |         ]); | 
					
						
							| 
									
										
										
										
											2019-04-27 21:18:00 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Store a new gallery image in the system. | 
					
						
							| 
									
										
										
										
											2020-07-25 07:20:58 +08:00
										 |  |  |      * @throws ValidationException | 
					
						
							| 
									
										
										
										
											2019-04-27 21:18:00 +08:00
										 |  |  |      */ | 
					
						
							|  |  |  |     public function create(Request $request) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->checkPermission('image-create-all'); | 
					
						
							|  |  |  |         $this->validate($request, [ | 
					
						
							| 
									
										
										
										
											2020-03-04 07:06:30 +08:00
										 |  |  |             'file' => $this->getImageValidationRules() | 
					
						
							| 
									
										
										
										
											2019-04-27 21:18:00 +08:00
										 |  |  |         ]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         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); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } |