mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-22 03:56:42 +00:00
160 lines
4.5 KiB
PHP
160 lines
4.5 KiB
PHP
<?php
|
|
/**
|
|
* CsvConfigurator.php
|
|
* Copyright (c) 2017 thegrumpydictator@gmail.com
|
|
* This software may be modified and distributed under the terms of the Creative Commons Attribution-ShareAlike 4.0 International License.
|
|
*
|
|
* See the LICENSE file for details.
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace FireflyIII\Import\Configurator;
|
|
|
|
use FireflyIII\Exceptions\FireflyException;
|
|
use FireflyIII\Models\ImportJob;
|
|
use FireflyIII\Support\Import\Configuration\ConfigurationInterface;
|
|
use FireflyIII\Support\Import\Configuration\Csv\Initial;
|
|
use FireflyIII\Support\Import\Configuration\Csv\Map;
|
|
use FireflyIII\Support\Import\Configuration\Csv\Roles;
|
|
use Log;
|
|
|
|
/**
|
|
* Class CsvConfigurator
|
|
*
|
|
* @package FireflyIII\Import\Configurator
|
|
*/
|
|
class CsvConfigurator implements ConfiguratorInterface
|
|
{
|
|
private $job;
|
|
|
|
/**
|
|
* ConfiguratorInterface constructor.
|
|
*/
|
|
public function __construct()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Store any data from the $data array into the job.
|
|
*
|
|
* @param array $data
|
|
*
|
|
* @return bool
|
|
* @throws FireflyException
|
|
*/
|
|
public function configureJob(array $data): bool
|
|
{
|
|
$class = $this->getConfigurationClass();
|
|
$job = $this->job;
|
|
/** @var ConfigurationInterface $object */
|
|
$object = new $class($this->job);
|
|
$object->setJob($job);
|
|
|
|
return $object->storeConfiguration($data);
|
|
}
|
|
|
|
/**
|
|
* Return the data required for the next step in the job configuration.
|
|
*
|
|
* @return array
|
|
* @throws FireflyException
|
|
*/
|
|
public function getNextData(): array
|
|
{
|
|
$class = $this->getConfigurationClass();
|
|
$job = $this->job;
|
|
/** @var ConfigurationInterface $object */
|
|
$object = app($class);
|
|
$object->setJob($job);
|
|
|
|
return $object->getData();
|
|
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
* @throws FireflyException
|
|
*/
|
|
public function getNextView(): string
|
|
{
|
|
if (!$this->job->configuration['initial-config-complete']) {
|
|
return 'import.csv.initial';
|
|
}
|
|
if (!$this->job->configuration['column-roles-complete']) {
|
|
return 'import.csv.roles';
|
|
}
|
|
if (!$this->job->configuration['column-mapping-complete']) {
|
|
return 'import.csv.map';
|
|
}
|
|
|
|
throw new FireflyException('No view for state');
|
|
}
|
|
|
|
/**
|
|
* @return bool
|
|
*/
|
|
public function isJobConfigured(): bool
|
|
{
|
|
$config = $this->job->configuration;
|
|
$config['initial-config-complete'] = $config['initial-config-complete'] ?? false;
|
|
$config['column-roles-complete'] = $config['column-roles-complete'] ?? false;
|
|
$config['column-mapping-complete'] = $config['column-mapping-complete'] ?? false;
|
|
$this->job->configuration = $config;
|
|
$this->job->save();
|
|
|
|
if ($this->job->configuration['initial-config-complete']
|
|
&& $this->job->configuration['column-roles-complete']
|
|
&& $this->job->configuration['column-mapping-complete']
|
|
) {
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* @param ImportJob $job
|
|
*/
|
|
public function setJob(ImportJob $job)
|
|
{
|
|
$this->job = $job;
|
|
if (is_null($this->job->configuration) || count($this->job->configuration) === 0) {
|
|
Log::debug(sprintf('Gave import job %s initial configuration.', $this->job->key));
|
|
$this->job->configuration = config('csv.default_config');
|
|
$this->job->save();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
* @throws FireflyException
|
|
*/
|
|
private function getConfigurationClass(): string
|
|
{
|
|
$class = false;
|
|
switch (true) {
|
|
case (!$this->job->configuration['initial-config-complete']):
|
|
$class = Initial::class;
|
|
break;
|
|
case (!$this->job->configuration['column-roles-complete']):
|
|
$class = Roles::class;
|
|
break;
|
|
case (!$this->job->configuration['column-mapping-complete']):
|
|
$class = Map::class;
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
|
|
if ($class === false || strlen($class) === 0) {
|
|
throw new FireflyException('Cannot handle current job state in getConfigurationClass().');
|
|
}
|
|
if (!class_exists($class)) {
|
|
throw new FireflyException(sprintf('Class %s does not exist in getConfigurationClass().', $class));
|
|
}
|
|
|
|
return $class;
|
|
}
|
|
}
|