Files
firefly-iii/app/Services/Internal/Support/BillServiceTrait.php

95 lines
2.7 KiB
PHP
Raw Normal View History

<?php
/**
* BillServiceTrait.php
2020-02-16 13:56:35 +01: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.
*
* This program 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 Affero General Public License for more details.
*
* 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);
namespace FireflyIII\Services\Internal\Support;
2018-03-10 22:38:20 +01:00
use Exception;
use FireflyIII\Models\Bill;
use FireflyIII\Models\Note;
2018-04-14 20:31:31 +02:00
use FireflyIII\Models\RuleAction;
use Log;
/**
* Trait BillServiceTrait
2021-03-15 10:31:11 +01:00
*
2019-07-31 16:53:09 +02:00
* @codeCoverageIgnore
*/
trait BillServiceTrait
{
2018-03-01 20:54:50 +01:00
2018-04-14 20:31:31 +02:00
/**
* @param Bill $bill
* @param string $oldName
* @param string $newName
*/
public function updateBillActions(Bill $bill, string $oldName, string $newName): void
{
if ($oldName === $newName) {
return;
}
$ruleIds = $bill->user->rules()->get(['id'])->pluck('id')->toArray();
$set = RuleAction::whereIn('rule_id', $ruleIds)
->where('action_type', 'link_to_bill')
->where('action_value', $oldName)->get();
2018-04-14 20:31:31 +02:00
/** @var RuleAction $ruleAction */
foreach ($set as $ruleAction) {
2020-03-20 08:41:20 +01:00
Log::debug(sprintf('Updated rule action #%d to search for new bill name "%s"', $ruleAction->id, $newName));
2018-04-14 20:31:31 +02:00
$ruleAction->action_value = $newName;
$ruleAction->save();
}
}
/**
* @param Bill $bill
* @param string $note
*
* @return bool
*/
public function updateNote(Bill $bill, string $note): bool
{
2018-07-26 06:27:52 +02:00
if ('' === $note) {
$dbNote = $bill->notes()->first();
if (null !== $dbNote) {
try {
$dbNote->delete();
2021-04-06 18:36:37 +02:00
} catch (Exception $e) { // @phpstan-ignore-line
// @ignoreException
}
}
return true;
}
$dbNote = $bill->notes()->first();
if (null === $dbNote) {
$dbNote = new Note();
$dbNote->noteable()->associate($bill);
}
$dbNote->text = trim($note);
$dbNote->save();
return true;
}
2018-03-05 19:35:58 +01:00
}