1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 09:21:34 +02:00
invoiceninja/app/Http/ValidationRules/Expense/UniqueExpenseNumberRule.php

64 lines
1.3 KiB
PHP
Raw Normal View History

2020-09-23 02:46:35 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
2020-09-23 02:46:35 +02:00
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2020-09-23 02:46:35 +02:00
*/
namespace App\Http\ValidationRules\Expense;
use App\Models\Expense;
use Illuminate\Contracts\Validation\Rule;
/**
* Class UniqueExpenseNumberRule.
*/
class UniqueExpenseNumberRule implements Rule
{
public $input;
public function __construct($input)
{
$this->input = $input;
}
/**
* @param string $attribute
* @param mixed $value
* @return bool
*/
public function passes($attribute, $value)
{
return $this->checkIfExpenseNumberUnique(); //if it exists, return false!
}
/**
* @return string
*/
public function message()
{
return ctrans('texts.expense_number_taken');
2020-09-23 02:46:35 +02:00
}
/**
* @return bool
*/
private function checkIfExpenseNumberUnique() : bool
{
2020-11-25 15:19:52 +01:00
if (empty($this->input['number'])) {
2020-10-19 23:31:19 +02:00
return true;
2020-11-25 15:19:52 +01:00
}
2020-09-23 02:46:35 +02:00
2020-10-19 23:31:19 +02:00
$expense = Expense::query()
->where('number', $this->input['number'])
->withTrashed();
2020-09-23 02:46:35 +02:00
2020-10-19 23:31:19 +02:00
return $expense->exists();
2020-10-28 11:10:49 +01:00
2020-09-23 02:46:35 +02:00
}
}