Files
firefly-iii/app/Rules/BelongsUser.php

195 lines
6.5 KiB
PHP
Raw Normal View History

<?php
2018-02-23 16:59:21 +01:00
/**
* BelongsUser.php
2020-02-16 13:56:25 +01:00
* Copyright (c) 2019 james@firefly-iii.org
2018-02-23 16:59:21 +01:00
*
* This file is part of Firefly III (https://github.com/firefly-iii).
2018-02-23 16:59:21 +01:00
*
* 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.
2018-02-23 16:59:21 +01:00
*
* This program is distributed in the hope that it will be useful,
2018-02-23 16:59:21 +01:00
* 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.
2018-02-23 16:59:21 +01:00
*
* 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/>.
2018-02-23 16:59:21 +01:00
*/
2018-05-11 10:08:34 +02:00
declare(strict_types=1);
namespace FireflyIII\Rules;
use FireflyIII\Exceptions\FireflyException;
use FireflyIII\Models\Account;
use FireflyIII\Models\Bill;
use FireflyIII\Models\Budget;
use FireflyIII\Models\Category;
use FireflyIII\Models\PiggyBank;
use FireflyIII\Models\TransactionJournal;
use Illuminate\Contracts\Validation\ValidationRule;
use Closure;
/**
* Class BelongsUser
*/
class BelongsUser implements ValidationRule
{
public function validate(string $attribute, mixed $value, Closure $fail): void
{
$attribute = $this->parseAttribute($attribute);
if (!auth()->check()) {
$fail('validation.belongs_user')->translate();
2023-12-20 19:35:52 +01:00
return;
}
2023-10-29 06:33:43 +01:00
app('log')->debug(sprintf('Going to validate %s', $attribute));
2021-09-18 10:20:19 +02:00
$result = match ($attribute) {
2024-12-22 08:43:12 +01:00
'piggy_bank_id' => $this->validatePiggyBankId((int) $value),
2023-07-15 16:02:42 +02:00
'piggy_bank_name' => $this->validatePiggyBankName($value),
2024-12-22 08:43:12 +01:00
'bill_id' => $this->validateBillId((int) $value),
'transaction_journal_id' => $this->validateJournalId((int) $value),
2023-07-15 16:02:42 +02:00
'bill_name' => $this->validateBillName($value),
2024-12-22 08:43:12 +01:00
'budget_id' => $this->validateBudgetId((int) $value),
'category_id' => $this->validateCategoryId((int) $value),
2023-07-15 16:02:42 +02:00
'budget_name' => $this->validateBudgetName($value),
2024-12-22 08:43:12 +01:00
'source_id', 'destination_id' => $this->validateAccountId((int) $value),
default => throw new FireflyException(sprintf('Rule BelongsUser cannot handle "%s"', $attribute)),
2021-09-18 10:20:19 +02:00
};
if (false === $result) {
$fail('validation.belongs_user')->translate();
}
}
2023-06-21 12:34:58 +02:00
private function parseAttribute(string $attribute): string
{
$parts = explode('.', $attribute);
if (1 === count($parts)) {
return $attribute;
}
if (3 === count($parts)) {
return $parts[2];
}
return $attribute;
}
private function validatePiggyBankId(int $value): bool
{
$count = PiggyBank::leftJoin('account_piggy_bank', 'account_piggy_bank.piggy_bank_id', '=', 'piggy_banks.id')
->leftJoin('accounts', 'accounts.id', '=', 'account_piggy_bank.account_id')
2023-12-20 19:35:52 +01:00
->where('piggy_banks.id', '=', $value)
->where('accounts.user_id', '=', auth()->user()->id)->count()
;
2023-06-21 12:34:58 +02:00
return $count > 0;
2023-06-21 12:34:58 +02:00
}
private function validatePiggyBankName(string $value): bool
{
$count = PiggyBank::leftJoin('account_piggy_bank', 'account_piggy_bank.piggy_bank_id', '=', 'piggy_banks.id')
->leftJoin('accounts', 'accounts.id', '=', 'account_piggy_bank.account_id')
->where('piggy_banks.name', '=', $value)
->where('accounts.user_id', '=', auth()->user()->id)->count()
;
2023-06-21 12:34:58 +02:00
return $count > 0;
2023-06-21 12:34:58 +02:00
}
private function validateBillId(int $value): bool
2018-07-26 06:10:17 +02:00
{
2021-04-04 08:31:15 +02:00
if (0 === $value) {
return true;
}
2023-06-21 12:34:58 +02:00
$count = Bill::where('id', '=', $value)->where('user_id', '=', auth()->user()->id)->count();
2018-07-26 06:10:17 +02:00
return 1 === $count;
}
2023-06-21 12:34:58 +02:00
private function validateJournalId(int $value): bool
{
if (0 === $value) {
return true;
}
2023-06-21 12:34:58 +02:00
$count = TransactionJournal::where('id', '=', $value)->where('user_id', '=', auth()->user()->id)->count();
return 1 === $count;
}
2018-07-26 06:10:17 +02:00
private function validateBillName(string $value): bool
{
$count = $this->countField(Bill::class, 'name', $value);
2023-10-29 06:33:43 +01:00
app('log')->debug(sprintf('Result of countField for bill name "%s" is %d', $value, $count));
2018-07-26 06:10:17 +02:00
return 1 === $count;
}
2025-05-04 17:41:26 +02:00
protected function countField(string $class, string $field, string $value): int
{
$value = trim($value);
$objects = [];
// get all objects belonging to user:
if (PiggyBank::class === $class) {
$objects = PiggyBank::leftJoin('accounts', 'accounts.id', '=', 'piggy_banks.account_id')
->where('accounts.user_id', '=', auth()->user()->id)->get(['piggy_banks.*'])
;
}
if (PiggyBank::class !== $class) {
$objects = $class::where('user_id', '=', auth()->user()->id)->get();
}
$count = 0;
foreach ($objects as $object) {
$objectValue = trim((string) $object->{$field}); // @phpstan-ignore-line
app('log')->debug(sprintf('Comparing object "%s" with value "%s"', $objectValue, $value));
if ($objectValue === $value) {
++$count;
app('log')->debug(sprintf('Hit! Count is now %d', $count));
}
}
return $count;
}
2018-07-26 06:10:17 +02:00
private function validateBudgetId(int $value): bool
{
2019-09-01 14:49:26 +02:00
if (0 === $value) {
return true;
}
2018-07-26 06:10:17 +02:00
$count = Budget::where('id', '=', $value)->where('user_id', '=', auth()->user()->id)->count();
return 1 === $count;
}
2023-06-21 12:34:58 +02:00
private function validateCategoryId(int $value): bool
2018-07-26 06:10:17 +02:00
{
2023-06-21 12:34:58 +02:00
$count = Category::where('id', '=', $value)->where('user_id', '=', auth()->user()->id)->count();
2018-07-26 06:10:17 +02:00
return 1 === $count;
}
2023-06-21 12:34:58 +02:00
private function validateBudgetName(string $value): bool
2018-07-26 06:10:17 +02:00
{
2023-06-21 12:34:58 +02:00
$count = $this->countField(Budget::class, 'name', $value);
2018-07-26 06:10:17 +02:00
return 1 === $count;
}
2023-06-21 12:34:58 +02:00
private function validateAccountId(int $value): bool
2018-07-26 06:10:17 +02:00
{
2021-03-21 09:15:40 +01:00
if (0 === $value) {
2023-06-21 12:34:58 +02:00
// its ok to submit 0. other checks will fail.
2021-03-21 09:15:40 +01:00
return true;
}
2023-06-21 12:34:58 +02:00
$count = Account::where('id', '=', $value)->where('user_id', '=', auth()->user()->id)->count();
2018-07-26 06:10:17 +02:00
return 1 === $count;
}
}