2021-06-26 11:23:15 -04:00
|
|
|
<?php
|
|
|
|
|
2023-05-17 12:56:55 -04:00
|
|
|
namespace BookStack\Entities\Controllers;
|
2020-11-28 10:39:40 -05:00
|
|
|
|
|
|
|
use BookStack\Entities\Models\Page;
|
|
|
|
use BookStack\Entities\Tools\ExportFormatter;
|
2023-05-17 12:56:55 -04:00
|
|
|
use BookStack\Http\Controllers\ApiController;
|
2020-11-28 10:39:40 -05:00
|
|
|
use Throwable;
|
|
|
|
|
|
|
|
class PageExportApiController extends ApiController
|
|
|
|
{
|
|
|
|
protected $exportFormatter;
|
|
|
|
|
|
|
|
public function __construct(ExportFormatter $exportFormatter)
|
|
|
|
{
|
|
|
|
$this->exportFormatter = $exportFormatter;
|
2021-08-28 16:48:17 -04:00
|
|
|
$this->middleware('can:content-export');
|
2020-11-28 10:39:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Export a page as a PDF file.
|
2021-06-26 11:23:15 -04:00
|
|
|
*
|
2020-11-28 10:39:40 -05:00
|
|
|
* @throws Throwable
|
|
|
|
*/
|
|
|
|
public function exportPdf(int $id)
|
|
|
|
{
|
|
|
|
$page = Page::visible()->findOrFail($id);
|
|
|
|
$pdfContent = $this->exportFormatter->pageToPdf($page);
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2022-06-08 18:50:42 -04:00
|
|
|
return $this->download()->directly($pdfContent, $page->slug . '.pdf');
|
2020-11-28 10:39:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Export a page as a contained HTML file.
|
2021-06-26 11:23:15 -04:00
|
|
|
*
|
2020-11-28 10:39:40 -05:00
|
|
|
* @throws Throwable
|
|
|
|
*/
|
|
|
|
public function exportHtml(int $id)
|
|
|
|
{
|
|
|
|
$page = Page::visible()->findOrFail($id);
|
|
|
|
$htmlContent = $this->exportFormatter->pageToContainedHtml($page);
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2022-06-08 18:50:42 -04:00
|
|
|
return $this->download()->directly($htmlContent, $page->slug . '.html');
|
2020-11-28 10:39:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Export a page as a plain text file.
|
|
|
|
*/
|
|
|
|
public function exportPlainText(int $id)
|
|
|
|
{
|
|
|
|
$page = Page::visible()->findOrFail($id);
|
|
|
|
$textContent = $this->exportFormatter->pageToPlainText($page);
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2022-06-08 18:50:42 -04:00
|
|
|
return $this->download()->directly($textContent, $page->slug . '.txt');
|
2020-11-28 10:39:40 -05:00
|
|
|
}
|
2021-06-22 16:32:55 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Export a page as a markdown file.
|
|
|
|
*/
|
|
|
|
public function exportMarkdown(int $id)
|
|
|
|
{
|
|
|
|
$page = Page::visible()->findOrFail($id);
|
|
|
|
$markdown = $this->exportFormatter->pageToMarkdown($page);
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2022-06-08 18:50:42 -04:00
|
|
|
return $this->download()->directly($markdown, $page->slug . '.md');
|
2021-06-22 16:32:55 -04:00
|
|
|
}
|
2020-11-28 10:39:40 -05:00
|
|
|
}
|