2021-06-26 17:23:15 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace BookStack\Http\Controllers\Api;
|
2020-04-10 17:05:17 +02:00
|
|
|
|
2020-11-22 01:17:45 +01:00
|
|
|
use BookStack\Entities\Models\Book;
|
|
|
|
use BookStack\Entities\Tools\ExportFormatter;
|
2020-04-10 17:05:17 +02:00
|
|
|
use Throwable;
|
|
|
|
|
2020-05-23 01:28:41 +02:00
|
|
|
class BookExportApiController extends ApiController
|
2020-04-10 17:05:17 +02:00
|
|
|
{
|
2020-11-22 02:26:14 +01:00
|
|
|
protected $exportFormatter;
|
2020-04-10 17:05:17 +02:00
|
|
|
|
2020-11-28 16:39:40 +01:00
|
|
|
public function __construct(ExportFormatter $exportFormatter)
|
2020-04-10 17:05:17 +02:00
|
|
|
{
|
2020-11-22 02:26:14 +01:00
|
|
|
$this->exportFormatter = $exportFormatter;
|
2021-08-28 22:48:17 +02:00
|
|
|
$this->middleware('can:content-export');
|
2020-04-10 17:05:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Export a book as a PDF file.
|
2021-06-26 17:23:15 +02:00
|
|
|
*
|
2020-04-10 17:05:17 +02:00
|
|
|
* @throws Throwable
|
|
|
|
*/
|
|
|
|
public function exportPdf(int $id)
|
|
|
|
{
|
|
|
|
$book = Book::visible()->findOrFail($id);
|
2020-11-22 02:26:14 +01:00
|
|
|
$pdfContent = $this->exportFormatter->bookToPdf($book);
|
2021-06-26 17:23:15 +02:00
|
|
|
|
2022-06-09 00:50:42 +02:00
|
|
|
return $this->download()->directly($pdfContent, $book->slug . '.pdf');
|
2020-04-10 17:05:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Export a book as a contained HTML file.
|
2021-06-26 17:23:15 +02:00
|
|
|
*
|
2020-04-10 17:05:17 +02:00
|
|
|
* @throws Throwable
|
|
|
|
*/
|
|
|
|
public function exportHtml(int $id)
|
|
|
|
{
|
|
|
|
$book = Book::visible()->findOrFail($id);
|
2020-11-22 02:26:14 +01:00
|
|
|
$htmlContent = $this->exportFormatter->bookToContainedHtml($book);
|
2021-06-26 17:23:15 +02:00
|
|
|
|
2022-06-09 00:50:42 +02:00
|
|
|
return $this->download()->directly($htmlContent, $book->slug . '.html');
|
2020-04-10 17:05:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Export a book as a plain text file.
|
|
|
|
*/
|
|
|
|
public function exportPlainText(int $id)
|
|
|
|
{
|
|
|
|
$book = Book::visible()->findOrFail($id);
|
2020-11-22 02:26:14 +01:00
|
|
|
$textContent = $this->exportFormatter->bookToPlainText($book);
|
2021-06-26 17:23:15 +02:00
|
|
|
|
2022-06-09 00:50:42 +02:00
|
|
|
return $this->download()->directly($textContent, $book->slug . '.txt');
|
2020-04-10 17:05:17 +02:00
|
|
|
}
|
2021-06-22 22:32:55 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Export a book as a markdown file.
|
|
|
|
*/
|
|
|
|
public function exportMarkdown(int $id)
|
|
|
|
{
|
|
|
|
$book = Book::visible()->findOrFail($id);
|
|
|
|
$markdown = $this->exportFormatter->bookToMarkdown($book);
|
2021-06-26 17:23:15 +02:00
|
|
|
|
2022-06-09 00:50:42 +02:00
|
|
|
return $this->download()->directly($markdown, $book->slug . '.md');
|
2021-06-22 22:32:55 +02:00
|
|
|
}
|
2020-04-10 17:05:17 +02:00
|
|
|
}
|