mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-26 10:51:12 -06:00
124 lines
3.2 KiB
PHP
124 lines
3.2 KiB
PHP
<?php
|
|
/**
|
|
* BillFactory.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/>.
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace FireflyIII\Factory;
|
|
|
|
use FireflyIII\Models\Bill;
|
|
use FireflyIII\Repositories\Bill\BillRepositoryInterface;
|
|
use FireflyIII\Services\Internal\Support\BillServiceTrait;
|
|
use FireflyIII\User;
|
|
|
|
/**
|
|
* Class BillFactory
|
|
*/
|
|
class BillFactory
|
|
{
|
|
use BillServiceTrait;
|
|
/** @var BillRepositoryInterface */
|
|
private $repository;
|
|
/** @var User */
|
|
private $user;
|
|
|
|
/**
|
|
* BillFactory constructor.
|
|
*/
|
|
public function __construct()
|
|
{
|
|
$this->repository = app(BillRepositoryInterface::class);
|
|
}
|
|
|
|
/**
|
|
* @param int|null $billId
|
|
* @param null|string $billName
|
|
*
|
|
* @return Bill|null
|
|
*/
|
|
public function find(?int $billId, ?string $billName): ?Bill
|
|
{
|
|
$billId = intval($billId);
|
|
$billName = strval($billName);
|
|
// first find by ID:
|
|
if ($billId > 0) {
|
|
/** @var Bill $bill */
|
|
$bill = $this->repository->find($billId);
|
|
if (!is_null($bill)) {
|
|
return $bill;
|
|
}
|
|
}
|
|
|
|
// then find by name:
|
|
if (strlen($billName) > 0) {
|
|
$bill = $this->repository->findByName($billName);
|
|
if (!is_null($bill)) {
|
|
return $bill;
|
|
}
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
/**
|
|
* @param User $user
|
|
*/
|
|
public function setUser(User $user)
|
|
{
|
|
$this->user = $user;
|
|
$this->repository->setUser($user);
|
|
|
|
}
|
|
|
|
/**
|
|
* @param array $data
|
|
*
|
|
* @return Bill|null
|
|
*/
|
|
public function store(array $data): ?Bill
|
|
{
|
|
$matchArray = explode(',', $data['match']);
|
|
$matchArray = array_unique($matchArray);
|
|
$match = join(',', $matchArray);
|
|
|
|
/** @var Bill $bill */
|
|
$bill = Bill::create(
|
|
[
|
|
'name' => $data['name'],
|
|
'match' => $match,
|
|
'amount_min' => $data['amount_min'],
|
|
'user_id' => $this->user->id,
|
|
'amount_max' => $data['amount_max'],
|
|
'date' => $data['date'],
|
|
'repeat_freq' => $data['repeat_freq'],
|
|
'skip' => $data['skip'],
|
|
'automatch' => $data['automatch'],
|
|
'active' => $data['active'],
|
|
]
|
|
);
|
|
|
|
// update note:
|
|
if (isset($data['notes'])) {
|
|
$this->updateNote($bill, $data['notes']);
|
|
}
|
|
}
|
|
|
|
} |