BookStack/app/Http/Controllers/AttachmentController.php

215 lines
6.9 KiB
PHP
Raw Normal View History

<?php namespace BookStack\Http\Controllers;
use BookStack\Entities\Repos\PageRepo;
use BookStack\Exceptions\FileUploadException;
use BookStack\Exceptions\NotFoundException;
use BookStack\Uploads\Attachment;
use BookStack\Uploads\AttachmentService;
use Exception;
use Illuminate\Contracts\Filesystem\FileNotFoundException;
use Illuminate\Http\Request;
use Illuminate\Validation\ValidationException;
2016-11-12 14:12:26 +00:00
class AttachmentController extends Controller
{
2016-11-12 14:12:26 +00:00
protected $attachmentService;
protected $attachment;
protected $pageRepo;
/**
2016-11-12 14:12:26 +00:00
* AttachmentController constructor.
*/
public function __construct(AttachmentService $attachmentService, Attachment $attachment, PageRepo $pageRepo)
{
2016-11-12 14:12:26 +00:00
$this->attachmentService = $attachmentService;
$this->attachment = $attachment;
$this->pageRepo = $pageRepo;
2016-11-12 14:12:26 +00:00
parent::__construct();
}
/**
2016-11-12 14:12:26 +00:00
* Endpoint at which attachments are uploaded to.
* @throws ValidationException
* @throws NotFoundException
*/
public function upload(Request $request)
{
$this->validate($request, [
'uploaded_to' => 'required|integer|exists:pages,id',
'file' => 'required|file'
]);
$pageId = $request->get('uploaded_to');
$page = $this->pageRepo->getById($pageId);
2016-11-12 14:12:26 +00:00
$this->checkPermission('attachment-create-all');
$this->checkOwnablePermission('page-update', $page);
$uploadedFile = $request->file('file');
try {
2016-11-12 14:12:26 +00:00
$attachment = $this->attachmentService->saveNewUpload($uploadedFile, $pageId);
} catch (FileUploadException $e) {
return response($e->getMessage(), 500);
}
2016-11-12 14:12:26 +00:00
return response()->json($attachment);
}
/**
2016-11-12 14:12:26 +00:00
* Update an uploaded attachment.
* @throws ValidationException
* @throws NotFoundException
*/
public function uploadUpdate(Request $request, $attachmentId)
{
$this->validate($request, [
'uploaded_to' => 'required|integer|exists:pages,id',
'file' => 'required|file'
]);
$pageId = $request->get('uploaded_to');
$page = $this->pageRepo->getById($pageId);
2016-11-12 14:12:26 +00:00
$attachment = $this->attachment->findOrFail($attachmentId);
$this->checkOwnablePermission('page-update', $page);
2016-11-12 14:12:26 +00:00
$this->checkOwnablePermission('attachment-create', $attachment);
2016-11-12 14:12:26 +00:00
if (intval($pageId) !== intval($attachment->uploaded_to)) {
2016-12-04 16:51:39 +00:00
return $this->jsonError(trans('errors.attachment_page_mismatch'));
}
$uploadedFile = $request->file('file');
try {
2016-11-12 14:12:26 +00:00
$attachment = $this->attachmentService->saveUpdatedUpload($uploadedFile, $attachment);
} catch (FileUploadException $e) {
return response($e->getMessage(), 500);
}
2016-11-12 14:12:26 +00:00
return response()->json($attachment);
}
/**
* Update the details of an existing file.
* @throws ValidationException
* @throws NotFoundException
*/
public function update(Request $request, $attachmentId)
{
$this->validate($request, [
'uploaded_to' => 'required|integer|exists:pages,id',
'name' => 'required|string|min:1|max:255',
'link' => 'string|min:1|max:255'
]);
$pageId = $request->get('uploaded_to');
$page = $this->pageRepo->getById($pageId);
2016-11-12 14:12:26 +00:00
$attachment = $this->attachment->findOrFail($attachmentId);
$this->checkOwnablePermission('page-update', $page);
2016-11-12 14:12:26 +00:00
$this->checkOwnablePermission('attachment-create', $attachment);
2016-11-12 14:12:26 +00:00
if (intval($pageId) !== intval($attachment->uploaded_to)) {
2016-12-04 16:51:39 +00:00
return $this->jsonError(trans('errors.attachment_page_mismatch'));
}
2016-11-12 14:12:26 +00:00
$attachment = $this->attachmentService->updateFile($attachment, $request->all());
return response()->json($attachment);
}
/**
2016-11-12 14:12:26 +00:00
* Attach a link to a page.
* @throws ValidationException
* @throws NotFoundException
*/
public function attachLink(Request $request)
{
$this->validate($request, [
'uploaded_to' => 'required|integer|exists:pages,id',
'name' => 'required|string|min:1|max:255',
'link' => 'required|string|min:1|max:255'
]);
$pageId = $request->get('uploaded_to');
$page = $this->pageRepo->getById($pageId);
2016-11-12 14:12:26 +00:00
$this->checkPermission('attachment-create-all');
$this->checkOwnablePermission('page-update', $page);
2016-11-12 14:12:26 +00:00
$attachmentName = $request->get('name');
$link = $request->get('link');
2016-11-12 14:12:26 +00:00
$attachment = $this->attachmentService->saveNewFromLink($attachmentName, $link, $pageId);
2016-11-12 14:12:26 +00:00
return response()->json($attachment);
}
/**
2016-11-12 14:12:26 +00:00
* Get the attachments for a specific page.
*/
public function listForPage(int $pageId)
{
$page = $this->pageRepo->getById($pageId);
$this->checkOwnablePermission('page-view', $page);
2016-11-12 14:21:54 +00:00
return response()->json($page->attachments);
}
/**
2016-11-12 14:12:26 +00:00
* Update the attachment sorting.
* @throws ValidationException
* @throws NotFoundException
*/
public function sortForPage(Request $request, int $pageId)
{
$this->validate($request, [
'files' => 'required|array',
'files.*.id' => 'required|integer',
]);
$page = $this->pageRepo->getById($pageId);
$this->checkOwnablePermission('page-update', $page);
2016-11-12 14:12:26 +00:00
$attachments = $request->get('files');
$this->attachmentService->updateFileOrderWithinPage($attachments, $pageId);
2016-12-04 16:51:39 +00:00
return response()->json(['message' => trans('entities.attachments_order_updated')]);
}
/**
2016-11-12 14:12:26 +00:00
* Get an attachment from storage.
* @throws FileNotFoundException
* @throws NotFoundException
*/
public function get(int $attachmentId)
{
2016-11-12 14:12:26 +00:00
$attachment = $this->attachment->findOrFail($attachmentId);
try {
$page = $this->pageRepo->getById($attachment->uploaded_to);
} catch (NotFoundException $exception) {
throw new NotFoundException(trans('errors.attachment_not_found'));
}
$this->checkOwnablePermission('page-view', $page);
2016-11-12 14:12:26 +00:00
if ($attachment->external) {
return redirect($attachment->path);
}
2016-11-12 14:12:26 +00:00
$attachmentContents = $this->attachmentService->getAttachmentFromStorage($attachment);
return $this->downloadResponse($attachmentContents, $attachment->getFileName());
}
/**
2016-11-12 14:12:26 +00:00
* Delete a specific attachment in the system.
* @param $attachmentId
* @return mixed
* @throws Exception
*/
public function delete(int $attachmentId)
{
2016-11-12 14:12:26 +00:00
$attachment = $this->attachment->findOrFail($attachmentId);
$this->checkOwnablePermission('attachment-delete', $attachment);
$this->attachmentService->deleteFile($attachment);
2016-12-04 16:51:39 +00:00
return response()->json(['message' => trans('entities.attachments_deleted')]);
}
}