Files
firefly-iii/app/Repositories/Account/AccountRepositoryInterface.php

152 lines
4.6 KiB
PHP
Raw Normal View History

2015-02-09 07:23:39 +01:00
<?php
2022-12-29 19:42:26 +01:00
/**
* AccountRepositoryInterface.php
2020-02-16 14:00:57 +01:00
* Copyright (c) 2019 james@firefly-iii.org
*
* This file is part of Firefly III (https://github.com/firefly-iii).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
2017-10-21 08:40:00 +02:00
*
* This program is distributed in the hope that it will be useful,
2017-10-21 08:40:00 +02:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
2017-10-21 08:40:00 +02:00
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
declare(strict_types=1);
2015-02-09 07:23:39 +01:00
namespace FireflyIII\Repositories\Account;
2015-03-29 21:27:51 +02:00
use Carbon\Carbon;
use FireflyIII\Models\Account;
2018-08-04 17:30:47 +02:00
use FireflyIII\Models\AccountType;
use FireflyIII\Models\Location;
use FireflyIII\Models\TransactionCurrency;
use FireflyIII\Models\TransactionGroup;
use FireflyIII\Models\TransactionJournal;
2016-10-10 07:25:27 +02:00
use Illuminate\Support\Collection;
2021-03-28 11:46:23 +02:00
2015-02-11 07:35:10 +01:00
/**
2017-11-15 12:25:49 +01:00
* Interface AccountRepositoryInterface.
2015-02-11 07:35:10 +01:00
*/
2015-02-09 07:23:39 +01:00
interface AccountRepositoryInterface
{
2017-12-31 10:40:27 +01:00
/**
* Moved here from account CRUD.
*/
public function count(array $types): int;
/**
* Moved here from account CRUD.
*/
2018-02-23 16:21:28 +01:00
public function destroy(Account $account, ?Account $moveTo): bool;
2019-09-03 22:35:41 +02:00
/**
* Find account with same name OR same IBAN or both, but not the same type or ID.
*/
public function expandWithDoubles(Collection $accounts): Collection;
public function find(int $accountId): ?Account;
2021-04-22 06:18:46 +02:00
public function findByAccountNumber(string $number, array $types): ?Account;
2018-03-24 18:55:02 +01:00
public function findByIbanNull(string $iban, array $types): ?Account;
2018-02-16 15:19:19 +01:00
public function findByName(string $name, array $types): ?Account;
2016-10-10 07:49:39 +02:00
2019-02-13 17:38:41 +01:00
public function getAccountCurrency(Account $account): ?TransactionCurrency;
2018-08-04 17:30:47 +02:00
/**
* Return account type or null if not found.
*/
public function getAccountTypeByType(string $type): ?AccountType;
2016-10-10 07:49:39 +02:00
public function getAccountsById(array $accountIds): Collection;
/**
2023-12-10 06:51:59 +01:00
* @param array<int, int|string> $types
2016-10-10 07:49:39 +02:00
*/
2021-05-24 08:06:56 +02:00
public function getAccountsByType(array $types, ?array $sort = []): Collection;
2016-10-10 07:49:39 +02:00
2016-10-10 07:53:12 +02:00
public function getActiveAccountsByType(array $types): Collection;
2021-03-12 06:20:01 +01:00
public function getAttachments(Account $account): Collection;
2019-10-19 19:17:14 +02:00
2017-06-05 11:12:50 +02:00
public function getCashAccount(): Account;
public function getCreditTransactionGroup(Account $account): ?TransactionGroup;
2021-03-12 06:20:01 +01:00
public function getInactiveAccountsByType(array $types): Collection;
/**
* Get account location, if any.
*/
public function getLocation(Account $account): ?Location;
2018-03-19 08:17:31 +01:00
/**
* Return meta value for account. Null if not found.
*/
public function getMetaValue(Account $account, string $field): ?string;
/**
* Get note text or null.
*/
public function getNoteText(Account $account): ?string;
2019-09-03 22:35:41 +02:00
public function getOpeningBalance(Account $account): ?TransactionJournal;
2018-02-16 22:14:53 +01:00
/**
* Returns the amount of the opening balance for this account.
*/
2025-01-15 18:54:49 +01:00
public function getOpeningBalanceAmount(Account $account, bool $convertToNative): ?string;
2018-02-16 22:14:53 +01:00
/**
* Return date of opening balance as string or null.
*/
public function getOpeningBalanceDate(Account $account): ?string;
2019-09-03 22:35:41 +02:00
public function getOpeningBalanceGroup(Account $account): ?TransactionGroup;
2018-12-09 13:09:43 +01:00
public function getPiggyBanks(Account $account): Collection;
2017-11-22 17:49:06 +01:00
/**
* Find or create the opposing reconciliation account.
*/
public function getReconciliation(Account $account): ?Account;
2021-03-12 06:20:01 +01:00
public function getUsedCurrencies(Account $account): Collection;
2018-12-09 13:09:43 +01:00
public function isLiability(Account $account): bool;
2021-03-21 09:15:40 +01:00
public function maxOrder(string $type): int;
/**
* Returns the date of the very first transaction in this account.
*/
2018-07-24 20:30:52 +02:00
public function oldestJournal(Account $account): ?TransactionJournal;
/**
* Returns the date of the very first transaction in this account.
*/
2018-08-07 19:29:10 +02:00
public function oldestJournalDate(Account $account): ?Carbon;
2021-03-12 06:20:01 +01:00
/**
* Reset order types of the mentioned accounts.
*/
2021-03-13 12:01:01 +01:00
public function resetAccountOrder(): void;
2021-03-12 06:20:01 +01:00
2020-07-21 06:20:31 +02:00
public function searchAccount(string $query, array $types, int $limit): Collection;
2019-03-02 14:12:09 +01:00
2020-08-22 12:24:01 +02:00
public function searchAccountNr(string $query, array $types, int $limit): Collection;
2016-11-28 18:55:56 +01:00
public function store(array $data): Account;
2016-10-10 08:03:03 +02:00
public function update(Account $account, array $data): Account;
2015-03-29 08:14:32 +02:00
}