2020-07-23 13:20:05 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* 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;
|
|
|
|
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Class UniqueInvoiceNumberRule.
|
2020-07-23 13:20:05 +02:00
|
|
|
*/
|
|
|
|
class UniqueInvoiceNumberRule implements Rule
|
|
|
|
{
|
|
|
|
public $input;
|
|
|
|
|
|
|
|
public function __construct($input)
|
|
|
|
{
|
|
|
|
$this->input = $input;
|
|
|
|
}
|
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
/**
|
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()
|
|
|
|
{
|
2020-09-06 11:38:10 +02:00
|
|
|
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()
|
2020-08-12 05:52:21 +02:00
|
|
|
->exists();
|
2020-07-23 13:20:05 +02:00
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
if ($invoice) {
|
2020-07-23 13:30:51 +02:00
|
|
|
return false;
|
2020-09-06 11:38:10 +02:00
|
|
|
}
|
2020-07-23 13:30:51 +02:00
|
|
|
|
|
|
|
return true;
|
2020-07-23 13:20:05 +02:00
|
|
|
}
|
|
|
|
}
|