Files
firefly-iii/app/Factory/TransactionCurrencyFactory.php

95 lines
2.6 KiB
PHP
Raw Normal View History

2018-02-19 19:44:46 +01:00
<?php
declare(strict_types=1);
2018-02-19 19:44:46 +01:00
/**
* TransactionCurrencyFactory.php
* Copyright (c) 2018 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/>.
*/
namespace FireflyIII\Factory;
use FireflyIII\Models\TransactionCurrency;
2018-03-30 22:40:20 +02:00
use Illuminate\Database\QueryException;
use Log;
2018-02-19 19:44:46 +01:00
/**
* Class TransactionCurrencyFactory
*/
class TransactionCurrencyFactory
{
2018-03-25 09:01:43 +02:00
/**
* @param array $data
*
2018-03-30 22:40:20 +02:00
* @return TransactionCurrency|null
2018-03-25 09:01:43 +02:00
*/
2018-03-30 22:40:20 +02:00
public function create(array $data): ?TransactionCurrency
2018-03-25 09:01:43 +02:00
{
2018-03-30 22:40:20 +02:00
$result = null;
try {
/** @var TransactionCurrency $currency */
$result = TransactionCurrency::create(
[
'name' => $data['name'],
'code' => $data['code'],
'symbol' => $data['symbol'],
'decimal_places' => $data['decimal_places'],
]
);
} catch (QueryException $e) {
Log::error(sprintf('Could not create new currency: %s', $e->getMessage()));
}
2018-03-25 09:01:43 +02:00
2018-03-30 22:40:20 +02:00
return $result;
2018-03-25 09:01:43 +02:00
}
2018-02-19 19:44:46 +01:00
/**
* @param int|null $currencyId
* @param null|string $currencyCode
*
* @return TransactionCurrency|null
*/
public function find(?int $currencyId, ?string $currencyCode): ?TransactionCurrency
{
2018-04-02 14:42:07 +02:00
$currencyCode = (string)$currencyCode;
$currencyId = (int)$currencyId;
2018-02-19 19:44:46 +01:00
2018-04-02 14:42:07 +02:00
if (strlen($currencyCode) === 0 && (int)$currencyId === 0) {
2018-02-19 19:44:46 +01:00
return null;
}
// first by ID:
if ($currencyId > 0) {
$currency = TransactionCurrency::find($currencyId);
2018-04-02 14:42:07 +02:00
if (null !== $currency) {
2018-02-19 19:44:46 +01:00
return $currency;
}
}
// then by code:
if (strlen($currencyCode) > 0) {
$currency = TransactionCurrency::whereCode($currencyCode)->first();
2018-04-02 14:42:07 +02:00
if (null !== $currency) {
2018-02-19 19:44:46 +01:00
return $currency;
}
}
return null;
}
2018-03-05 19:35:58 +01:00
}