| 
									
										
										
										
											2016-04-24 01:14:26 +08:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace BookStack\Console\Commands; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-13 02:38:11 +08:00
										 |  |  | use BookStack\Auth\Permissions\JointPermissionBuilder; | 
					
						
							| 
									
										
										
										
											2016-04-24 01:14:26 +08:00
										 |  |  | use Illuminate\Console\Command; | 
					
						
							| 
									
										
										
										
											2022-07-13 02:38:11 +08:00
										 |  |  | use Illuminate\Support\Facades\DB; | 
					
						
							| 
									
										
										
										
											2016-04-24 01:14:26 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | class RegeneratePermissions extends Command | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * The name and signature of the console command. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @var string | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2017-03-27 02:24:57 +08:00
										 |  |  |     protected $signature = 'bookstack:regenerate-permissions {--database= : The database connection to use.}'; | 
					
						
							| 
									
										
										
										
											2016-04-24 01:14:26 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * The console command description. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @var string | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     protected $description = 'Regenerate all system permissions'; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-13 02:38:11 +08:00
										 |  |  |     protected JointPermissionBuilder $permissionBuilder; | 
					
						
							| 
									
										
										
										
											2016-04-24 01:14:26 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Create a new command instance. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2022-07-13 02:38:11 +08:00
										 |  |  |     public function __construct(JointPermissionBuilder $permissionBuilder) | 
					
						
							| 
									
										
										
										
											2016-04-24 01:14:26 +08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2022-07-13 02:38:11 +08:00
										 |  |  |         $this->permissionBuilder = $permissionBuilder; | 
					
						
							| 
									
										
										
										
											2016-04-24 01:14:26 +08:00
										 |  |  |         parent::__construct(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Execute the console command. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return mixed | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function handle() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2022-07-13 02:38:11 +08:00
										 |  |  |         $connection = DB::getDefaultConnection(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-13 03:15:41 +08:00
										 |  |  |         if ($this->option('database')) { | 
					
						
							| 
									
										
										
										
											2022-07-13 02:38:11 +08:00
										 |  |  |             DB::setDefaultConnection($this->option('database')); | 
					
						
							| 
									
										
										
										
											2017-03-27 02:24:57 +08:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-13 03:15:41 +08:00
										 |  |  |         $this->permissionBuilder->rebuildForAll(); | 
					
						
							| 
									
										
										
										
											2017-03-27 02:24:57 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-13 02:38:11 +08:00
										 |  |  |         DB::setDefaultConnection($connection); | 
					
						
							| 
									
										
										
										
											2017-02-26 17:14:18 +08:00
										 |  |  |         $this->comment('Permissions regenerated'); | 
					
						
							| 
									
										
										
										
											2022-08-30 00:46:41 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-17 21:39:53 +08:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2016-04-24 01:14:26 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | } |