2018-10-01 19:24:24 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* NewFinTSJobHandler.php
|
2018-10-05 17:54:51 +02:00
|
|
|
* Copyright (c) 2018 https://github.com/bnw
|
2018-10-01 19:24:24 +02:00
|
|
|
*
|
|
|
|
* This file is part of Firefly III.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
|
|
|
|
namespace FireflyIII\Support\Import\JobConfiguration\FinTS;
|
|
|
|
|
|
|
|
|
|
|
|
use FireflyIII\Import\JobConfiguration\FinTSConfigurationSteps;
|
|
|
|
use FireflyIII\Models\ImportJob;
|
|
|
|
use FireflyIII\Repositories\ImportJob\ImportJobRepositoryInterface;
|
|
|
|
use FireflyIII\Support\FinTS\FinTS;
|
2018-10-03 13:56:53 +02:00
|
|
|
use Illuminate\Support\Facades\Crypt;
|
2018-10-01 19:24:24 +02:00
|
|
|
use Illuminate\Support\MessageBag;
|
|
|
|
|
2018-10-05 17:54:51 +02:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Class NewFinTSJobHandler
|
|
|
|
*/
|
2018-10-01 19:24:24 +02:00
|
|
|
class NewFinTSJobHandler implements FinTSConfigurationInterface
|
|
|
|
{
|
|
|
|
/** @var ImportJob */
|
|
|
|
private $importJob;
|
|
|
|
/** @var ImportJobRepositoryInterface */
|
|
|
|
private $repository;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Store data associated with current stage.
|
|
|
|
*
|
|
|
|
* @param array $data
|
|
|
|
*
|
|
|
|
* @return MessageBag
|
|
|
|
* @throws \FireflyIII\Exceptions\FireflyException
|
|
|
|
*/
|
|
|
|
public function configureJob(array $data): MessageBag
|
|
|
|
{
|
|
|
|
$config = [];
|
|
|
|
|
|
|
|
$config['fints_url'] = trim($data['fints_url'] ?? '');
|
|
|
|
$config['fints_port'] = (int)($data['fints_port'] ?? '');
|
|
|
|
$config['fints_bank_code'] = (string)($data['fints_bank_code'] ?? '');
|
|
|
|
$config['fints_username'] = (string)($data['fints_username'] ?? '');
|
2018-10-03 13:56:53 +02:00
|
|
|
$config['fints_password'] = (string)(Crypt::encrypt($data['fints_password']) ?? '');
|
2018-10-01 19:24:24 +02:00
|
|
|
|
|
|
|
$this->repository->setConfiguration($this->importJob, $config);
|
|
|
|
|
|
|
|
$incomplete = false;
|
|
|
|
foreach ($config as $value) {
|
2018-10-05 17:54:51 +02:00
|
|
|
$incomplete = '' === $value or $incomplete;
|
2018-10-01 19:24:24 +02:00
|
|
|
}
|
|
|
|
if ($incomplete) {
|
|
|
|
return new MessageBag([trans('import.incomplete_fints_form')]);
|
|
|
|
}
|
|
|
|
|
2018-10-05 16:30:05 +02:00
|
|
|
$finTS = app(FinTS::class, ['config' => $this->importJob->configuration]);
|
2018-10-05 17:54:51 +02:00
|
|
|
if (true !== ($checkConnection = $finTS->checkConnection())) {
|
2018-10-01 19:24:24 +02:00
|
|
|
return new MessageBag([trans('import.fints_connection_failed', ['originalError' => $checkConnection])]);
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->repository->setStage($this->importJob, FinTSConfigurationSteps::CHOOSE_ACCOUNT);
|
|
|
|
|
|
|
|
return new MessageBag();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the data necessary to show the configuration screen.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getNextData(): array
|
|
|
|
{
|
|
|
|
$config = $this->importJob->configuration;
|
2018-10-05 17:54:51 +02:00
|
|
|
|
2018-10-01 19:24:24 +02:00
|
|
|
return [
|
2018-10-05 17:54:51 +02:00
|
|
|
'fints_url' => $config['fints_url'] ?? '',
|
|
|
|
'fints_port' => $config['fints_port'] ?? '443',
|
2018-10-03 14:02:06 +02:00
|
|
|
'fints_bank_code' => $config['fints_bank_code'] ?? '',
|
2018-10-05 17:54:51 +02:00
|
|
|
'fints_username' => $config['fints_username'] ?? '',
|
2018-10-01 19:24:24 +02:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param ImportJob $importJob
|
|
|
|
*/
|
|
|
|
public function setImportJob(ImportJob $importJob): void
|
|
|
|
{
|
|
|
|
$this->importJob = $importJob;
|
|
|
|
$this->repository = app(ImportJobRepositoryInterface::class);
|
|
|
|
$this->repository->setUser($importJob->user);
|
|
|
|
}
|
|
|
|
|
2018-12-31 07:48:23 +01:00
|
|
|
}
|