mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-11-03 20:55:05 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			325 lines
		
	
	
		
			7.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			325 lines
		
	
	
		
			7.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
/**
 | 
						|
 * AccountRepositoryInterface.php
 | 
						|
 * 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.
 | 
						|
 *
 | 
						|
 * This program 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 Affero General Public License for more details.
 | 
						|
 *
 | 
						|
 * 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);
 | 
						|
 | 
						|
namespace FireflyIII\Repositories\Account;
 | 
						|
 | 
						|
use Carbon\Carbon;
 | 
						|
use FireflyIII\Models\Account;
 | 
						|
use FireflyIII\Models\AccountType;
 | 
						|
use FireflyIII\Models\Location;
 | 
						|
use FireflyIII\Models\TransactionCurrency;
 | 
						|
use FireflyIII\Models\TransactionGroup;
 | 
						|
use FireflyIII\Models\TransactionJournal;
 | 
						|
use FireflyIII\User;
 | 
						|
use Illuminate\Contracts\Auth\Authenticatable;
 | 
						|
use Illuminate\Support\Collection;
 | 
						|
 | 
						|
/**
 | 
						|
 * Interface AccountRepositoryInterface.
 | 
						|
 */
 | 
						|
interface AccountRepositoryInterface
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Moved here from account CRUD.
 | 
						|
     *
 | 
						|
     * @param array $types
 | 
						|
     *
 | 
						|
     * @return int
 | 
						|
     */
 | 
						|
    public function count(array $types): int;
 | 
						|
 | 
						|
 | 
						|
    /**
 | 
						|
     * Moved here from account CRUD.
 | 
						|
     *
 | 
						|
     * @param Account      $account
 | 
						|
     * @param Account|null $moveTo
 | 
						|
     *
 | 
						|
     * @return bool
 | 
						|
     */
 | 
						|
    public function destroy(Account $account, ?Account $moveTo): bool;
 | 
						|
 | 
						|
    /**
 | 
						|
     * Find account with same name OR same IBAN or both, but not the same type or ID.
 | 
						|
     *
 | 
						|
     * @param Collection $accounts
 | 
						|
     *
 | 
						|
     * @return Collection
 | 
						|
     */
 | 
						|
    public function expandWithDoubles(Collection $accounts): Collection;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @param int $accountId
 | 
						|
     *
 | 
						|
     * @return Account|null
 | 
						|
     */
 | 
						|
    public function find(int $accountId): ?Account;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @param string $number
 | 
						|
     * @param array  $types
 | 
						|
     *
 | 
						|
     * @return Account|null
 | 
						|
     */
 | 
						|
    public function findByAccountNumber(string $number, array $types): ?Account;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @param string $iban
 | 
						|
     * @param array  $types
 | 
						|
     *
 | 
						|
     * @return Account|null
 | 
						|
     */
 | 
						|
    public function findByIbanNull(string $iban, array $types): ?Account;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @param string $name
 | 
						|
     * @param array  $types
 | 
						|
     *
 | 
						|
     * @return Account|null
 | 
						|
     */
 | 
						|
    public function findByName(string $name, array $types): ?Account;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @param Account $account
 | 
						|
     *
 | 
						|
     * @return TransactionCurrency|null
 | 
						|
     */
 | 
						|
    public function getAccountCurrency(Account $account): ?TransactionCurrency;
 | 
						|
 | 
						|
    /**
 | 
						|
     * Return account type or null if not found.
 | 
						|
     *
 | 
						|
     * @param string $type
 | 
						|
     *
 | 
						|
     * @return AccountType|null
 | 
						|
     */
 | 
						|
    public function getAccountTypeByType(string $type): ?AccountType;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @param array $accountIds
 | 
						|
     *
 | 
						|
     * @return Collection
 | 
						|
     */
 | 
						|
    public function getAccountsById(array $accountIds): Collection;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @param array      $types
 | 
						|
     * @param array|null $sort
 | 
						|
     *
 | 
						|
     * @return Collection
 | 
						|
     */
 | 
						|
    public function getAccountsByType(array $types, ?array $sort = []): Collection;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @param array $types
 | 
						|
     *
 | 
						|
     * @return Collection
 | 
						|
     */
 | 
						|
    public function getActiveAccountsByType(array $types): Collection;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @param Account $account
 | 
						|
     *
 | 
						|
     * @return Collection
 | 
						|
     */
 | 
						|
    public function getAttachments(Account $account): Collection;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @return Account
 | 
						|
     */
 | 
						|
    public function getCashAccount(): Account;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @param Account $account
 | 
						|
     *
 | 
						|
     * @return TransactionGroup|null
 | 
						|
     */
 | 
						|
    public function getCreditTransactionGroup(Account $account): ?TransactionGroup;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @param array $types
 | 
						|
     *
 | 
						|
     * @return Collection
 | 
						|
     */
 | 
						|
    public function getInactiveAccountsByType(array $types): Collection;
 | 
						|
 | 
						|
    /**
 | 
						|
     * Get account location, if any.
 | 
						|
     *
 | 
						|
     * @param Account $account
 | 
						|
     *
 | 
						|
     * @return Location|null
 | 
						|
     */
 | 
						|
    public function getLocation(Account $account): ?Location;
 | 
						|
 | 
						|
    /**
 | 
						|
     * 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;
 | 
						|
 | 
						|
    /**
 | 
						|
     * Get note text or null.
 | 
						|
     *
 | 
						|
     * @param Account $account
 | 
						|
     *
 | 
						|
     * @return null|string
 | 
						|
     */
 | 
						|
    public function getNoteText(Account $account): ?string;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @param Account $account
 | 
						|
     *
 | 
						|
     * @return TransactionJournal|null
 | 
						|
     *
 | 
						|
     */
 | 
						|
    public function getOpeningBalance(Account $account): ?TransactionJournal;
 | 
						|
 | 
						|
    /**
 | 
						|
     * Returns the amount of the opening balance for this account.
 | 
						|
     *
 | 
						|
     * @param Account $account
 | 
						|
     *
 | 
						|
     * @return string|null
 | 
						|
     */
 | 
						|
    public function getOpeningBalanceAmount(Account $account): ?string;
 | 
						|
 | 
						|
    /**
 | 
						|
     * Return date of opening balance as string or null.
 | 
						|
     *
 | 
						|
     * @param Account $account
 | 
						|
     *
 | 
						|
     * @return null|string
 | 
						|
     */
 | 
						|
    public function getOpeningBalanceDate(Account $account): ?string;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @param Account $account
 | 
						|
     *
 | 
						|
     * @return TransactionGroup|null
 | 
						|
     */
 | 
						|
    public function getOpeningBalanceGroup(Account $account): ?TransactionGroup;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @param Account $account
 | 
						|
     *
 | 
						|
     * @return Collection
 | 
						|
     */
 | 
						|
    public function getPiggyBanks(Account $account): Collection;
 | 
						|
 | 
						|
    /**
 | 
						|
     * Find or create the opposing reconciliation account.
 | 
						|
     *
 | 
						|
     * @param Account $account
 | 
						|
     *
 | 
						|
     * @return Account|null
 | 
						|
     */
 | 
						|
    public function getReconciliation(Account $account): ?Account;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @param Account $account
 | 
						|
     *
 | 
						|
     * @return Collection
 | 
						|
     */
 | 
						|
    public function getUsedCurrencies(Account $account): Collection;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @param Account $account
 | 
						|
     *
 | 
						|
     * @return bool
 | 
						|
     */
 | 
						|
    public function isLiability(Account $account): bool;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @param string $type
 | 
						|
     *
 | 
						|
     * @return int
 | 
						|
     */
 | 
						|
    public function maxOrder(string $type): int;
 | 
						|
 | 
						|
    /**
 | 
						|
     * Returns the date of the very first transaction in this account.
 | 
						|
     *
 | 
						|
     * @param Account $account
 | 
						|
     *
 | 
						|
     * @return TransactionJournal|null
 | 
						|
     */
 | 
						|
    public function oldestJournal(Account $account): ?TransactionJournal;
 | 
						|
 | 
						|
    /**
 | 
						|
     * Returns the date of the very first transaction in this account.
 | 
						|
     *
 | 
						|
     * @param Account $account
 | 
						|
     *
 | 
						|
     * @return Carbon|null
 | 
						|
     */
 | 
						|
    public function oldestJournalDate(Account $account): ?Carbon;
 | 
						|
 | 
						|
    /**
 | 
						|
     * Reset order types of the mentioned accounts.
 | 
						|
     */
 | 
						|
    public function resetAccountOrder(): void;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @param string $query
 | 
						|
     * @param array  $types
 | 
						|
     * @param int    $limit
 | 
						|
     *
 | 
						|
     * @return Collection
 | 
						|
     */
 | 
						|
    public function searchAccount(string $query, array $types, int $limit): Collection;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @param string $query
 | 
						|
     * @param array  $types
 | 
						|
     * @param int    $limit
 | 
						|
     *
 | 
						|
     * @return Collection
 | 
						|
     */
 | 
						|
    public function searchAccountNr(string $query, array $types, int $limit): Collection;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @param User|Authenticatable|null $user
 | 
						|
     */
 | 
						|
    public function setUser(User | Authenticatable | null $user): void;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @param array $data
 | 
						|
     *
 | 
						|
     * @return Account
 | 
						|
     */
 | 
						|
    public function store(array $data): Account;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @param Account $account
 | 
						|
     * @param array   $data
 | 
						|
     *
 | 
						|
     * @return Account
 | 
						|
     */
 | 
						|
    public function update(Account $account, array $data): Account;
 | 
						|
}
 |