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

68 lines
1.4 KiB
PHP
Raw Normal View History

2020-07-23 13:20:05 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
2020-07-23 13:20:05 +02:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://opensource.org/licenses/AAL
*/
namespace App\Http\ValidationRules\Invoice;
use App\Models\Invoice;
use Illuminate\Contracts\Validation\Rule;
/**
* Class UniqueInvoiceNumberRule.
2020-07-23 13:20:05 +02:00
*/
class UniqueInvoiceNumberRule implements Rule
{
public $input;
public function __construct($input)
{
$this->input = $input;
}
/**
2020-07-23 13:20:05 +02:00
* @param string $attribute
* @param mixed $value
* @return bool
*/
public function passes($attribute, $value)
{
return $this->checkIfInvoiceNumberUnique(); //if it exists, return false!
}
/**
* @return string
*/
public function message()
{
return 'Invoice number already taken';
2020-07-23 13:20:05 +02:00
}
/**
* @return bool
*/
2020-07-23 13:30:51 +02:00
private function checkIfInvoiceNumberUnique() : bool
2020-07-23 13:20:05 +02:00
{
2020-11-25 15:19:52 +01:00
if (empty($this->input['number'])) {
2020-10-07 01:16:57 +02:00
return true;
2020-11-25 15:19:52 +01:00
}
2020-10-07 01:16:57 +02:00
2020-07-23 13:30:51 +02:00
$invoice = Invoice::where('client_id', $this->input['client_id'])
2020-07-23 13:20:05 +02:00
->where('number', $this->input['number'])
->withTrashed()
->exists();
2020-07-23 13:20:05 +02:00
if ($invoice) {
2020-07-23 13:30:51 +02:00
return false;
}
2020-07-23 13:30:51 +02:00
return true;
2020-07-23 13:20:05 +02:00
}
}