2019-09-16 05:33:27 +08:00
|
|
|
<?php
|
|
|
|
|
2023-05-18 00:56:55 +08:00
|
|
|
namespace BookStack\Entities\Controllers;
|
2019-09-16 05:33:27 +08:00
|
|
|
|
2024-02-05 01:35:16 +08:00
|
|
|
use BookStack\Entities\Queries\BookQueries;
|
2021-06-26 23:23:15 +08:00
|
|
|
use BookStack\Entities\Tools\ExportFormatter;
|
2023-05-19 03:53:39 +08:00
|
|
|
use BookStack\Http\Controller;
|
2019-09-16 05:33:27 +08:00
|
|
|
use Throwable;
|
|
|
|
|
|
|
|
class BookExportController extends Controller
|
|
|
|
{
|
2024-02-05 01:35:16 +08:00
|
|
|
public function __construct(
|
|
|
|
protected BookQueries $queries,
|
|
|
|
protected ExportFormatter $exportFormatter,
|
|
|
|
) {
|
2021-08-29 04:48:17 +08:00
|
|
|
$this->middleware('can:content-export');
|
2019-09-16 05:33:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Export a book as a PDF file.
|
2021-06-26 23:23:15 +08:00
|
|
|
*
|
2019-09-16 05:33:27 +08:00
|
|
|
* @throws Throwable
|
|
|
|
*/
|
|
|
|
public function pdf(string $bookSlug)
|
|
|
|
{
|
2024-02-06 01:35:49 +08:00
|
|
|
$book = $this->queries->findVisibleBySlugOrFail($bookSlug);
|
2020-11-22 09:26:14 +08:00
|
|
|
$pdfContent = $this->exportFormatter->bookToPdf($book);
|
2021-06-26 23:23:15 +08:00
|
|
|
|
2022-06-09 06:50:42 +08:00
|
|
|
return $this->download()->directly($pdfContent, $bookSlug . '.pdf');
|
2019-09-16 05:33:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Export a book as a contained HTML file.
|
2021-06-26 23:23:15 +08:00
|
|
|
*
|
2019-09-16 05:33:27 +08:00
|
|
|
* @throws Throwable
|
|
|
|
*/
|
|
|
|
public function html(string $bookSlug)
|
|
|
|
{
|
2024-02-06 01:35:49 +08:00
|
|
|
$book = $this->queries->findVisibleBySlugOrFail($bookSlug);
|
2020-11-22 09:26:14 +08:00
|
|
|
$htmlContent = $this->exportFormatter->bookToContainedHtml($book);
|
2021-06-26 23:23:15 +08:00
|
|
|
|
2022-06-09 06:50:42 +08:00
|
|
|
return $this->download()->directly($htmlContent, $bookSlug . '.html');
|
2019-09-16 05:33:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Export a book as a plain text file.
|
|
|
|
*/
|
|
|
|
public function plainText(string $bookSlug)
|
|
|
|
{
|
2024-02-06 01:35:49 +08:00
|
|
|
$book = $this->queries->findVisibleBySlugOrFail($bookSlug);
|
2020-11-22 09:26:14 +08:00
|
|
|
$textContent = $this->exportFormatter->bookToPlainText($book);
|
2021-06-26 23:23:15 +08:00
|
|
|
|
2022-06-09 06:50:42 +08:00
|
|
|
return $this->download()->directly($textContent, $bookSlug . '.txt');
|
2019-09-16 05:33:27 +08:00
|
|
|
}
|
2020-05-13 12:12:26 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Export a book as a markdown file.
|
|
|
|
*/
|
|
|
|
public function markdown(string $bookSlug)
|
|
|
|
{
|
2024-02-06 01:35:49 +08:00
|
|
|
$book = $this->queries->findVisibleBySlugOrFail($bookSlug);
|
2021-06-23 04:02:18 +08:00
|
|
|
$textContent = $this->exportFormatter->bookToMarkdown($book);
|
2021-06-26 23:23:15 +08:00
|
|
|
|
2022-06-09 06:50:42 +08:00
|
|
|
return $this->download()->directly($textContent, $bookSlug . '.md');
|
2020-05-13 12:12:26 +08:00
|
|
|
}
|
2019-09-16 05:33:27 +08:00
|
|
|
}
|