. */ declare(strict_types=1); namespace FireflyIII\Rules; use FireflyIII\Models\TransactionJournal; use Illuminate\Contracts\Validation\Rule; use Log; /** * Class ValidJournals * @codeCoverageIgnore */ class ValidJournals implements Rule { /** * Get the validation error message. * * @return string */ public function message(): string { return (string)trans('validation.invalid_selection'); } /** * Determine if the validation rule passes. * * @param string $attribute * @param mixed $value * * @return bool * */ public function passes($attribute, $value): bool { Log::debug('In ValidJournals::passes'); if (!is_array($value)) { return true; } $userId = auth()->user()->id; foreach ($value as $journalId) { $count = TransactionJournal::where('id', $journalId)->where('user_id', $userId)->count(); if (0 === $count) { Log::debug(sprintf('Count for transaction #%d and user #%d is zero! Return FALSE', $journalId, $userId)); return false; } } Log::debug('Return true!'); return true; } }