2015-04-05 13:47:19 -05:00
|
|
|
<?php
|
2016-05-20 05:41:23 -05:00
|
|
|
/**
|
|
|
|
* CurrencyRepositoryInterface.php
|
2017-10-21 01:40:00 -05:00
|
|
|
* Copyright (c) 2017 thegrumpydictator@gmail.com
|
2016-05-20 05:41:23 -05:00
|
|
|
*
|
2017-10-21 01:40:00 -05:00
|
|
|
* This file is part of Firefly III.
|
2016-10-04 23:52:15 -05:00
|
|
|
*
|
2017-10-21 01:40:00 -05:00
|
|
|
* 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/>.
|
2016-05-20 05:41:23 -05:00
|
|
|
*/
|
2017-04-09 00:44:22 -05:00
|
|
|
declare(strict_types=1);
|
2015-04-05 13:47:19 -05:00
|
|
|
|
|
|
|
namespace FireflyIII\Repositories\Currency;
|
|
|
|
|
2017-04-13 13:47:59 -05:00
|
|
|
use Carbon\Carbon;
|
|
|
|
use FireflyIII\Models\CurrencyExchangeRate;
|
2015-04-05 13:47:19 -05:00
|
|
|
use FireflyIII\Models\Preference;
|
|
|
|
use FireflyIII\Models\TransactionCurrency;
|
2017-01-30 09:40:49 -06:00
|
|
|
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
|
|
|
|
{
|
2016-12-11 09:25:46 -06:00
|
|
|
/**
|
|
|
|
* @param TransactionCurrency $currency
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function canDeleteCurrency(TransactionCurrency $currency): bool;
|
|
|
|
|
2015-04-05 13:47:19 -05:00
|
|
|
/**
|
|
|
|
* @param TransactionCurrency $currency
|
|
|
|
*
|
|
|
|
* @return int
|
|
|
|
*/
|
2016-04-05 15:00:03 -05:00
|
|
|
public function countJournals(TransactionCurrency $currency): int;
|
2015-04-05 13:47:19 -05:00
|
|
|
|
2016-12-11 09:25:46 -06:00
|
|
|
/**
|
|
|
|
* @param TransactionCurrency $currency
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function destroy(TransactionCurrency $currency): bool;
|
|
|
|
|
2016-04-01 07:10:08 -05:00
|
|
|
/**
|
2017-11-15 05:25:49 -06:00
|
|
|
* Find by ID.
|
2016-04-01 07:10:08 -05:00
|
|
|
*
|
|
|
|
* @param int $currencyId
|
|
|
|
*
|
|
|
|
* @return TransactionCurrency
|
|
|
|
*/
|
2016-12-04 11:02:19 -06:00
|
|
|
public function find(int $currencyId): TransactionCurrency;
|
2016-04-01 07:10:08 -05:00
|
|
|
|
|
|
|
/**
|
2017-11-15 05:25:49 -06:00
|
|
|
* Find by currency code.
|
2016-04-01 07:10:08 -05:00
|
|
|
*
|
|
|
|
* @param string $currencyCode
|
|
|
|
*
|
|
|
|
* @return TransactionCurrency
|
|
|
|
*/
|
2016-12-04 11:02:19 -06:00
|
|
|
public function findByCode(string $currencyCode): TransactionCurrency;
|
2016-04-01 07:10:08 -05:00
|
|
|
|
|
|
|
/**
|
2017-11-15 05:25:49 -06:00
|
|
|
* Find by currency name.
|
2016-04-01 07:10:08 -05:00
|
|
|
*
|
|
|
|
* @param string $currencyName
|
|
|
|
*
|
|
|
|
* @return TransactionCurrency
|
|
|
|
*/
|
2016-12-04 11:02:19 -06:00
|
|
|
public function findByName(string $currencyName): TransactionCurrency;
|
2016-04-01 07:10:08 -05:00
|
|
|
|
|
|
|
/**
|
2017-11-15 05:25:49 -06:00
|
|
|
* Find by currency symbol.
|
2016-04-01 07:10:08 -05:00
|
|
|
*
|
|
|
|
* @param string $currencySymbol
|
|
|
|
*
|
|
|
|
* @return TransactionCurrency
|
|
|
|
*/
|
2016-12-04 11:02:19 -06:00
|
|
|
public function findBySymbol(string $currencySymbol): TransactionCurrency;
|
2016-04-01 07:10:08 -05:00
|
|
|
|
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
|
|
|
|
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
|
|
|
|
2017-04-13 13:47:59 -05:00
|
|
|
/**
|
|
|
|
* @param TransactionCurrency $fromCurrency
|
|
|
|
* @param TransactionCurrency $toCurrency
|
|
|
|
* @param Carbon $date
|
|
|
|
*
|
|
|
|
* @return CurrencyExchangeRate
|
|
|
|
*/
|
|
|
|
public function getExchangeRate(TransactionCurrency $fromCurrency, TransactionCurrency $toCurrency, Carbon $date): CurrencyExchangeRate;
|
|
|
|
|
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
|
|
|
|
*
|
|
|
|
* @return TransactionCurrency
|
|
|
|
*/
|
2016-04-05 15:00:03 -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
|
|
|
}
|