. */ declare(strict_types=1); namespace FireflyIII\Transformers; use FireflyIII\Models\Budget; use FireflyIII\Repositories\Budget\BudgetRepositoryInterface; use Illuminate\Support\Collection; use Log; /** * Class BudgetTransformer */ class BudgetTransformer extends AbstractTransformer { private $repository; /** * BudgetTransformer constructor. * * @codeCoverageIgnore */ public function __construct() { $this->repository = app(BudgetRepositoryInterface::class); if ('testing' === config('app.env')) { Log::warning(sprintf('%s should not be instantiated in the TEST environment!', get_class($this))); } } /** * Transform a budget. * * @param Budget $budget * * @return array */ public function transform(Budget $budget): array { $this->repository->setUser($budget->user); $start = $this->parameters->get('start'); $end = $this->parameters->get('end'); $spent = []; if (null !== $start && null !== $end) { $spent = $this->repository->spentInPeriodMc(new Collection([$budget]), new Collection, $start, $end); } $data = [ 'id' => (int)$budget->id, 'created_at' => $budget->created_at->toAtomString(), 'updated_at' => $budget->updated_at->toAtomString(), 'active' => $budget->active, 'name' => $budget->name, 'spent' => $spent, 'links' => [ [ 'rel' => 'self', 'uri' => '/budgets/' . $budget->id, ], ], ]; return $data; } }