2020-01-09 21:15:10 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2020-01-09 21:15:10 +01:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-01-09 21:15:10 +01:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-01-09 21:15:10 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\ValidationRules;
|
|
|
|
|
|
|
|
use App\Models\Credit;
|
2020-02-01 21:45:23 +01:00
|
|
|
use App\Utils\Traits\MakesHash;
|
2020-01-09 21:15:10 +01:00
|
|
|
use Illuminate\Contracts\Validation\Rule;
|
|
|
|
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Class ValidCreditsPresentRule.
|
2020-01-09 21:15:10 +01:00
|
|
|
*/
|
|
|
|
class ValidCreditsPresentRule implements Rule
|
|
|
|
{
|
2020-02-01 21:45:23 +01:00
|
|
|
use MakesHash;
|
2020-01-09 21:15:10 +01:00
|
|
|
|
2022-08-22 07:05:02 +02:00
|
|
|
private $input;
|
|
|
|
|
|
|
|
public function __construct($input)
|
|
|
|
{
|
|
|
|
$this->input = $input;
|
|
|
|
}
|
|
|
|
|
2020-01-09 21:15:10 +01:00
|
|
|
/**
|
|
|
|
* @param string $attribute
|
|
|
|
* @param mixed $value
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function passes($attribute, $value)
|
|
|
|
{
|
2020-03-21 06:37:30 +01:00
|
|
|
return $this->validCreditsPresent();
|
2020-01-09 21:15:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function message()
|
|
|
|
{
|
2021-01-24 12:48:09 +01:00
|
|
|
return ctrans('texts.insufficient_credit_balance');
|
2020-01-09 21:15:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
private function validCreditsPresent() :bool
|
|
|
|
{
|
2020-03-21 06:37:30 +01:00
|
|
|
//todo need to ensure the clients credits are here not random ones!
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2022-08-22 07:05:02 +02:00
|
|
|
if (array_key_exists('credits', $this->input) && is_array($this->input['credits']) && count($this->input['credits']) > 0) {
|
2023-08-06 09:03:12 +02:00
|
|
|
$credit_collection = Credit::query()->whereIn('id', array_column($this->input['credits'], 'credit_id'))->count();
|
2020-11-11 01:13:39 +01:00
|
|
|
|
2022-08-22 07:05:02 +02:00
|
|
|
return $credit_collection == count($this->input['credits']);
|
2020-01-09 21:15:10 +01:00
|
|
|
}
|
|
|
|
|
2020-11-11 01:13:39 +01:00
|
|
|
return true;
|
2020-01-09 21:15:10 +01:00
|
|
|
}
|
|
|
|
}
|