BookStack/app/Http/Controllers/Api/ChapterExportApiController.php

70 lines
1.8 KiB
PHP
Raw Normal View History

2021-06-26 15:23:15 +00:00
<?php
namespace BookStack\Http\Controllers\Api;
2020-05-22 23:28:41 +00:00
use BookStack\Entities\Models\Chapter;
use BookStack\Entities\Tools\ExportFormatter;
2020-05-22 23:28:41 +00:00
use Throwable;
class ChapterExportApiController extends ApiController
{
protected $exportFormatter;
2020-05-22 23:28:41 +00:00
/**
* ChapterExportController constructor.
*/
2020-11-28 15:39:40 +00:00
public function __construct(ExportFormatter $exportFormatter)
2020-05-22 23:28:41 +00:00
{
$this->exportFormatter = $exportFormatter;
$this->middleware('can:content-export');
2020-05-22 23:28:41 +00:00
}
/**
* Export a chapter as a PDF file.
2021-06-26 15:23:15 +00:00
*
2020-05-22 23:28:41 +00:00
* @throws Throwable
*/
public function exportPdf(int $id)
{
$chapter = Chapter::visible()->findOrFail($id);
$pdfContent = $this->exportFormatter->chapterToPdf($chapter);
2021-06-26 15:23:15 +00:00
2020-05-22 23:28:41 +00:00
return $this->downloadResponse($pdfContent, $chapter->slug . '.pdf');
}
/**
* Export a chapter as a contained HTML file.
2021-06-26 15:23:15 +00:00
*
2020-05-22 23:28:41 +00:00
* @throws Throwable
*/
public function exportHtml(int $id)
{
$chapter = Chapter::visible()->findOrFail($id);
$htmlContent = $this->exportFormatter->chapterToContainedHtml($chapter);
2021-06-26 15:23:15 +00:00
2020-05-22 23:28:41 +00:00
return $this->downloadResponse($htmlContent, $chapter->slug . '.html');
}
/**
* Export a chapter as a plain text file.
*/
public function exportPlainText(int $id)
{
$chapter = Chapter::visible()->findOrFail($id);
$textContent = $this->exportFormatter->chapterToPlainText($chapter);
2021-06-26 15:23:15 +00:00
2020-05-22 23:28:41 +00:00
return $this->downloadResponse($textContent, $chapter->slug . '.txt');
}
/**
* Export a chapter as a markdown file.
*/
public function exportMarkdown(int $id)
{
$chapter = Chapter::visible()->findOrFail($id);
$markdown = $this->exportFormatter->chapterToMarkdown($chapter);
2021-06-26 15:23:15 +00:00
return $this->downloadResponse($markdown, $chapter->slug . '.md');
}
2020-05-22 23:28:41 +00:00
}