mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-03 20:20:37 -06:00
290 lines
8.1 KiB
PHP
290 lines
8.1 KiB
PHP
<?php
|
|
/**
|
|
* AccountRepository.php
|
|
* Copyright (c) 2017 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\Repositories\Account;
|
|
|
|
use Carbon\Carbon;
|
|
use FireflyIII\Factory\AccountFactory;
|
|
use FireflyIII\Models\Account;
|
|
use FireflyIII\Models\AccountType;
|
|
use FireflyIII\Models\Note;
|
|
use FireflyIII\Models\TransactionJournal;
|
|
use FireflyIII\Models\TransactionType;
|
|
use FireflyIII\Services\Internal\Destroy\AccountDestroyService;
|
|
use FireflyIII\Services\Internal\Update\AccountUpdateService;
|
|
use FireflyIII\Services\Internal\Update\JournalUpdateService;
|
|
use FireflyIII\User;
|
|
|
|
/**
|
|
* Class AccountRepository.
|
|
*/
|
|
class AccountRepository implements AccountRepositoryInterface
|
|
{
|
|
use FindAccountsTrait;
|
|
/** @var User */
|
|
private $user;
|
|
|
|
/**
|
|
* @param array $types
|
|
*
|
|
* @return int
|
|
*/
|
|
public function count(array $types): int
|
|
{
|
|
$count = $this->user->accounts()->accountTypeIn($types)->count();
|
|
|
|
return $count;
|
|
}
|
|
|
|
/**
|
|
* Moved here from account CRUD.
|
|
*
|
|
* @param Account $account
|
|
* @param Account|null $moveTo
|
|
*
|
|
* @return bool
|
|
*
|
|
* @throws \Exception
|
|
*/
|
|
public function destroy(Account $account, ?Account $moveTo): bool
|
|
{
|
|
/** @var AccountDestroyService $service */
|
|
$service = app(AccountDestroyService::class);
|
|
$service->destroy($account, $moveTo);
|
|
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* @param int $accountId
|
|
*
|
|
* @return Account|null
|
|
*/
|
|
public function findNull(int $accountId): ?Account
|
|
{
|
|
return $this->user->accounts()->find($accountId);
|
|
}
|
|
|
|
/**
|
|
* Return account type by string.
|
|
*
|
|
* @param string $type
|
|
*
|
|
* @return AccountType|null
|
|
*/
|
|
public function getAccountType(string $type): ?AccountType
|
|
{
|
|
return AccountType::whereType($type)->first();
|
|
}
|
|
|
|
/**
|
|
* Return meta value for account. Null if not found.
|
|
*
|
|
* @param Account $account
|
|
* @param string $field
|
|
*
|
|
* @return null|string
|
|
*/
|
|
public function getMetaValue(Account $account, string $field): ?string
|
|
{
|
|
foreach ($account->accountMeta as $meta) {
|
|
if ($meta->name === $field) {
|
|
return strval($meta->data);
|
|
}
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
/**
|
|
* @param Account $account
|
|
*
|
|
* @return Note|null
|
|
*/
|
|
public function getNote(Account $account): ?Note
|
|
{
|
|
return $account->notes()->first();
|
|
}
|
|
|
|
/**
|
|
* Returns the amount of the opening balance for this account.
|
|
*
|
|
* @param Account $account
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getOpeningBalanceAmount(Account $account): ?string
|
|
{
|
|
|
|
$journal = TransactionJournal::leftJoin('transactions', 'transactions.transaction_journal_id', '=', 'transaction_journals.id')
|
|
->where('transactions.account_id', $account->id)
|
|
->transactionTypes([TransactionType::OPENING_BALANCE])
|
|
->first(['transaction_journals.*']);
|
|
if (null === $journal) {
|
|
return null;
|
|
}
|
|
$transaction = $journal->transactions()->where('account_id', $account->id)->first();
|
|
if (null === $transaction) {
|
|
return null;
|
|
}
|
|
|
|
return strval($transaction->amount);
|
|
}
|
|
|
|
/**
|
|
* Return date of opening balance as string or null.
|
|
*
|
|
* @param Account $account
|
|
*
|
|
* @return null|string
|
|
*/
|
|
public function getOpeningBalanceDate(Account $account): ?string
|
|
{
|
|
$journal = TransactionJournal::leftJoin('transactions', 'transactions.transaction_journal_id', '=', 'transaction_journals.id')
|
|
->where('transactions.account_id', $account->id)
|
|
->transactionTypes([TransactionType::OPENING_BALANCE])
|
|
->first(['transaction_journals.*']);
|
|
if (null === $journal) {
|
|
return null;
|
|
}
|
|
|
|
return $journal->date->format('Y-m-d');
|
|
}
|
|
|
|
/**
|
|
* Returns the date of the very last transaction in this account.
|
|
*
|
|
* @param Account $account
|
|
*
|
|
* @return Carbon
|
|
*/
|
|
public function newestJournalDate(Account $account): Carbon
|
|
{
|
|
$last = new Carbon;
|
|
$date = $account->transactions()
|
|
->leftJoin('transaction_journals', 'transaction_journals.id', '=', 'transactions.transaction_journal_id')
|
|
->orderBy('transaction_journals.date', 'DESC')
|
|
->orderBy('transaction_journals.order', 'ASC')
|
|
->orderBy('transaction_journals.id', 'DESC')
|
|
->first(['transaction_journals.date']);
|
|
if (null !== $date) {
|
|
$last = new Carbon($date->date);
|
|
}
|
|
|
|
return $last;
|
|
}
|
|
|
|
/**
|
|
* Returns the date of the very first transaction in this account.
|
|
*
|
|
* @param Account $account
|
|
*
|
|
* @return TransactionJournal
|
|
*/
|
|
public function oldestJournal(Account $account): TransactionJournal
|
|
{
|
|
$first = $account->transactions()
|
|
->leftJoin('transaction_journals', 'transaction_journals.id', '=', 'transactions.transaction_journal_id')
|
|
->orderBy('transaction_journals.date', 'ASC')
|
|
->orderBy('transaction_journals.order', 'DESC')
|
|
->where('transaction_journals.user_id', $this->user->id)
|
|
->orderBy('transaction_journals.id', 'ASC')
|
|
->first(['transaction_journals.id']);
|
|
if (null !== $first) {
|
|
return TransactionJournal::find(intval($first->id));
|
|
}
|
|
|
|
return new TransactionJournal();
|
|
}
|
|
|
|
/**
|
|
* Returns the date of the very first transaction in this account.
|
|
*
|
|
* @param Account $account
|
|
*
|
|
* @return Carbon
|
|
*/
|
|
public function oldestJournalDate(Account $account): Carbon
|
|
{
|
|
$journal = $this->oldestJournal($account);
|
|
if (null === $journal->id) {
|
|
return new Carbon;
|
|
}
|
|
|
|
return $journal->date;
|
|
}
|
|
|
|
/**
|
|
* @param User $user
|
|
*/
|
|
public function setUser(User $user)
|
|
{
|
|
$this->user = $user;
|
|
}
|
|
|
|
/**
|
|
* @param array $data
|
|
*
|
|
* @return Account
|
|
*/
|
|
public function store(array $data): Account
|
|
{
|
|
/** @var AccountFactory $factory */
|
|
$factory = app(AccountFactory::class);
|
|
$factory->setUser($this->user);
|
|
$account = $factory->create($data);
|
|
|
|
return $account;
|
|
}
|
|
|
|
/**
|
|
* @param Account $account
|
|
* @param array $data
|
|
*
|
|
* @return Account
|
|
*/
|
|
public function update(Account $account, array $data): Account
|
|
{
|
|
/** @var AccountUpdateService $service */
|
|
$service = app(AccountUpdateService::class);
|
|
$account = $service->update($account, $data);
|
|
|
|
return $account;
|
|
}
|
|
|
|
/**
|
|
* @param TransactionJournal $journal
|
|
* @param array $data
|
|
*
|
|
* @return TransactionJournal
|
|
*/
|
|
public function updateReconciliation(TransactionJournal $journal, array $data): TransactionJournal
|
|
{
|
|
/** @var JournalUpdateService $service */
|
|
$service = app(JournalUpdateService::class);
|
|
$journal = $service->update($journal, $data);
|
|
|
|
return $journal;
|
|
}
|
|
|
|
}
|