| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-18 00:56:55 +08:00
										 |  |  | namespace BookStack\Entities\Controllers; | 
					
						
							| 
									
										
										
										
											2020-11-28 23:39:40 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | use BookStack\Entities\Models\Page; | 
					
						
							|  |  |  | use BookStack\Entities\Tools\ExportFormatter; | 
					
						
							| 
									
										
										
										
											2023-05-19 03:53:39 +08:00
										 |  |  | use BookStack\Http\ApiController; | 
					
						
							| 
									
										
										
										
											2020-11-28 23:39:40 +08:00
										 |  |  | use Throwable; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class PageExportApiController extends ApiController | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     protected $exportFormatter; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public function __construct(ExportFormatter $exportFormatter) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->exportFormatter = $exportFormatter; | 
					
						
							| 
									
										
										
										
											2021-08-29 04:48:17 +08:00
										 |  |  |         $this->middleware('can:content-export'); | 
					
						
							| 
									
										
										
										
											2020-11-28 23:39:40 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Export a page as a PDF file. | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2020-11-28 23:39:40 +08:00
										 |  |  |      * @throws Throwable | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function exportPdf(int $id) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $page = Page::visible()->findOrFail($id); | 
					
						
							|  |  |  |         $pdfContent = $this->exportFormatter->pageToPdf($page); | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-09 06:50:42 +08:00
										 |  |  |         return $this->download()->directly($pdfContent, $page->slug . '.pdf'); | 
					
						
							| 
									
										
										
										
											2020-11-28 23:39:40 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Export a page as a contained HTML file. | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2020-11-28 23:39:40 +08:00
										 |  |  |      * @throws Throwable | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function exportHtml(int $id) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $page = Page::visible()->findOrFail($id); | 
					
						
							|  |  |  |         $htmlContent = $this->exportFormatter->pageToContainedHtml($page); | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-09 06:50:42 +08:00
										 |  |  |         return $this->download()->directly($htmlContent, $page->slug . '.html'); | 
					
						
							| 
									
										
										
										
											2020-11-28 23:39:40 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Export a page as a plain text file. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function exportPlainText(int $id) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $page = Page::visible()->findOrFail($id); | 
					
						
							|  |  |  |         $textContent = $this->exportFormatter->pageToPlainText($page); | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-09 06:50:42 +08:00
										 |  |  |         return $this->download()->directly($textContent, $page->slug . '.txt'); | 
					
						
							| 
									
										
										
										
											2020-11-28 23:39:40 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-06-23 04:32:55 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Export a page as a markdown file. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function exportMarkdown(int $id) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $page = Page::visible()->findOrFail($id); | 
					
						
							|  |  |  |         $markdown = $this->exportFormatter->pageToMarkdown($page); | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-09 06:50:42 +08:00
										 |  |  |         return $this->download()->directly($markdown, $page->slug . '.md'); | 
					
						
							| 
									
										
										
										
											2021-06-23 04:32:55 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-11-28 23:39:40 +08:00
										 |  |  | } |