| Server IP : 54.233.248.239 / Your IP : 172.28.20.13 Web Server : Apache System : Linux ip-172-28-29-189 6.5.0-1014-aws #14~22.04.1-Ubuntu SMP Thu Feb 15 15:27:06 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.2.34-43+ubuntu22.04.1+deb.sury.org+1 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/vinumday2_0/vendor/cartalyst/support/src/ |
Upload File : |
<?php
/**
* Part of the Support package.
*
* NOTICE OF LICENSE
*
* Licensed under the 3-clause BSD License.
*
* This source file is subject to the 3-clause BSD License that is
* bundled with this package in the LICENSE file.
*
* @package Support
* @version 2.0.1
* @author Cartalyst LLC
* @license BSD License (3-clause)
* @copyright (c) 2011-2017, Cartalyst LLC
* @link http://cartalyst.com
*/
namespace Cartalyst\Support;
use Illuminate\Validation\Factory;
use Cartalyst\Support\Traits\ValidatorTrait;
use Cartalyst\Support\Contracts\ValidatorInterface;
abstract class Validator implements ValidatorInterface
{
/**
* The registered scenario.
*
* @var array
*/
protected $scenario = [];
/**
* The registered bindings
*
* @var array
*/
protected $bindings = [];
/**
* The validation rules.
*
* @var array
*/
protected $rules = [];
/**
* The validation messages.
*
* @var array
*/
protected $messages = [];
/**
* The validation customAttributes.
*
* @var array
*/
protected $customAttributes = [];
/**
* Flag that indicates if we should bypass the validation.
*
* @var bool
*/
protected $bypass = false;
/**
* Constructor.
*
* @param \Illuminate\Validation\Factory $factory
*/
public function __construct(Factory $factory)
{
$this->factory = $factory;
}
/**
* {@inheritDoc}
*/
public function getRules()
{
return $this->rules;
}
/**
* {@inheritDoc}
*/
public function setRules(array $rules)
{
$this->rules = $rules;
return $this;
}
/**
* {@inheritDoc}
*/
public function getMessages()
{
return $this->messages;
}
/**
* {@inheritDoc}
*/
public function setMessages(array $messages)
{
$this->messages = $messages;
return $this;
}
/**
* {@inheritDoc}
*/
public function getCustomAttributes()
{
return $this->customAttributes;
}
/**
* {@inheritDoc}
*/
public function setCustomAttributes(array $customAttributes)
{
$this->customAttributes = $customAttributes;
return $this;
}
/**
* {@inheritDoc}
*/
public function on($scenario, array $arguments = [])
{
return $this->onScenario($scenario, $arguments);
}
/**
* {@inheritDoc}
*/
public function onScenario($scenario, array $arguments = [])
{
$method = 'on'.ucfirst($scenario);
$this->scenario = [
'on' => method_exists($this, $method) ? $method : null,
'arguments' => $arguments,
];
return $this;
}
/**
* {@inheritDoc}
*/
public function bind(array $bindings)
{
return $this->registerBindings($bindings);
}
/**
* {@inheritDoc}
*/
public function registerBindings(array $bindings)
{
$this->bindings = array_merge($this->bindings, $bindings);
return $this;
}
/**
* {@inheritDoc}
*/
public function validate(array $data)
{
return $this->executeValidation($data);
}
/**
* {@inheritDoc}
*/
public function bypass($status = true)
{
$this->bypass = (bool) $status;
return $this;
}
/**
* Executes the data validation against the service rules.
*
* @param array $data
* @return \Illuminate\Contracts\Validation\Validator
*/
protected function executeValidation(array $data)
{
if ($method = array_get($this->scenario, 'on')) {
call_user_func_array([$this, $method], $this->scenario['arguments']);
}
$rules = $this->getBoundRules();
$messages = $this->getMessages();
$customAttributes = $this->getCustomAttributes();
$validator = $this->factory->make($data, $rules, $messages, $customAttributes);
return $validator->errors();
}
/**
* Returns the rules already binded.
*
* @return array
*/
protected function getBoundRules()
{
if ($this->bypass === true) {
return [];
}
$rules = $this->getRules();
foreach ($rules as $key => $value) {
if ($binding = array_get($this->bindings, $key)) {
$rules[$key] = str_replace('{'.$key.'}', $binding, $value);
}
}
return $rules;
}
}