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

64 lines
1.3 KiB
PHP
Raw Normal View History

2020-08-13 08:15:46 +02:00
<?php
/**
* Quote Ninja (https://quoteninja.com).
2020-08-13 08:15:46 +02:00
*
* @link https://github.com/quoteninja/quoteninja source repository
*
* @copyright Copyright (c) 2021. Quote Ninja LLC (https://quoteninja.com)
2020-08-13 08:15:46 +02:00
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2020-08-13 08:15:46 +02:00
*/
namespace App\Http\ValidationRules\Quote;
use App\Models\Quote;
use Illuminate\Contracts\Validation\Rule;
/**
* Class UniqueQuoteNumberRule.
2020-08-13 08:15:46 +02:00
*/
class UniqueQuoteNumberRule implements Rule
{
public $input;
public function __construct($input)
{
$this->input = $input;
}
/**
2020-08-13 08:15:46 +02:00
* @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.quote_number_taken');
2020-08-13 08:15:46 +02:00
}
/**
* @return bool
*/
private function checkIfQuoteNumberUnique() : bool
{
$quote = Quote::where('client_id', $this->input['client_id'])
->where('number', $this->input['number'])
->withTrashed()
->exists();
if ($quote) {
2020-08-13 08:15:46 +02:00
return false;
}
2020-08-13 08:15:46 +02:00
return true;
}
}