1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 01:11:34 +02:00
invoiceninja/app/Libraries/Currency/Conversion/CurrencyApi.php
David Bomba aa690578e3
Implement Currency Conversion library. (#3643)
* Fixes for testS

* Fixes for migration

* Fixes for migratin

* Query performance improvements

* Check Data Script

* Currency Conversion API

* Implement currency conversion

* Currency Conversions
2020-04-19 20:29:58 +10:00

53 lines
1.2 KiB
PHP

<?php
/**
* Invoice Ninja (https://invoiceninja.com)
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://opensource.org/licenses/AAL
*/
namespace App\Libraries\Currency\Conversion;
use App\Models\Currency;
use AshAllenDesign\LaravelExchangeRates\Classes\ExchangeRate;
use Illuminate\Support\Carbon;
class CurrencyApi implements CurrencyConversionInterface
{
public function convert($amount, $from_currency_id, $to_currency_id, $date = null)
{
if(!$date)
$date = Carbon::now();
$from_currency = Currency::find($from_currency_id)->code;
$to_currency = Currency::find($to_currency_id)->code;
$exchangeRates = new ExchangeRate();
return $exchangeRates->convert($amount, $from_currency, $to_currency, $date);
}
public function exchangeRate($from_currency_id, $to_currency_id, $date = null)
{
if(!$date)
$date = Carbon::now();
$from_currency = Currency::find($from_currency_id)->code;
$to_currency = Currency::find($to_currency_id)->code;
$exchangeRates = new ExchangeRate();
return $exchangeRates->exchangeRate($from_currency, $to_currency, $date);
}
}