2020-08-13 08:15:46 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Credit Ninja (https://creditninja.com).
|
2020-08-13 08:15:46 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/creditninja/creditninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Credit Ninja LLC (https://creditninja.com)
|
2020-08-13 08:15:46 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\ValidationRules\Credit;
|
|
|
|
|
|
|
|
use App\Models\Credit;
|
|
|
|
use Illuminate\Contracts\Validation\Rule;
|
|
|
|
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Class UniqueCreditNumberRule.
|
2020-08-13 08:15:46 +02:00
|
|
|
*/
|
|
|
|
class UniqueCreditNumberRule implements Rule
|
|
|
|
{
|
|
|
|
public $input;
|
|
|
|
|
|
|
|
public function __construct($input)
|
|
|
|
{
|
|
|
|
$this->input = $input;
|
|
|
|
}
|
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
/**
|
2020-08-13 08:15:46 +02:00
|
|
|
* @param string $attribute
|
|
|
|
* @param mixed $value
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function passes($attribute, $value)
|
|
|
|
{
|
|
|
|
return $this->checkIfCreditNumberUnique(); //if it exists, return false!
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function message()
|
|
|
|
{
|
2021-01-24 12:48:09 +01:00
|
|
|
return ctrans('texts.credit_number_taken');
|
2020-08-13 08:15:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
private function checkIfCreditNumberUnique() : bool
|
|
|
|
{
|
|
|
|
$credit = Credit::where('client_id', $this->input['client_id'])
|
|
|
|
->where('number', $this->input['number'])
|
|
|
|
->withTrashed()
|
|
|
|
->exists();
|
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
if ($credit) {
|
2020-08-13 08:15:46 +02:00
|
|
|
return false;
|
2020-09-06 11:38:10 +02:00
|
|
|
}
|
2020-08-13 08:15:46 +02:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|