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

201 lines
7.3 KiB
PHP
Raw Normal View History

2016-02-04 17:13:42 +01:00
<?php
/**
* ExportController.php
2017-10-21 08:40:00 +02:00
* Copyright (c) 2017 thegrumpydictator@gmail.com
2016-02-04 17:13:42 +01:00
*
2017-10-21 08:40:00 +02:00
* This file is part of Firefly III.
*
2017-10-21 08:40:00 +02:00
* Firefly III is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Firefly III is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
2017-12-17 14:41:58 +01:00
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
2016-02-04 17:13:42 +01:00
*/
declare(strict_types=1);
2016-02-04 17:13:42 +01:00
namespace FireflyIII\Http\Controllers;
use Carbon\Carbon;
2016-02-25 15:04:17 +01:00
use FireflyIII\Exceptions\FireflyException;
2016-12-11 18:34:18 +01:00
use FireflyIII\Export\ProcessorInterface;
use FireflyIII\Http\Middleware\IsDemoUser;
2016-02-04 17:13:42 +01:00
use FireflyIII\Http\Requests\ExportFormRequest;
use FireflyIII\Models\ExportJob;
2016-10-10 07:25:27 +02:00
use FireflyIII\Repositories\Account\AccountRepositoryInterface;
2016-12-25 12:55:22 +01:00
use FireflyIII\Repositories\ExportJob\ExportJobRepositoryInterface;
2018-07-08 12:28:42 +02:00
use Illuminate\Http\JsonResponse;
2017-01-14 19:43:33 +01:00
use Illuminate\Http\Response as LaravelResponse;
2016-02-04 17:13:42 +01:00
/**
2017-11-15 12:25:49 +01:00
* Class ExportController.
2016-02-04 17:13:42 +01:00
*/
class ExportController extends Controller
{
/**
2018-07-22 08:10:16 +02:00
* ExportController constructor.
2016-02-04 17:13:42 +01:00
*/
public function __construct()
{
parent::__construct();
2016-10-29 07:44:46 +02:00
$this->middleware(
function ($request, $next) {
2017-12-16 19:46:36 +01:00
app('view')->share('mainTitleIcon', 'fa-file-archive-o');
2018-07-15 09:38:49 +02:00
app('view')->share('title', (string)trans('firefly.export_and_backup_data'));
2016-10-29 07:44:46 +02:00
return $next($request);
}
);
$this->middleware(IsDemoUser::class)->except(['index']);
2016-02-04 17:13:42 +01:00
}
/**
2018-07-22 08:10:16 +02:00
* Download exported file.
*
2017-03-05 13:21:36 +01:00
* @param ExportJobRepositoryInterface $repository
* @param ExportJob $job
2016-02-25 15:04:17 +01:00
*
2017-02-25 05:57:01 +01:00
* @return \Illuminate\Contracts\Routing\ResponseFactory|\Symfony\Component\HttpFoundation\Response
2017-11-15 12:25:49 +01:00
*
2016-02-25 15:04:17 +01:00
* @throws FireflyException
2016-02-04 17:13:42 +01:00
*/
2016-12-25 12:55:22 +01:00
public function download(ExportJobRepositoryInterface $repository, ExportJob $job)
2016-02-04 17:13:42 +01:00
{
2016-02-25 15:04:17 +01:00
$file = $job->key . '.zip';
2016-02-04 17:13:42 +01:00
$date = date('Y-m-d \a\t H-i-s');
$name = 'Export job on ' . $date . '.zip';
$quoted = sprintf('"%s"', addcslashes($name, '"\\'));
2016-12-25 12:55:22 +01:00
if (!$repository->exists($job)) {
2016-02-25 15:04:17 +01:00
throw new FireflyException('Against all expectations, zip file "' . $file . '" does not exist.');
}
2016-12-25 12:55:22 +01:00
$content = $repository->getContent($job);
2018-08-06 19:14:30 +02:00
$repository->changeStatus($job, 'export_downloaded');
2017-01-14 19:43:33 +01:00
/** @var LaravelResponse $response */
$response = response($content, 200);
$response
2016-02-04 17:13:42 +01:00
->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')
2018-04-28 06:23:13 +02:00
->header('Content-Length', \strlen($content));
2016-02-04 17:13:42 +01:00
2017-01-14 19:43:33 +01:00
return $response;
2016-02-04 17:13:42 +01:00
}
/**
2018-07-22 08:10:16 +02:00
* Get current export status.
*
2016-02-05 15:41:40 +01:00
* @param ExportJob $job
*
2016-02-04 17:13:42 +01:00
* @return \Illuminate\Http\JsonResponse
*/
2018-07-08 12:28:42 +02:00
public function getStatus(ExportJob $job): JsonResponse
2016-02-04 17:13:42 +01:00
{
2018-07-15 09:38:49 +02:00
return response()->json(['status' => (string)trans('firefly.' . $job->status)]);
2016-02-04 17:13:42 +01:00
}
/**
2018-07-22 08:10:16 +02:00
* Index of export routine.
*
2017-03-05 13:21:36 +01:00
* @param ExportJobRepositoryInterface $jobs
2016-02-04 17:13:42 +01:00
*
2018-07-08 12:08:53 +02:00
* @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
2016-02-04 17:13:42 +01:00
*/
2018-04-29 07:45:54 +02:00
public function index(ExportJobRepositoryInterface $jobs)
2016-02-04 17:13:42 +01:00
{
// create new export job.
$job = $jobs->create();
// delete old ones.
$jobs->cleanup();
// does the user have shared accounts?
2016-04-26 21:40:15 +02:00
$formats = array_keys(config('firefly.export_formats'));
$defaultFormat = app('preferences')->get('export_format', config('firefly.default_export_format'))->data;
2016-02-23 07:31:01 +01:00
$first = session('first')->format('Y-m-d');
2018-08-04 17:30:06 +02:00
$today = Carbon::now()->format('Y-m-d');
2016-02-04 17:13:42 +01:00
2018-04-29 07:45:54 +02:00
return view('export.index', compact('job', 'formats', 'defaultFormat', 'first', 'today'));
2016-02-04 17:13:42 +01:00
}
/**
2018-07-22 08:10:16 +02:00
* Submit the job.
*
2017-03-05 13:21:36 +01:00
* @param ExportFormRequest $request
* @param AccountRepositoryInterface $repository
* @param ExportJobRepositoryInterface $jobs
2016-02-05 15:41:40 +01:00
*
2018-07-08 12:28:42 +02:00
* @return JsonResponse
2018-07-20 14:34:56 +02:00
*
* @SuppressWarnings(PHPMD.ExcessiveMethodLength)
2016-02-04 17:13:42 +01:00
*/
2018-07-08 12:28:42 +02:00
public function postIndex(ExportFormRequest $request, AccountRepositoryInterface $repository, ExportJobRepositoryInterface $jobs): JsonResponse
2016-02-04 17:13:42 +01:00
{
$job = $jobs->findByKey($request->get('job'));
2017-08-18 14:45:42 +02:00
$accounts = $request->get('accounts') ?? [];
2016-02-04 17:13:42 +01:00
$settings = [
2017-08-18 14:45:42 +02:00
'accounts' => $repository->getAccountsById($accounts),
'startDate' => new Carbon($request->get('export_start_range')),
'endDate' => new Carbon($request->get('export_end_range')),
2016-02-04 17:13:42 +01:00
'exportFormat' => $request->get('exportFormat'),
2017-08-18 14:45:42 +02:00
'includeAttachments' => $request->boolean('include_attachments'),
'includeOldUploads' => $request->boolean('include_old_uploads'),
2016-02-04 17:13:42 +01:00
'job' => $job,
];
2016-12-27 15:46:52 +01:00
$jobs->changeStatus($job, 'export_status_make_exporter');
2016-12-11 18:34:18 +01:00
/** @var ProcessorInterface $processor */
2017-08-18 15:32:11 +02:00
$processor = app(ProcessorInterface::class);
2017-02-05 16:16:15 +01:00
$processor->setSettings($settings);
2016-02-04 17:13:42 +01:00
2017-11-15 12:25:49 +01:00
// Collect journals:
2016-12-27 15:46:52 +01:00
$jobs->changeStatus($job, 'export_status_collecting_journals');
2016-02-04 17:13:42 +01:00
$processor->collectJournals();
2016-12-27 15:46:52 +01:00
$jobs->changeStatus($job, 'export_status_collected_journals');
2017-08-18 14:45:42 +02:00
2017-11-15 12:25:49 +01:00
// Transform to exportable entries:
2016-12-27 15:46:52 +01:00
$jobs->changeStatus($job, 'export_status_converting_to_export_format');
2016-02-04 17:13:42 +01:00
$processor->convertJournals();
2016-12-27 15:46:52 +01:00
$jobs->changeStatus($job, 'export_status_converted_to_export_format');
2017-08-18 14:45:42 +02:00
2017-11-15 12:25:49 +01:00
// Transform to (temporary) file:
2016-12-27 15:46:52 +01:00
$jobs->changeStatus($job, 'export_status_creating_journal_file');
2016-02-04 17:13:42 +01:00
$processor->exportJournals();
2016-12-27 15:46:52 +01:00
$jobs->changeStatus($job, 'export_status_created_journal_file');
2017-11-15 12:25:49 +01:00
// Collect attachments, if applicable.
2016-02-04 17:13:42 +01:00
if ($settings['includeAttachments']) {
2016-12-27 15:46:52 +01:00
$jobs->changeStatus($job, 'export_status_collecting_attachments');
2016-02-04 17:13:42 +01:00
$processor->collectAttachments();
2016-12-27 15:46:52 +01:00
$jobs->changeStatus($job, 'export_status_collected_attachments');
2016-02-04 17:13:42 +01:00
}
2017-11-15 12:25:49 +01:00
// Collect old uploads
2016-02-04 17:13:42 +01:00
if ($settings['includeOldUploads']) {
2016-12-27 15:46:52 +01:00
$jobs->changeStatus($job, 'export_status_collecting_old_uploads');
2016-02-04 17:13:42 +01:00
$processor->collectOldUploads();
2016-12-27 15:46:52 +01:00
$jobs->changeStatus($job, 'export_status_collected_old_uploads');
2016-02-04 17:13:42 +01:00
}
2017-11-15 12:25:49 +01:00
// Create ZIP file:
2016-12-27 15:46:52 +01:00
$jobs->changeStatus($job, 'export_status_creating_zip_file');
2016-02-04 17:13:42 +01:00
$processor->createZipFile();
2016-12-27 15:46:52 +01:00
$jobs->changeStatus($job, 'export_status_created_zip_file');
$jobs->changeStatus($job, 'export_status_finished');
2016-02-04 17:13:42 +01:00
2018-03-10 20:30:09 +01:00
return response()->json('ok');
2016-02-04 17:13:42 +01:00
}
}