firefly-iii/app/Repositories/Account/AccountRepository.php

560 lines
19 KiB
PHP
Raw Normal View History

2015-02-09 00:23:39 -06:00
<?php
2016-05-20 01:57:45 -05:00
declare(strict_types = 1);
2015-02-09 00:23:39 -06:00
namespace FireflyIII\Repositories\Account;
2015-02-21 05:16:41 -06:00
use Carbon\Carbon;
use DB;
2015-02-09 00:23:39 -06:00
use FireflyIII\Models\Account;
2015-02-24 14:10:25 -06:00
use FireflyIII\Models\PiggyBank;
2015-02-09 00:56:24 -06:00
use FireflyIII\Models\Transaction;
use FireflyIII\Models\TransactionJournal;
use FireflyIII\Models\TransactionType;
2016-03-20 05:47:10 -05:00
use FireflyIII\User;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Database\Query\JoinClause;
2015-03-13 02:44:07 -05:00
use Illuminate\Support\Collection;
2015-03-21 02:51:34 -05:00
use Steam;
2015-02-09 00:23:39 -06:00
2015-05-05 13:46:13 -05:00
2015-02-09 00:23:39 -06:00
/**
2015-05-26 01:17:58 -05:00
*
2015-02-09 00:23:39 -06:00
* Class AccountRepository
*
* @package FireflyIII\Repositories\Account
*/
class AccountRepository implements AccountRepositoryInterface
{
2016-03-20 05:47:10 -05:00
/** @var User */
private $user;
2016-04-01 06:03:38 -05:00
/** @var array */
2016-03-30 10:47:13 -05:00
private $validFields = ['accountRole', 'ccMonthlyPaymentDate', 'ccType', 'accountNumber'];
2016-03-20 05:47:10 -05:00
/**
* AttachmentRepository constructor.
*
* @param User $user
*/
public function __construct(User $user)
{
$this->user = $user;
}
2015-03-13 02:44:07 -05:00
/**
* @param array $types
*
2015-03-13 02:44:07 -05:00
* @return int
*/
2016-03-19 11:28:04 -05:00
public function countAccounts(array $types): int
2015-03-13 02:44:07 -05:00
{
2016-03-20 10:47:53 -05:00
$count = $this->user->accounts()->accountTypeIn($types)->count();
2015-12-25 10:11:55 -06:00
return $count;
2015-03-13 02:44:07 -05:00
}
2016-05-19 23:58:13 -05:00
/**
* This method is almost the same as ::earnedInPeriod, but only works for revenue accounts
* instead of the implied asset accounts for ::earnedInPeriod. ::earnedInPeriod will tell you
* how much money was earned by the given asset accounts. This method will tell you how much money
* these given revenue accounts sent. Ie. how much money was made FROM these revenue accounts.
*
* @param Collection $accounts
* @param Carbon $start
* @param Carbon $end
*
* @return string
*/
public function earnedFromInPeriod(Collection $accounts, Carbon $start, Carbon $end): string
{
$query = $this->user->transactionjournals()->expanded()->sortCorrectly()
->transactionTypes([TransactionType::DEPOSIT]);
if ($end >= $start) {
$query->before($end)->after($start);
}
if ($accounts->count() > 0) {
$accountIds = $accounts->pluck('id')->toArray();
$query->leftJoin(
'transactions as source', function (JoinClause $join) {
$join->on('source.transaction_journal_id', '=', 'transaction_journals.id')->where('source.amount', '<', 0);
}
);
$query->whereIn('source.account_id', $accountIds);
}
// remove group by
$query->getQuery()->getQuery()->groups = null;
// that should do it:
$sum = strval($query->sum('source.amount'));
$sum = bcmul($sum, '-1');
return $sum;
}
2016-05-13 08:53:39 -05:00
/**
* @param Collection $accounts
* @param Carbon $start
* @param Carbon $end
*
* @return string
*/
public function earnedInPeriod(Collection $accounts, Carbon $start, Carbon $end): string
{
2016-05-17 09:47:43 -05:00
$query = $this->user->transactionjournals()->expanded()->sortCorrectly()
->transactionTypes([TransactionType::DEPOSIT, TransactionType::TRANSFER]);
if ($end >= $start) {
$query->before($end)->after($start);
2016-05-16 02:05:06 -05:00
}
2016-05-13 08:53:39 -05:00
2016-05-17 09:47:43 -05:00
if ($accounts->count() > 0) {
$accountIds = $accounts->pluck('id')->toArray();
$query->leftJoin(
'transactions as destination', function (JoinClause $join) {
$join->on('destination.transaction_journal_id', '=', 'transaction_journals.id')->where('destination.amount', '>', 0);
}
);
$query->whereIn('destination.account_id', $accountIds);
}
// remove group by
$query->getQuery()->getQuery()->groups = null;
// that should do it:
$sum = strval($query->sum('destination.amount'));
2016-05-13 08:53:39 -05:00
return $sum;
}
2016-05-16 02:05:06 -05:00
/**
* This method will call AccountRepositoryInterface::journalsInPeriod and get all withdrawaks made from the given $accounts,
* as well as the transfers that move away from those $accounts. This is a slightly sharper selection
* than made by journalsInPeriod itself.
*
* @param Collection $accounts
* @param Carbon $start
* @param Carbon $end
*
* @see AccountRepositoryInterface::journalsInPeriod
*
* @return Collection
*/
public function expensesInPeriod(Collection $accounts, Carbon $start, Carbon $end): Collection
{
$types = [TransactionType::WITHDRAWAL, TransactionType::TRANSFER];
$journals = $this->journalsInPeriod($accounts, $types, $start, $end);
$accountIds = $accounts->pluck('id')->toArray();
// filter because some of these journals are still too much.
$journals = $journals->filter(
function (TransactionJournal $journal) use ($accountIds) {
if ($journal->transaction_type_type == TransactionType::WITHDRAWAL) {
return $journal;
}
/*
* The source of a transfer must be one of the $accounts in order to
* be included. Otherwise, it would not be an expense.
*/
if (in_array($journal->source_account_id, $accountIds)) {
return $journal;
}
}
);
return $journals;
}
2016-05-13 08:53:39 -05:00
/**
* @param Account $account
*
* @return Carbon
*/
public function firstUseDate(Account $account): Carbon
{
$first = new Carbon('1900-01-01');
/** @var Transaction $first */
$date = $account->transactions()
->leftJoin('transaction_journals', 'transaction_journals.id', '=', 'transactions.transaction_journal_id')
->orderBy('transaction_journals.date', 'ASC')
->orderBy('transaction_journals.order', 'DESC')
->orderBy('transaction_journals.id', 'ASC')
->first(['transaction_journals.date']);
if (!is_null($date)) {
$first = new Carbon($date->date);
}
return $first;
}
2016-03-19 11:28:04 -05:00
/**
* Gets all the accounts by ID, for a given set.
*
* @param array $ids
*
* @return \Illuminate\Support\Collection
*/
public function get(array $ids): Collection
{
return $this->user->accounts()->whereIn('id', $ids)->get(['accounts.*']);
}
/**
* @param TransactionJournal $journal
* @param Account $account
*
* @return Transaction
*/
2016-03-19 11:28:04 -05:00
public function getFirstTransaction(TransactionJournal $journal, Account $account): Transaction
{
$transaction = $journal->transactions()->where('account_id', $account->id)->first();
2016-03-19 11:28:04 -05:00
if (is_null($transaction)) {
$transaction = new Transaction;
}
return $transaction;
}
/**
* Get the accounts of a user that have piggy banks connected to them.
*
2016-05-13 10:22:24 -05:00
* @param Carbon $start
* @param Carbon $end
*
* @return Collection
*/
2016-05-13 10:22:24 -05:00
public function getPiggyBankAccounts(Carbon $start, Carbon $end): Collection
{
2015-12-30 02:30:06 -06:00
$collection = new Collection(DB::table('piggy_banks')->distinct()->get(['piggy_banks.account_id']));
2016-05-13 08:58:30 -05:00
$accountIds = $collection->pluck('account_id')->toArray();
2016-01-01 05:41:00 -06:00
$accounts = new Collection;
2016-05-13 08:58:30 -05:00
$accountIds = array_unique($accountIds);
if (count($accountIds) > 0) {
$accounts = $this->user->accounts()->whereIn('id', $accountIds)->where('accounts.active', 1)->get();
}
2016-05-13 10:22:24 -05:00
$accounts->each(
function (Account $account) use ($start, $end) {
$account->startBalance = Steam::balanceIgnoreVirtual($account, $start);
$account->endBalance = Steam::balanceIgnoreVirtual($account, $end);
2016-05-20 02:25:17 -05:00
$account->piggyBalance = '0';
2016-05-13 10:22:24 -05:00
/** @var PiggyBank $piggyBank */
foreach ($account->piggyBanks as $piggyBank) {
2016-05-20 02:25:17 -05:00
$account->piggyBalance = bcadd($account->piggyBalance, $piggyBank->currentRelevantRep()->currentamount);
2016-05-13 10:22:24 -05:00
}
// sum of piggy bank amounts on this account:
// diff between endBalance and piggyBalance.
// then, percentage.
$difference = bcsub($account->endBalance, $account->piggyBalance);
$account->difference = $difference;
$account->percentage = $difference != 0 && $account->endBalance != 0 ? round((($difference / $account->endBalance) * 100)) : 100;
}
);
return $accounts;
}
2015-03-21 02:51:34 -05:00
/**
2016-05-13 10:22:24 -05:00
* Get savings accounts.
*
* @param Carbon $start
* @param Carbon $end
2015-03-21 02:51:34 -05:00
*
* @return Collection
*/
2016-05-13 10:22:24 -05:00
public function getSavingsAccounts(Carbon $start, Carbon $end): Collection
2015-03-21 02:51:34 -05:00
{
2016-03-20 10:47:53 -05:00
$accounts = $this->user->accounts()->accountTypeIn(['Default account', 'Asset account'])->orderBy('accounts.name', 'ASC')
->leftJoin('account_meta', 'account_meta.account_id', '=', 'accounts.id')
->where('account_meta.name', 'accountRole')
->where('accounts.active', 1)
->where('account_meta.data', '"savingAsset"')
->get(['accounts.*']);
2015-03-21 02:51:34 -05:00
2016-05-13 10:22:24 -05:00
$accounts->each(
function (Account $account) use ($start, $end) {
$account->startBalance = Steam::balance($account, $start);
$account->endBalance = Steam::balance($account, $end);
// diff (negative when lost, positive when gained)
$diff = bcsub($account->endBalance, $account->startBalance);
if ($diff < 0 && $account->startBalance > 0) {
// percentage lost compared to start.
$pct = (($diff * -1) / $account->startBalance) * 100;
} else {
if ($diff >= 0 && $account->startBalance > 0) {
$pct = ($diff / $account->startBalance) * 100;
} else {
$pct = 100;
}
}
$pct = $pct > 100 ? 100 : $pct;
$account->difference = $diff;
$account->percentage = round($pct);
}
);
2015-03-21 02:51:34 -05:00
return $accounts;
}
2016-05-15 10:46:53 -05:00
/**
2016-05-15 11:16:31 -05:00
* This method will call AccountRepositoryInterface::journalsInPeriod and get all deposits made to the given $accounts,
* as well as the transfers that move away to those $accounts. This is a slightly sharper selection
2016-05-15 10:46:53 -05:00
* than made by journalsInPeriod itself.
*
* @param Collection $accounts
* @param Carbon $start
* @param Carbon $end
*
* @see AccountRepositoryInterface::journalsInPeriod
*
* @return Collection
*/
public function incomesInPeriod(Collection $accounts, Carbon $start, Carbon $end): Collection
{
$types = [TransactionType::DEPOSIT, TransactionType::TRANSFER];
$journals = $this->journalsInPeriod($accounts, $types, $start, $end);
$accountIds = $accounts->pluck('id')->toArray();
2016-05-16 02:05:06 -05:00
// filter because some of these journals are still too much.
2016-05-15 10:46:53 -05:00
$journals = $journals->filter(
function (TransactionJournal $journal) use ($accountIds) {
if ($journal->transaction_type_type == TransactionType::DEPOSIT) {
return $journal;
}
/*
* The destination of a transfer must be one of the $accounts in order to
* be included. Otherwise, it would not be income.
*/
if (in_array($journal->destination_account_id, $accountIds)) {
return $journal;
}
}
);
return $journals;
}
/**
2016-05-13 08:53:39 -05:00
* @param Collection $accounts
* @param array $types
* @param Carbon $start
* @param Carbon $end
*
* @return Collection
*/
public function journalsInPeriod(Collection $accounts, array $types, Carbon $start, Carbon $end): Collection
{
// first collect actual transaction journals (fairly easy)
$query = $this->user->transactionjournals()->expanded()->sortCorrectly();
if ($end >= $start) {
$query->before($end)->after($start);
}
if (count($types) > 0) {
$query->transactionTypes($types);
}
if ($accounts->count() > 0) {
$accountIds = $accounts->pluck('id')->toArray();
2016-05-14 15:11:49 -05:00
$query->leftJoin(
'transactions as source', function (JoinClause $join) {
2016-05-14 15:21:08 -05:00
$join->on('source.transaction_journal_id', '=', 'transaction_journals.id')->where('source.amount', '<', 0);
2016-05-14 15:11:49 -05:00
}
);
$query->leftJoin(
'transactions as destination', function (JoinClause $join) {
2016-05-14 15:21:08 -05:00
$join->on('destination.transaction_journal_id', '=', 'transaction_journals.id')->where('destination.amount', '>', 0);
2016-05-14 15:11:49 -05:00
}
);
2016-05-14 15:21:08 -05:00
$set = join(', ', $accountIds);
$query->whereRaw('(source.account_id in (' . $set . ') XOR destination.account_id in (' . $set . '))');
2016-05-14 15:11:49 -05:00
2016-05-13 08:53:39 -05:00
}
// that should do it:
2016-05-15 10:46:53 -05:00
$fields = TransactionJournal::queryFields();
$fields[] = 'source.account_id as source_account_id';
2016-05-17 09:11:19 -05:00
$fields[] = 'source.amount as source_amount';
2016-05-15 10:46:53 -05:00
$fields[] = 'destination.account_id as destination_account_id';
2016-05-17 09:11:19 -05:00
$fields[] = 'destination.amount as destination_amount';
2016-05-15 10:46:53 -05:00
$complete = $query->get($fields);
2016-05-13 08:53:39 -05:00
return $complete;
}
/**
*
* @param Account $account
2015-05-20 12:55:53 -05:00
* @param Carbon $date
*
2016-04-27 12:22:15 -05:00
* @return string
*/
2016-03-19 11:28:04 -05:00
public function leftOnAccount(Account $account, Carbon $date): string
{
2015-05-17 02:35:49 -05:00
2016-04-27 12:21:47 -05:00
$balance = Steam::balanceIgnoreVirtual($account, $date);
/** @var PiggyBank $p */
foreach ($account->piggybanks()->get() as $p) {
2016-05-20 04:53:34 -05:00
$balance = bcsub($balance, $p->currentRelevantRep()->currentamount);
}
return $balance;
}
/**
* Returns the date of the very last transaction in this account.
*
* @param Account $account
*
* @return Carbon
*/
public function newestJournalDate(Account $account): Carbon
{
/** @var TransactionJournal $journal */
$journal = TransactionJournal::
leftJoin('transactions', 'transactions.transaction_journal_id', '=', 'transaction_journals.id')
->where('transactions.account_id', $account->id)
2016-05-11 00:57:16 -05:00
->sortCorrectly()
->first(['transaction_journals.*']);
if (is_null($journal)) {
return new Carbon('1900-01-01');
}
return $journal->date;
}
/**
* Returns the date of the very first transaction in this account.
*
* @param Account $account
*
* @return Carbon
*/
public function oldestJournalDate(Account $account): Carbon
{
/** @var TransactionJournal $journal */
$journal = TransactionJournal::
leftJoin('transactions', 'transactions.transaction_journal_id', '=', 'transaction_journals.id')
->where('transactions.account_id', $account->id)
->orderBy('transaction_journals.date', 'ASC')
->orderBy('transaction_journals.order', 'DESC')
->orderBy('transaction_journals.id', 'ÅSC')
->first(['transaction_journals.*']);
if (is_null($journal)) {
return new Carbon('1900-01-01');
}
return $journal->date;
}
/**
* @param Account $account
*
* @return TransactionJournal|null
*/
2016-03-19 11:28:04 -05:00
public function openingBalanceTransaction(Account $account): TransactionJournal
{
$journal = TransactionJournal
2016-05-11 00:57:16 -05:00
::sortCorrectly()
2016-01-15 15:41:26 -06:00
->leftJoin('transactions', 'transactions.transaction_journal_id', '=', 'transaction_journals.id')
->where('transactions.account_id', $account->id)
->transactionTypes([TransactionType::OPENING_BALANCE])
2015-06-05 05:18:20 -05:00
->first(['transaction_journals.*']);
2016-03-19 11:34:37 -05:00
if (is_null($journal)) {
2016-03-19 11:34:02 -05:00
return new TransactionJournal;
}
return $journal;
}
2016-05-19 23:58:13 -05:00
/**
* This method is almost the same as ::spentInPeriod, but only works for expense accounts
* instead of the implied asset accounts for ::spentInPeriod. ::spentInPeriod will tell you
* how much money was spent by the given asset accounts. This method will tell you how much money
* these given expense accounts received. Ie. how much money was spent AT these expense accounts.
*
* @param Collection $accounts
* @param Carbon $start
* @param Carbon $end
*
* @return string
*/
public function spentAtInPeriod(Collection $accounts, Carbon $start, Carbon $end): string
{
/** @var HasMany $query */
$query = $this->user->transactionjournals()->expanded()->sortCorrectly()
->transactionTypes([TransactionType::WITHDRAWAL]);
if ($end >= $start) {
$query->before($end)->after($start);
}
if ($accounts->count() > 0) {
$accountIds = $accounts->pluck('id')->toArray();
$query->leftJoin(
'transactions as destination', function (JoinClause $join) {
$join->on('destination.transaction_journal_id', '=', 'transaction_journals.id')->where('destination.amount', '>', 0);
}
);
$query->whereIn('destination.account_id', $accountIds);
}
// remove group by
$query->getQuery()->getQuery()->groups = null;
// that should do it:
$sum = strval($query->sum('destination.amount'));
$sum = bcmul($sum, '-1');
return $sum;
}
2016-05-13 08:53:39 -05:00
/**
* @param Collection $accounts
* @param Carbon $start
* @param Carbon $end
*
* @return string
*/
public function spentInPeriod(Collection $accounts, Carbon $start, Carbon $end): string
{
2016-05-17 09:47:43 -05:00
/** @var HasMany $query */
$query = $this->user->transactionjournals()->expanded()->sortCorrectly()
->transactionTypes([TransactionType::WITHDRAWAL, TransactionType::TRANSFER]);
if ($end >= $start) {
$query->before($end)->after($start);
}
if ($accounts->count() > 0) {
$accountIds = $accounts->pluck('id')->toArray();
$query->leftJoin(
'transactions as source', function (JoinClause $join) {
$join->on('source.transaction_journal_id', '=', 'transaction_journals.id')->where('source.amount', '<', 0);
}
);
$query->whereIn('source.account_id', $accountIds);
2016-05-16 02:05:06 -05:00
}
2016-05-17 09:47:43 -05:00
// remove group by
$query->getQuery()->getQuery()->groups = null;
// that should do it:
$sum = strval($query->sum('source.amount'));
2016-05-13 08:53:39 -05:00
return $sum;
}
2015-03-29 01:14:32 -05:00
}