| 
									
										
										
										
											2020-05-02 06:41:47 +08:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace BookStack\Console\Commands; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | use BookStack\Actions\Comment; | 
					
						
							|  |  |  | use BookStack\Actions\CommentRepo; | 
					
						
							|  |  |  | use Illuminate\Console\Command; | 
					
						
							| 
									
										
										
										
											2022-08-17 21:39:53 +08:00
										 |  |  | use Illuminate\Support\Facades\DB; | 
					
						
							| 
									
										
										
										
											2020-05-02 06:41:47 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | class RegenerateCommentContent extends Command | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * The name and signature of the console command. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @var string | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     protected $signature = 'bookstack:regenerate-comment-content {--database= : The database connection to use.}'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * The console command description. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @var string | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     protected $description = 'Regenerate the stored HTML of all comments'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * @var CommentRepo | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     protected $commentRepo; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Create a new command instance. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function __construct(CommentRepo $commentRepo) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->commentRepo = $commentRepo; | 
					
						
							|  |  |  |         parent::__construct(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Execute the console command. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return mixed | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function handle() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2022-08-17 21:39:53 +08:00
										 |  |  |         $connection = DB::getDefaultConnection(); | 
					
						
							| 
									
										
										
										
											2020-05-02 06:41:47 +08:00
										 |  |  |         if ($this->option('database') !== null) { | 
					
						
							| 
									
										
										
										
											2022-08-17 21:39:53 +08:00
										 |  |  |             DB::setDefaultConnection($this->option('database')); | 
					
						
							| 
									
										
										
										
											2020-05-02 06:41:47 +08:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         Comment::query()->chunk(100, function ($comments) { | 
					
						
							|  |  |  |             foreach ($comments as $comment) { | 
					
						
							|  |  |  |                 $comment->html = $this->commentRepo->commentToHtml($comment->text); | 
					
						
							|  |  |  |                 $comment->save(); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-17 21:39:53 +08:00
										 |  |  |         DB::setDefaultConnection($connection); | 
					
						
							| 
									
										
										
										
											2020-05-02 06:41:47 +08:00
										 |  |  |         $this->comment('Comment HTML content has been regenerated'); | 
					
						
							| 
									
										
										
										
											2022-08-30 00:46:41 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-17 21:39:53 +08:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2020-05-02 06:41:47 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | } |