Files
firefly-iii/app/Http/Controllers/AttachmentController.php

180 lines
5.4 KiB
PHP
Raw Normal View History

2015-07-18 21:32:31 +02:00
<?php
2016-02-05 12:08:25 +01:00
declare(strict_types = 1);
2015-07-18 21:32:31 +02:00
namespace FireflyIII\Http\Controllers;
2015-07-18 23:51:51 +02:00
use Crypt;
2015-07-25 16:48:32 +02:00
use File;
2016-02-07 07:56:58 +01:00
use FireflyIII\Exceptions\FireflyException;
2015-07-18 21:32:31 +02:00
use FireflyIII\Helpers\Attachments\AttachmentHelperInterface;
2015-07-19 09:37:28 +02:00
use FireflyIII\Http\Requests\AttachmentFormRequest;
2015-07-18 21:32:31 +02:00
use FireflyIII\Models\Attachment;
2015-07-19 09:37:28 +02:00
use FireflyIII\Repositories\Attachment\AttachmentRepositoryInterface;
use Input;
use Preferences;
2015-07-25 16:48:32 +02:00
use Response;
2015-07-19 09:37:28 +02:00
use Session;
2016-02-25 14:53:26 +01:00
use Storage;
2015-07-19 09:53:58 +02:00
use URL;
2015-07-18 23:51:51 +02:00
use View;
2015-07-18 21:32:31 +02:00
/**
* Class AttachmentController
*
* @package FireflyIII\Http\Controllers
*/
class AttachmentController extends Controller
{
2015-07-18 23:51:51 +02:00
/**
*
2015-07-18 23:51:51 +02:00
*/
public function __construct()
{
parent::__construct();
View::share('mainTitleIcon', 'fa-paperclip');
View::share('title', trans('firefly.attachments'));
}
2015-07-19 09:53:58 +02:00
/**
* @param Attachment $attachment
*
* @return \Illuminate\View\View
*/
public function delete(Attachment $attachment)
{
$subTitle = trans('firefly.delete_attachment', ['name' => $attachment->filename]);
// put previous url in session
2015-07-19 12:21:38 +02:00
Session::put('attachments.delete.url', URL::previous());
2015-07-19 09:53:58 +02:00
Session::flash('gaEventCategory', 'attachments');
Session::flash('gaEventAction', 'delete-attachment');
return view('attachments.delete', compact('attachment', 'subTitle'));
}
/**
* @param AttachmentRepositoryInterface $repository
* @param Attachment $attachment
*
* @return \Illuminate\Http\RedirectResponse
*/
public function destroy(AttachmentRepositoryInterface $repository, Attachment $attachment)
{
$name = $attachment->filename;
$repository->destroy($attachment);
Session::flash('success', trans('firefly.attachment_deleted', ['name' => $name]));
Preferences::mark();
2016-02-04 07:27:03 +01:00
return redirect(session('attachments.delete.url'));
2015-07-19 09:53:58 +02:00
}
2015-07-18 21:32:31 +02:00
/**
* @param Attachment $attachment
* @param AttachmentHelperInterface $helper
2016-01-29 07:08:17 +01:00
*
2016-02-07 07:56:58 +01:00
* @throws FireflyException
*
2015-07-18 21:32:31 +02:00
*/
public function download(Attachment $attachment, AttachmentHelperInterface $helper)
{
2016-02-25 14:53:26 +01:00
// create a disk.
$disk = Storage::disk('upload');
$file = $attachment->fileName();
2015-07-18 21:32:31 +02:00
2016-02-25 14:53:26 +01:00
if ($disk->exists($file)) {
2015-07-18 21:32:31 +02:00
$quoted = sprintf('"%s"', addcslashes(basename($attachment->filename), '"\\'));
2016-02-25 14:53:26 +01:00
return response(Crypt::decrypt($disk->get($file)), 200)
->header('Content-Description', 'File Transfer')
->header('Content-Type', 'application/octet-stream')
->header('Content-Disposition', 'attachment; filename=' . $quoted)
->header('Content-Transfer-Encoding', 'binary')
->header('Connection', 'Keep-Alive')
->header('Expires', '0')
->header('Cache-Control', 'must-revalidate, post-check=0, pre-check=0')
->header('Pragma', 'public')
2016-02-25 14:53:26 +01:00
->header('Content-Length', $disk->size($file));
2015-07-18 21:32:31 +02:00
}
2016-02-07 07:56:58 +01:00
throw new FireflyException('Could not find the indicated attachment. The file is no longer there.');
2015-07-19 09:37:28 +02:00
}
2016-01-24 15:58:16 +01:00
/**
* @param Attachment $attachment
*
* @return \Illuminate\View\View
*/
public function edit(Attachment $attachment)
{
$subTitleIcon = 'fa-pencil';
$subTitle = trans('firefly.edit_attachment', ['name' => $attachment->filename]);
// put previous url in session if not redirect from store (not "return_to_edit").
2016-02-04 07:27:03 +01:00
if (session('attachments.edit.fromUpdate') !== true) {
2016-01-24 15:58:16 +01:00
Session::put('attachments.edit.url', URL::previous());
}
Session::forget('attachments.edit.fromUpdate');
return view('attachments.edit', compact('attachment', 'subTitleIcon', 'subTitle'));
}
/**
* @param Attachment $attachment
2015-07-25 18:33:19 +02:00
*
* @return \Illuminate\Http\Response
*/
2015-07-25 16:48:32 +02:00
public function preview(Attachment $attachment)
{
2015-07-26 15:51:07 +02:00
if ($attachment->mime == 'application/pdf') {
2015-07-25 19:04:39 +02:00
$file = public_path('images/page_white_acrobat.png');
} else {
$file = public_path('images/page_green.png');
}
2015-07-25 16:48:32 +02:00
$response = Response::make(File::get($file));
$response->header('Content-Type', 'image/png');
2015-07-25 16:48:32 +02:00
return $response;
}
2015-07-19 09:37:28 +02:00
/**
* @param AttachmentFormRequest $request
* @param AttachmentRepositoryInterface $repository
* @param Attachment $attachment
*
* @return \Illuminate\Http\RedirectResponse
*/
public function update(AttachmentFormRequest $request, AttachmentRepositoryInterface $repository, Attachment $attachment)
{
$attachmentData = [
'title' => $request->input('title'),
'description' => $request->input('description'),
'notes' => $request->input('notes'),
];
$repository->update($attachment, $attachmentData);
Session::flash('success', 'Attachment "' . $attachment->filename . '" updated.');
Preferences::mark();
if (intval(Input::get('return_to_edit')) === 1) {
// set value so edit routine will not overwrite URL:
2015-07-19 12:21:38 +02:00
Session::put('attachments.edit.fromUpdate', true);
2015-07-19 09:37:28 +02:00
2015-07-19 12:21:38 +02:00
return redirect(route('attachments.edit', [$attachment->id]))->withInput(['return_to_edit' => 1]);
2015-07-19 09:37:28 +02:00
}
2015-07-18 21:32:31 +02:00
2015-07-19 09:37:28 +02:00
// redirect to previous URL.
2016-02-04 07:27:03 +01:00
return redirect(session('attachments.edit.url'));
2015-07-18 21:32:31 +02:00
}
2015-07-19 09:38:44 +02:00
}