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

169 lines
4.9 KiB
PHP
Raw Normal View History

2015-07-18 14:32:31 -05:00
<?php
namespace FireflyIII\Http\Controllers;
2015-07-18 16:51:51 -05:00
use Crypt;
2015-07-25 09:48:32 -05:00
use File;
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
/**
* @codeCoverageIgnore
*/
public function __construct()
{
parent::__construct();
View::share('mainTitleIcon', 'fa-paperclip');
View::share('title', trans('firefly.attachments'));
}
/**
* @param Attachment $attachment
*
* @return \Illuminate\View\View
*/
public function edit(Attachment $attachment)
{
$subTitleIcon = 'fa-pencil';
$subTitle = trans('firefly.edit_attachment', ['name' => $attachment->filename]);
2015-07-19 05:21:38 -05:00
// put previous url in session if not redirect from store (not "return_to_edit").
if (Session::get('attachments.edit.fromUpdate') !== true) {
Session::put('attachments.edit.url', URL::previous());
}
Session::forget('attachments.edit.fromUpdate');
2015-07-18 16:51:51 -05:00
return view('attachments.edit', compact('attachment', 'subTitleIcon', 'subTitle'));
}
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();
2015-07-19 05:21:38 -05:00
return redirect(Session::get('attachments.delete.url'));
2015-07-19 02:53:58 -05:00
}
2015-07-18 14:32:31 -05:00
/**
* @param Attachment $attachment
*/
public function download(Attachment $attachment, AttachmentHelperInterface $helper)
{
$file = $helper->getAttachmentLocation($attachment);
if (file_exists($file)) {
$quoted = sprintf('"%s"', addcslashes(basename($attachment->filename), '"\\'));
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);
echo Crypt::decrypt(file_get_contents($file));
} else {
abort(404);
}
2015-07-19 02:37:28 -05:00
}
/**
* @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-25 09:48:32 -05:00
$file = public_path('images/image.png');
$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.
2015-07-19 05:21:38 -05:00
return redirect(Session::get('attachments.edit.url'));
2015-07-18 14:32:31 -05:00
}
2015-07-19 02:38:44 -05:00
}