mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
68 lines
1.5 KiB
PHP
68 lines
1.5 KiB
PHP
<?php
|
|
/**
|
|
* Quote Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2022. Quote Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
*/
|
|
|
|
namespace App\Http\ValidationRules\Recurring;
|
|
|
|
use App\Models\RecurringQuote;
|
|
use Illuminate\Contracts\Validation\Rule;
|
|
|
|
/**
|
|
* Class UniqueRecurringQuoteNumberRule.
|
|
*/
|
|
class UniqueRecurringQuoteNumberRule 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->checkIfQuoteNumberUnique(); //if it exists, return false!
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function message()
|
|
{
|
|
return ctrans('texts.recurring_quote_number_taken', ['number' => $this->input['number']]);
|
|
}
|
|
|
|
/**
|
|
* @return bool
|
|
*/
|
|
private function checkIfQuoteNumberUnique() : bool
|
|
{
|
|
if (empty($this->input['number'])) {
|
|
return true;
|
|
}
|
|
|
|
$invoice = RecurringQuote::where('client_id', $this->input['client_id'])
|
|
->where('number', $this->input['number'])
|
|
->withTrashed()
|
|
->exists();
|
|
|
|
if ($invoice) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
}
|