2015-02-09 00:23:39 -06:00
|
|
|
<?php
|
2016-02-05 05:08:25 -06:00
|
|
|
declare(strict_types = 1);
|
2015-02-09 00:23:39 -06:00
|
|
|
|
|
|
|
namespace FireflyIII\Repositories\Account;
|
|
|
|
|
2015-03-29 14:27:51 -05:00
|
|
|
use Carbon\Carbon;
|
2015-02-14 07:25:29 -06:00
|
|
|
use FireflyIII\Models\Account;
|
2016-03-12 04:07:54 -06:00
|
|
|
use FireflyIII\Models\AccountMeta;
|
2015-04-03 02:30:44 -05:00
|
|
|
use FireflyIII\Models\Transaction;
|
2015-03-29 14:27:51 -05:00
|
|
|
use FireflyIII\Models\TransactionJournal;
|
2015-04-07 11:48:34 -05:00
|
|
|
use Illuminate\Pagination\LengthAwarePaginator;
|
2015-03-13 02:44:07 -05:00
|
|
|
use Illuminate\Support\Collection;
|
2015-03-29 14:27:51 -05:00
|
|
|
|
2015-02-11 00:35:10 -06:00
|
|
|
/**
|
|
|
|
* Interface AccountRepositoryInterface
|
|
|
|
*
|
|
|
|
* @package FireflyIII\Repositories\Account
|
|
|
|
*/
|
2015-02-09 00:23:39 -06:00
|
|
|
interface AccountRepositoryInterface
|
|
|
|
{
|
2016-02-04 01:53:15 -06:00
|
|
|
|
2015-04-04 14:23:37 -05:00
|
|
|
/**
|
|
|
|
* @param array $types
|
|
|
|
*
|
|
|
|
* @return int
|
|
|
|
*/
|
2016-02-06 09:22:12 -06:00
|
|
|
public function countAccounts(array $types): int;
|
2015-04-04 14:23:37 -05:00
|
|
|
|
2015-02-14 07:25:29 -06:00
|
|
|
/**
|
|
|
|
* @param Account $account
|
2015-07-10 13:48:45 -05:00
|
|
|
* @param Account $moveTo
|
2015-02-14 07:25:29 -06:00
|
|
|
*
|
2016-04-06 02:27:45 -05:00
|
|
|
* @return bool
|
2015-02-14 07:25:29 -06:00
|
|
|
*/
|
2016-03-12 04:05:26 -06:00
|
|
|
public function destroy(Account $account, Account $moveTo): bool;
|
2015-02-14 07:25:29 -06:00
|
|
|
|
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;
|
|
|
|
|
2015-03-13 02:44:07 -05:00
|
|
|
/**
|
2016-02-05 02:25:15 -06:00
|
|
|
* @param int $accountId
|
2015-04-04 14:23:37 -05:00
|
|
|
*
|
2016-01-19 06:59:54 -06:00
|
|
|
* @return Account
|
2015-04-04 14:23:37 -05:00
|
|
|
*/
|
2016-02-06 09:22:12 -06:00
|
|
|
public function find(int $accountId): Account;
|
2015-04-04 14:23:37 -05:00
|
|
|
|
2016-05-13 08:53:39 -05:00
|
|
|
/**
|
|
|
|
* @param Account $account
|
|
|
|
*
|
|
|
|
* @return Carbon
|
|
|
|
*/
|
|
|
|
public function firstUseDate(Account $account): Carbon;
|
|
|
|
|
2016-02-04 01:53:15 -06:00
|
|
|
/**
|
|
|
|
* Gets all the accounts by ID, for a given set.
|
|
|
|
*
|
|
|
|
* @param array $ids
|
|
|
|
*
|
2016-02-23 08:54:13 -06:00
|
|
|
* @return \Illuminate\Support\Collection
|
2016-02-04 01:53:15 -06:00
|
|
|
*/
|
2016-02-06 09:22:12 -06:00
|
|
|
public function get(array $ids): Collection;
|
2016-02-04 01:53:15 -06:00
|
|
|
|
2015-04-04 14:23:37 -05:00
|
|
|
/**
|
2016-05-13 08:53:39 -05:00
|
|
|
* @param array $accountIds
|
2015-12-27 00:59:00 -06:00
|
|
|
*
|
2015-04-07 03:14:10 -05:00
|
|
|
* @return Collection
|
|
|
|
*/
|
2016-05-13 08:53:39 -05:00
|
|
|
public function getAccountsById(array $accountIds): Collection;
|
2015-04-07 03:14:10 -05:00
|
|
|
|
2016-04-03 04:14:36 -05:00
|
|
|
/**
|
2016-05-13 08:53:39 -05:00
|
|
|
* @param array $types
|
2016-04-03 04:14:36 -05:00
|
|
|
*
|
|
|
|
* @return Collection
|
|
|
|
*/
|
2016-05-13 08:53:39 -05:00
|
|
|
public function getAccountsByType(array $types): Collection;
|
2016-04-03 04:14:36 -05:00
|
|
|
|
2015-04-13 13:43:58 -05:00
|
|
|
/**
|
2016-01-19 06:59:54 -06:00
|
|
|
* @param TransactionJournal $journal
|
|
|
|
* @param Account $account
|
2015-04-13 13:43:58 -05:00
|
|
|
*
|
2016-01-19 06:59:54 -06:00
|
|
|
* @return Transaction
|
2015-04-13 13:43:58 -05:00
|
|
|
*/
|
2016-02-06 09:22:12 -06:00
|
|
|
public function getFirstTransaction(TransactionJournal $journal, Account $account): Transaction;
|
2015-04-13 13:43:58 -05:00
|
|
|
|
2015-03-13 02:44:07 -05:00
|
|
|
/**
|
2016-01-19 06:59:54 -06:00
|
|
|
* Get the accounts of a user that have piggy banks connected to them.
|
|
|
|
*
|
|
|
|
* @return Collection
|
2015-04-07 13:54:43 -05:00
|
|
|
*/
|
2016-02-06 09:22:12 -06:00
|
|
|
public function getPiggyBankAccounts(): Collection;
|
2015-04-07 13:54:43 -05:00
|
|
|
|
2015-02-21 05:16:41 -06:00
|
|
|
/**
|
2015-04-04 14:23:37 -05:00
|
|
|
* Get savings accounts and the balance difference in the period.
|
2015-02-21 05:16:41 -06:00
|
|
|
*
|
2015-04-04 14:23:37 -05:00
|
|
|
* @return Collection
|
2015-02-21 05:16:41 -06:00
|
|
|
*/
|
2016-02-06 09:22:12 -06:00
|
|
|
public function getSavingsAccounts() : Collection;
|
2015-02-14 07:25:29 -06:00
|
|
|
|
2015-02-21 05:16:41 -06:00
|
|
|
/**
|
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;
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
2015-02-21 05:16:41 -06:00
|
|
|
* @param Account $account
|
2015-05-20 12:55:53 -05:00
|
|
|
* @param Carbon $date
|
2015-02-21 05:16:41 -06:00
|
|
|
*
|
2016-02-06 09:22:12 -06:00
|
|
|
* @return string
|
2015-02-21 05:16:41 -06:00
|
|
|
*/
|
2016-02-06 09:22:12 -06:00
|
|
|
public function leftOnAccount(Account $account, Carbon $date): string;
|
2015-02-24 14:10:25 -06:00
|
|
|
|
2016-04-08 07:50:18 -05:00
|
|
|
/**
|
|
|
|
* Returns the date of the very last transaction in this account.
|
|
|
|
*
|
|
|
|
* @param Account $account
|
|
|
|
*
|
|
|
|
* @return Carbon
|
|
|
|
*/
|
|
|
|
public function newestJournalDate(Account $account): Carbon;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the date of the very first transaction in this account.
|
|
|
|
*
|
|
|
|
* @param Account $account
|
|
|
|
*
|
|
|
|
* @return Carbon
|
|
|
|
*/
|
|
|
|
public function oldestJournalDate(Account $account): Carbon;
|
|
|
|
|
2015-02-24 14:10:25 -06:00
|
|
|
/**
|
2016-05-13 08:53:39 -05:00
|
|
|
*
|
2015-02-24 14:10:25 -06:00
|
|
|
* @param Account $account
|
|
|
|
*
|
2016-02-06 09:22:12 -06:00
|
|
|
* @return TransactionJournal
|
2015-02-24 14:10:25 -06:00
|
|
|
*/
|
2016-02-06 09:22:12 -06:00
|
|
|
public function openingBalanceTransaction(Account $account) : TransactionJournal;
|
2015-03-21 02:51:34 -05:00
|
|
|
|
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;
|
|
|
|
|
2015-03-21 02:51:34 -05:00
|
|
|
/**
|
2015-04-04 14:23:37 -05:00
|
|
|
* @param array $data
|
2015-03-21 02:51:34 -05:00
|
|
|
*
|
2015-04-04 14:23:37 -05:00
|
|
|
* @return Account
|
2015-03-21 02:51:34 -05:00
|
|
|
*/
|
2016-02-06 09:22:12 -06:00
|
|
|
public function store(array $data) : Account;
|
2015-04-03 02:30:44 -05:00
|
|
|
|
2016-03-12 04:07:54 -06:00
|
|
|
/**
|
|
|
|
* @param $account
|
|
|
|
* @param $name
|
|
|
|
* @param $value
|
|
|
|
*
|
|
|
|
* @return AccountMeta
|
|
|
|
*/
|
2016-04-05 15:00:03 -05:00
|
|
|
public function storeMeta(Account $account, string $name, $value): AccountMeta;
|
2016-03-12 04:07:54 -06:00
|
|
|
|
2015-04-03 02:30:44 -05:00
|
|
|
/**
|
2015-04-04 14:23:37 -05:00
|
|
|
* @param Account $account
|
|
|
|
* @param array $data
|
2015-04-03 02:30:44 -05:00
|
|
|
*
|
2015-04-04 14:23:37 -05:00
|
|
|
* @return Account
|
2015-04-03 02:30:44 -05:00
|
|
|
*/
|
2016-02-06 09:22:12 -06:00
|
|
|
public function update(Account $account, array $data): Account;
|
2015-03-29 01:14:32 -05:00
|
|
|
}
|