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