Files
firefly-iii/app/Support/Import/JobConfiguration/Ynab/SelectBudgetHandler.php

126 lines
3.7 KiB
PHP
Raw Normal View History

2018-07-29 21:02:03 +02:00
<?php
/**
2018-07-30 20:39:19 +02:00
* SelectBudgetHandler.php
2018-07-29 21:02:03 +02:00
* Copyright (c) 2018 thegrumpydictator@gmail.com
*
* 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\Ynab;
use FireflyIII\Models\ImportJob;
use FireflyIII\Repositories\ImportJob\ImportJobRepositoryInterface;
use Illuminate\Support\MessageBag;
use Log;
/**
2018-07-30 20:39:19 +02:00
* Class SelectBudgetHandler
2018-07-29 21:02:03 +02:00
*/
2018-07-30 20:39:19 +02:00
class SelectBudgetHandler implements YnabJobConfigurationInterface
2018-07-29 21:02:03 +02:00
{
/** @var ImportJob */
private $importJob;
/** @var ImportJobRepositoryInterface */
private $repository;
/**
* Return true when this stage is complete.
*
* @return bool
*/
public function configurationComplete(): bool
{
2018-07-30 20:39:19 +02:00
Log::debug('Now in SelectBudgetHandler::configComplete');
2018-07-29 21:02:03 +02:00
$configuration = $this->repository->getConfiguration($this->importJob);
$selectedBudget = $configuration['selected_budget'] ?? '';
if ($selectedBudget !== '') {
Log::debug(sprintf('Selected budget is %s, config is complete. Return true.', $selectedBudget));
$this->repository->setStage($this->importJob, 'get_accounts');
return true;
}
Log::debug('User has not selected a budget yet, config is not yet complete.');
return false;
}
/**
* Store the job configuration.
*
* @param array $data
*
* @return MessageBag
*/
public function configureJob(array $data): MessageBag
{
2018-07-30 20:39:19 +02:00
Log::debug('Now in SelectBudgetHandler::configureJob');
2018-07-29 21:02:03 +02:00
$configuration = $this->repository->getConfiguration($this->importJob);
$configuration['selected_budget'] = $data['budget_id'];
Log::debug(sprintf('Set selected budget to %s', $data['budget_id']));
Log::debug('Mark job as ready for next stage.');
$this->repository->setConfiguration($this->importJob, $configuration);
return new MessageBag;
}
/**
* Get data for config view.
*
* @return array
*/
public function getNextData(): array
{
2018-07-30 20:39:19 +02:00
Log::debug('Now in SelectBudgetHandler::getNextData');
2018-07-29 21:02:03 +02:00
$configuration = $this->repository->getConfiguration($this->importJob);
$budgets = $configuration['budgets'] ?? [];
$return = [];
foreach ($budgets as $budget) {
$return[$budget['id']] = $budget['name'] . ' (' . $budget['currency_code'] . ')';
}
return [
'budgets' => $return,
];
}
/**
* Get the view for this stage.
*
* @return string
*/
public function getNextView(): string
{
2018-07-30 20:39:19 +02:00
Log::debug('Now in SelectBudgetHandler::getNextView');
2018-07-29 21:02:03 +02:00
return 'import.ynab.select-budgets';
}
/**
* Set the import job.
*
* @param ImportJob $importJob
*/
public function setImportJob(ImportJob $importJob): void
{
$this->importJob = $importJob;
$this->repository = app(ImportJobRepositoryInterface::class);
$this->repository->setUser($importJob->user);
}
}