2019-10-10 03:01:38 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-10-10 03:01:38 +02: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)
|
2019-10-10 03:01:38 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2019-10-10 03:01:38 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\ValidationRules;
|
|
|
|
|
2019-10-10 04:24:19 +02:00
|
|
|
use App\Utils\Traits\SettingsSaver;
|
2019-10-10 03:01:38 +02:00
|
|
|
use Illuminate\Contracts\Validation\Rule;
|
|
|
|
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Class ValidSettingsRule.
|
2019-10-10 03:01:38 +02:00
|
|
|
*/
|
|
|
|
class ValidSettingsRule implements Rule
|
|
|
|
{
|
2019-10-10 04:24:19 +02:00
|
|
|
use SettingsSaver;
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2019-10-10 03:01:38 +02:00
|
|
|
/**
|
|
|
|
* @param string $attribute
|
|
|
|
* @param mixed $value
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public $return_data;
|
|
|
|
|
|
|
|
public function passes($attribute, $value)
|
|
|
|
{
|
|
|
|
$data = $this->validateSettings($value);
|
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
if (is_array($data)) {
|
2019-10-10 03:01:38 +02:00
|
|
|
$this->return_data = $data;
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2019-10-10 03:01:38 +02:00
|
|
|
return false;
|
2019-12-30 22:59:12 +01:00
|
|
|
} else {
|
2019-10-10 03:01:38 +02:00
|
|
|
return true;
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|
2019-10-10 03:01:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function message()
|
|
|
|
{
|
2020-09-06 11:38:10 +02:00
|
|
|
return $this->return_data[0].' is not a valid '.$this->return_data[1].' ( '.$this->return_data[2].' )';
|
2019-10-10 03:01:38 +02:00
|
|
|
}
|
|
|
|
}
|