firefly-iii/app/Repositories/Currency/CurrencyRepositoryInterface.php

259 lines
6.5 KiB
PHP
Raw Normal View History

2015-04-05 13:47:19 -05:00
<?php
/**
* CurrencyRepositoryInterface.php
2020-02-16 07:00:57 -06: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 01:40:00 -05:00
*
* This program is distributed in the hope that it will be useful,
2017-10-21 01:40:00 -05: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 01:40:00 -05: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-04-05 13:47:19 -05:00
namespace FireflyIII\Repositories\Currency;
use Carbon\Carbon;
2020-01-05 12:29:28 -06:00
use FireflyIII\Exceptions\FireflyException;
use FireflyIII\Models\CurrencyExchangeRate;
2015-04-05 13:47:19 -05:00
use FireflyIII\Models\Preference;
use FireflyIII\Models\TransactionCurrency;
use FireflyIII\User;
2015-04-05 13:47:19 -05:00
use Illuminate\Support\Collection;
/**
2017-11-15 05:25:49 -06:00
* Interface CurrencyRepositoryInterface.
2015-04-05 13:47:19 -05:00
*/
interface CurrencyRepositoryInterface
{
2020-02-13 13:09:27 -06:00
/**
* @param TransactionCurrency $currency
*
* @return bool
*/
public function isFallbackCurrency(TransactionCurrency $currency): bool;
2016-12-11 09:25:46 -06:00
/**
* @param TransactionCurrency $currency
*
2018-12-08 14:26:20 -06:00
* @return int
2016-12-11 09:25:46 -06:00
*/
2018-12-08 14:26:20 -06:00
public function countJournals(TransactionCurrency $currency): int;
2016-12-11 09:25:46 -06:00
2015-04-05 13:47:19 -05:00
/**
* @param TransactionCurrency $currency
*
2018-12-08 14:26:20 -06:00
* @return bool
2015-04-05 13:47:19 -05:00
*/
2018-12-08 14:26:20 -06:00
public function currencyInUse(TransactionCurrency $currency): bool;
2015-04-05 13:47:19 -05:00
/**
* Currency is in use where exactly.
*
* @param TransactionCurrency $currency
*
* @return string|null
*/
public function currencyInUseAt(TransactionCurrency $currency): ?string;
2016-12-11 09:25:46 -06:00
/**
* @param TransactionCurrency $currency
*
* @return bool
*/
public function destroy(TransactionCurrency $currency): bool;
/**
* Disables a currency
*
* @param TransactionCurrency $currency
*/
public function disable(TransactionCurrency $currency): void;
/**
* Enables a currency
*
* @param TransactionCurrency $currency
*/
public function enable(TransactionCurrency $currency): void;
/**
* Find by ID, return NULL if not found.
*
* @param int $currencyId
*
* @return TransactionCurrency|null
*/
public function find(int $currencyId): ?TransactionCurrency;
/**
* Find by currency code, return NULL if unfound.
*
* @param string $currencyCode
*
* @return TransactionCurrency|null
*/
public function findByCode(string $currencyCode): ?TransactionCurrency;
2018-02-16 08:19:19 -06:00
/**
* Find by currency code, return NULL if unfound.
*
* @param string $currencyCode
*
* @return TransactionCurrency|null
*/
public function findByCodeNull(string $currencyCode): ?TransactionCurrency;
/**
* Find by currency name.
*
* @param string $currencyName
*
* @return TransactionCurrency
*/
public function findByName(string $currencyName): ?TransactionCurrency;
2016-04-01 07:10:08 -05:00
/**
2018-03-24 04:35:42 -05:00
* Find by currency name.
*
* @param string $currencyName
2016-04-01 07:10:08 -05:00
*
2018-03-24 04:35:42 -05:00
* @return TransactionCurrency
*/
public function findByNameNull(string $currencyName): ?TransactionCurrency;
/**
* Find by currency symbol.
*
* @param string $currencySymbol
*
* @return TransactionCurrency
*/
public function findBySymbol(string $currencySymbol): ?TransactionCurrency;
2018-03-24 04:35:42 -05:00
/**
* Find by currency symbol.
*
* @param string $currencySymbol
*
* @return TransactionCurrency
*/
public function findBySymbolNull(string $currencySymbol): ?TransactionCurrency;
2019-03-07 22:47:51 -06:00
/**
* Find by object, ID or code. Returns user default or system default.
*
* @param int|null $currencyId
* @param string|null $currencyCode
2019-03-07 22:47:51 -06:00
*
* @return TransactionCurrency
2019-03-07 22:47:51 -06:00
*/
public function findCurrency(?int $currencyId, ?string $currencyCode): TransactionCurrency;
2019-03-07 22:47:51 -06:00
/**
* Find by object, ID or code. Returns NULL if nothing found.
*
* @param int|null $currencyId
* @param string|null $currencyCode
*
* @return TransactionCurrency|null
*/
public function findCurrencyNull(?int $currencyId, ?string $currencyCode): ?TransactionCurrency;
2018-02-16 08:19:19 -06:00
/**
* Find by ID, return NULL if not found.
*
* @param int $currencyId
*
* @return TransactionCurrency|null
*/
public function findNull(int $currencyId): ?TransactionCurrency;
2015-04-05 13:47:19 -05:00
/**
* @return Collection
*/
2016-04-05 15:00:03 -05:00
public function get(): Collection;
2015-04-05 13:47:19 -05:00
/**
* @return Collection
*/
public function getAll(): Collection;
2017-08-18 08:14:44 -05:00
/**
* @param array $ids
*
* @return Collection
*/
public function getByIds(array $ids): Collection;
2015-04-05 13:47:19 -05:00
/**
* @param Preference $preference
*
* @return TransactionCurrency
*/
2016-04-05 15:00:03 -05:00
public function getCurrencyByPreference(Preference $preference): TransactionCurrency;
2015-04-05 13:47:19 -05:00
/**
* @return Collection
*/
public function getEnabled(): Collection;
/**
2018-06-28 00:32:58 -05:00
* Get currency exchange rate.
*
* @param TransactionCurrency $fromCurrency
* @param TransactionCurrency $toCurrency
* @param Carbon $date
*
2018-06-28 00:32:58 -05:00
* @return CurrencyExchangeRate|null
*/
2018-06-28 00:32:58 -05:00
public function getExchangeRate(TransactionCurrency $fromCurrency, TransactionCurrency $toCurrency, Carbon $date): ?CurrencyExchangeRate;
2018-12-08 14:26:20 -06:00
/**
* Return a list of exchange rates with this currency.
*
* @param TransactionCurrency $currency
*
* @return Collection
*/
public function getExchangeRates(TransactionCurrency $currency): Collection;
/**
* @param string $search
* @param int $limit
*
* @return Collection
*/
public function searchCurrency(string $search, int $limit): Collection;
2017-01-30 09:46:30 -06:00
/**
* @param User $user
*/
public function setUser(User $user);
2015-04-05 13:47:19 -05:00
/**
* @param array $data
2020-01-05 12:29:28 -06:00
* @throws FireflyException
2019-10-30 14:02:21 -05:00
* @return TransactionCurrency
2015-04-05 13:47:19 -05:00
*/
2019-10-30 14:02:21 -05:00
public function store(array $data): TransactionCurrency;
2015-04-05 13:47:19 -05:00
/**
* @param TransactionCurrency $currency
* @param array $data
*
* @return TransactionCurrency
*/
2016-04-05 15:00:03 -05:00
public function update(TransactionCurrency $currency, array $data): TransactionCurrency;
2015-04-07 11:25:21 -05:00
}