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

177 lines
5.3 KiB
PHP
Raw Normal View History

2015-07-18 14:32:31 -05:00
<?php
2016-02-05 05:08:25 -06:00
declare(strict_types = 1);
2015-07-18 14:32:31 -05:00
namespace FireflyIII\Http\Controllers;
2015-07-18 16:51:51 -05:00
use Crypt;
2015-07-25 09:48:32 -05:00
use File;
2016-02-07 00:56:58 -06:00
use FireflyIII\Exceptions\FireflyException;
2015-07-18 14:32:31 -05:00
use FireflyIII\Helpers\Attachments\AttachmentHelperInterface;
2015-07-19 02:37:28 -05:00
use FireflyIII\Http\Requests\AttachmentFormRequest;
2015-07-18 14:32:31 -05:00
use FireflyIII\Models\Attachment;
2015-07-19 02:37:28 -05:00
use FireflyIII\Repositories\Attachment\AttachmentRepositoryInterface;
use Input;
use Preferences;
2015-07-25 09:48:32 -05:00
use Response;
2015-07-19 02:37:28 -05:00
use Session;
2015-07-19 02:53:58 -05:00
use URL;
2015-07-18 16:51:51 -05:00
use View;
2015-07-18 14:32:31 -05:00
/**
* Class AttachmentController
*
* @package FireflyIII\Http\Controllers
*/
class AttachmentController extends Controller
{
2015-07-18 16:51:51 -05:00
/**
*
2015-07-18 16:51:51 -05:00
*/
public function __construct()
{
parent::__construct();
View::share('mainTitleIcon', 'fa-paperclip');
View::share('title', trans('firefly.attachments'));
}
2015-07-19 02:53:58 -05: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 05:21:38 -05:00
Session::put('attachments.delete.url', URL::previous());
2015-07-19 02:53:58 -05: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 00:27:03 -06:00
return redirect(session('attachments.delete.url'));
2015-07-19 02:53:58 -05:00
}
2015-07-18 14:32:31 -05:00
/**
* @param Attachment $attachment
* @param AttachmentHelperInterface $helper
2016-01-29 00:08:17 -06:00
*
2016-02-07 00:56:58 -06:00
* @throws FireflyException
*
2015-07-18 14:32:31 -05:00
*/
public function download(Attachment $attachment, AttachmentHelperInterface $helper)
{
$file = $helper->getAttachmentLocation($attachment);
if (file_exists($file)) {
$quoted = sprintf('"%s"', addcslashes(basename($attachment->filename), '"\\'));
return response(Crypt::decrypt(file_get_contents($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')
->header('Content-Length', $attachment->size);
2015-07-18 14:32:31 -05:00
}
2016-02-07 00:56:58 -06:00
throw new FireflyException('Could not find the indicated attachment. The file is no longer there.');
2015-07-19 02:37:28 -05:00
}
2016-01-24 08:58:16 -06: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 00:27:03 -06:00
if (session('attachments.edit.fromUpdate') !== true) {
2016-01-24 08:58:16 -06: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 11:33:19 -05:00
*
* @return \Illuminate\Http\Response
*/
2015-07-25 09:48:32 -05:00
public function preview(Attachment $attachment)
{
2015-07-26 08:51:07 -05:00
if ($attachment->mime == 'application/pdf') {
2015-07-25 12:04:39 -05:00
$file = public_path('images/page_white_acrobat.png');
} else {
$file = public_path('images/page_green.png');
}
2015-07-25 09:48:32 -05:00
$response = Response::make(File::get($file));
$response->header('Content-Type', 'image/png');
2015-07-25 09:48:32 -05:00
return $response;
}
2015-07-19 02:37:28 -05: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 05:21:38 -05:00
Session::put('attachments.edit.fromUpdate', true);
2015-07-19 02:37:28 -05:00
2015-07-19 05:21:38 -05:00
return redirect(route('attachments.edit', [$attachment->id]))->withInput(['return_to_edit' => 1]);
2015-07-19 02:37:28 -05:00
}
2015-07-18 14:32:31 -05:00
2015-07-19 02:37:28 -05:00
// redirect to previous URL.
2016-02-04 00:27:03 -06:00
return redirect(session('attachments.edit.url'));
2015-07-18 14:32:31 -05:00
}
2015-07-19 02:38:44 -05:00
}