| 
									
										
										
										
											2020-04-10 23:05:17 +08:00
										 |  |  | <?php namespace BookStack\Http\Controllers\Api; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-22 08:17:45 +08:00
										 |  |  | use BookStack\Entities\Models\Book; | 
					
						
							|  |  |  | use BookStack\Entities\Tools\ExportFormatter; | 
					
						
							| 
									
										
										
										
											2020-04-10 23:05:17 +08:00
										 |  |  | use Throwable; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-23 07:28:41 +08:00
										 |  |  | class BookExportApiController extends ApiController | 
					
						
							| 
									
										
										
										
											2020-04-10 23:05:17 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-11-22 09:26:14 +08:00
										 |  |  |     protected $exportFormatter; | 
					
						
							| 
									
										
										
										
											2020-04-10 23:05:17 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-28 23:39:40 +08:00
										 |  |  |     public function __construct(ExportFormatter $exportFormatter) | 
					
						
							| 
									
										
										
										
											2020-04-10 23:05:17 +08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2020-11-22 09:26:14 +08:00
										 |  |  |         $this->exportFormatter = $exportFormatter; | 
					
						
							| 
									
										
										
										
											2020-04-10 23:05:17 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Export a book as a PDF file. | 
					
						
							|  |  |  |      * @throws Throwable | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function exportPdf(int $id) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $book = Book::visible()->findOrFail($id); | 
					
						
							| 
									
										
										
										
											2020-11-22 09:26:14 +08:00
										 |  |  |         $pdfContent = $this->exportFormatter->bookToPdf($book); | 
					
						
							| 
									
										
										
										
											2020-04-10 23:05:17 +08:00
										 |  |  |         return $this->downloadResponse($pdfContent, $book->slug . '.pdf'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Export a book as a contained HTML file. | 
					
						
							|  |  |  |      * @throws Throwable | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function exportHtml(int $id) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $book = Book::visible()->findOrFail($id); | 
					
						
							| 
									
										
										
										
											2020-11-22 09:26:14 +08:00
										 |  |  |         $htmlContent = $this->exportFormatter->bookToContainedHtml($book); | 
					
						
							| 
									
										
										
										
											2020-04-10 23:05:17 +08:00
										 |  |  |         return $this->downloadResponse($htmlContent, $book->slug . '.html'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Export a book as a plain text file. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function exportPlainText(int $id) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $book = Book::visible()->findOrFail($id); | 
					
						
							| 
									
										
										
										
											2020-11-22 09:26:14 +08:00
										 |  |  |         $textContent = $this->exportFormatter->bookToPlainText($book); | 
					
						
							| 
									
										
										
										
											2020-04-10 23:05:17 +08:00
										 |  |  |         return $this->downloadResponse($textContent, $book->slug . '.txt'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } |