. */ declare(strict_types=1); namespace FireflyIII\Services\Internal\Support; use FireflyIII\Factory\AccountFactory; use FireflyIII\Factory\BudgetFactory; use FireflyIII\Factory\CategoryFactory; use FireflyIII\Factory\TransactionCurrencyFactory; use FireflyIII\Models\Account; use FireflyIII\Models\AccountType; use FireflyIII\Models\Budget; use FireflyIII\Models\Category; use FireflyIII\Models\Transaction; use FireflyIII\Models\TransactionCurrency; use FireflyIII\Models\TransactionJournal; use FireflyIII\Models\TransactionType; use FireflyIII\Repositories\Account\AccountRepositoryInterface; use Log; /** * Trait TransactionServiceTrait * */ trait TransactionServiceTrait { /** * @param TransactionJournal $journal * @param string $direction * * @return string|null * @SuppressWarnings(PHPMD.CyclomaticComplexity) */ public function accountType(TransactionJournal $journal, string $direction): ?string { $types = []; $type = $journal->transactionType->type; if (TransactionType::WITHDRAWAL === $type) { $types['source'] = AccountType::ASSET; $types['destination'] = AccountType::EXPENSE; } if (TransactionType::DEPOSIT === $type) { $types['source'] = AccountType::REVENUE; $types['destination'] = AccountType::ASSET; } if (TransactionType::TRANSFER === $type) { $types['source'] = AccountType::ASSET; $types['destination'] = AccountType::ASSET; } if (TransactionType::RECONCILIATION === $type) { $types['source'] = null; $types['destination'] = null; } return $types[$direction] ?? null; } /** * @param string|null $expectedType * @param int|null $accountId * @param string|null $accountName * * @return Account|null * @throws \FireflyIII\Exceptions\FireflyException * @SuppressWarnings(PHPMD.CyclomaticComplexity) */ public function findAccount(?string $expectedType, ?int $accountId, ?string $accountName): ?Account { $accountId = (int)$accountId; $accountName = (string)$accountName; $repository = app(AccountRepositoryInterface::class); $repository->setUser($this->user); Log::debug(sprintf('Going to find account #%d ("%s")', $accountId, $accountName)); if (null === $expectedType) { return $repository->findNull($accountId); } if ($accountId > 0) { // must be able to find it based on ID. Validator should catch invalid ID's. return $repository->findNull($accountId); } if (AccountType::ASSET === $expectedType) { return $repository->findByName($accountName, [AccountType::ASSET]); } // for revenue and expense: if ('' !== $accountName) { /** @var AccountFactory $factory */ $factory = app(AccountFactory::class); $factory->setUser($this->user); return $factory->findOrCreate($accountName, $expectedType); } return $repository->getCashAccount(); } /** * @param int|null $budgetId * @param null|string $budgetName * * @return Budget|null */ protected function findBudget(?int $budgetId, ?string $budgetName): ?Budget { /** @var BudgetFactory $factory */ $factory = app(BudgetFactory::class); $factory->setUser($this->user); return $factory->find($budgetId, $budgetName); } /** * @param int|null $categoryId * @param null|string $categoryName * * @return Category|null */ protected function findCategory(?int $categoryId, ?string $categoryName): ?Category { Log::debug(sprintf('Going to find or create category #%d, with name "%s"', $categoryId, $categoryName)); /** @var CategoryFactory $factory */ $factory = app(CategoryFactory::class); $factory->setUser($this->user); return $factory->findOrCreate($categoryId, $categoryName); } /** * @param int|null $currencyId * @param null|string $currencyCode * * @return TransactionCurrency|null */ protected function findCurrency(?int $currencyId, ?string $currencyCode): ?TransactionCurrency { $factory = app(TransactionCurrencyFactory::class); return $factory->find($currencyId, $currencyCode); } /** * @param Transaction $transaction * @param Budget|null $budget */ protected function setBudget(Transaction $transaction, ?Budget $budget): void { if (null === $budget) { $transaction->budgets()->sync([]); return; } $transaction->budgets()->sync([$budget->id]); } /** * @param Transaction $transaction * @param Category|null $category */ protected function setCategory(Transaction $transaction, ?Category $category): void { if (null === $category) { $transaction->categories()->sync([]); return; } $transaction->categories()->sync([$category->id]); } /** * @param Transaction $transaction * @param string|null $amount */ protected function setForeignAmount(Transaction $transaction, ?string $amount): void { $amount = '' === (string)$amount ? null : $amount; $transaction->foreign_amount = $amount; $transaction->save(); } /** * @param Transaction $transaction * @param TransactionCurrency|null $currency */ protected function setForeignCurrency(Transaction $transaction, ?TransactionCurrency $currency): void { if (null === $currency) { $transaction->foreign_currency_id = null; $transaction->save(); return; } // enable currency if not enabled: if (false === $currency->enabled) { $currency->enabled = true; $currency->save(); } $transaction->foreign_currency_id = $currency->id; $transaction->save(); } }