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