mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-11-04 05:15:39 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			194 lines
		
	
	
		
			4.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			194 lines
		
	
	
		
			4.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * AccountRepositoryInterface.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\Models\Account;
 | 
						|
use FireflyIII\Models\AccountType;
 | 
						|
use FireflyIII\Models\Note;
 | 
						|
use FireflyIII\Models\TransactionJournal;
 | 
						|
use FireflyIII\User;
 | 
						|
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 $moveTo
 | 
						|
     *
 | 
						|
     * @return bool
 | 
						|
     */
 | 
						|
    public function destroy(Account $account, Account $moveTo): bool;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @param int $accountId
 | 
						|
     *
 | 
						|
     * @return Account
 | 
						|
     */
 | 
						|
    public function find(int $accountId): Account;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @param string $number
 | 
						|
     * @param array  $types
 | 
						|
     *
 | 
						|
     * @return Account
 | 
						|
     */
 | 
						|
    public function findByAccountNumber(string $number, array $types): Account;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @param string $iban
 | 
						|
     * @param array  $types
 | 
						|
     *
 | 
						|
     * @return Account
 | 
						|
     */
 | 
						|
    public function findByIban(string $iban, array $types): Account;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @param string $name
 | 
						|
     * @param array  $types
 | 
						|
     *
 | 
						|
     * @return Account
 | 
						|
     */
 | 
						|
    public function findByName(string $name, array $types): Account;
 | 
						|
 | 
						|
    /**
 | 
						|
     * Return account type by string.
 | 
						|
     *
 | 
						|
     * @param string $type
 | 
						|
     *
 | 
						|
     * @return AccountType|null
 | 
						|
     */
 | 
						|
    public function getAccountType(string $type): ?AccountType;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @param array $accountIds
 | 
						|
     *
 | 
						|
     * @return Collection
 | 
						|
     */
 | 
						|
    public function getAccountsById(array $accountIds): Collection;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @param array $types
 | 
						|
     *
 | 
						|
     * @return Collection
 | 
						|
     */
 | 
						|
    public function getAccountsByType(array $types): Collection;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @param array $types
 | 
						|
     *
 | 
						|
     * @return Collection
 | 
						|
     */
 | 
						|
    public function getActiveAccountsByType(array $types): Collection;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @return Account
 | 
						|
     */
 | 
						|
    public function getCashAccount(): Account;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @param Account $account
 | 
						|
     *
 | 
						|
     * @return Note|null
 | 
						|
     */
 | 
						|
    public function getNote(Account $account): ?Note;
 | 
						|
 | 
						|
    /**
 | 
						|
     * Find or create the opposing reconciliation account.
 | 
						|
     *
 | 
						|
     * @param Account $account
 | 
						|
     *
 | 
						|
     * @return Account|null
 | 
						|
     */
 | 
						|
    public function getReconciliation(Account $account): ?Account;
 | 
						|
 | 
						|
    /**
 | 
						|
     * 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 TransactionJournal
 | 
						|
     */
 | 
						|
    public function oldestJournal(Account $account): TransactionJournal;
 | 
						|
 | 
						|
    /**
 | 
						|
     * Returns the date of the very first transaction in this account.
 | 
						|
     *
 | 
						|
     * @param Account $account
 | 
						|
     *
 | 
						|
     * @return Carbon
 | 
						|
     */
 | 
						|
    public function oldestJournalDate(Account $account): Carbon;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @param User $user
 | 
						|
     */
 | 
						|
    public function setUser(User $user);
 | 
						|
 | 
						|
    /**
 | 
						|
     * @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;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @param TransactionJournal $journal
 | 
						|
     * @param array              $data
 | 
						|
     *
 | 
						|
     * @return TransactionJournal
 | 
						|
     */
 | 
						|
    public function updateReconciliation(TransactionJournal $journal, array $data): TransactionJournal;
 | 
						|
}
 |