| 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/dingo/api/src/Routing/ |
Upload File : |
<?php
namespace Dingo\Api\Routing;
use ErrorException;
use Dingo\Api\Auth\Auth;
use Dingo\Api\Dispatcher;
use Dingo\Api\Http\Response\Factory;
/**
* @property \Dingo\Api\Dispatcher $api
* @property \Illuminate\Auth\GenericUser|\Illuminate\Database\Eloquent\Model $user
* @property \Dingo\Api\Auth\Auth $auth
* @property \Dingo\Api\Http\Response\Factory $response
*/
trait Helpers
{
/**
* Controller scopes.
*
* @var array
*/
protected $scopes = [];
/**
* Controller authentication providers.
*
* @var array
*/
protected $authenticationProviders = [];
/**
* Controller rate limit and expiration.
*
* @var array
*/
protected $rateLimit = [];
/**
* Controller rate limit throttles.
*
* @var array
*/
protected $throttles = [];
/**
* Throttles for controller methods.
*
* @param string|\Dingo\Api\Contract\Http\RateLimit\Throttle $class
* @param array $options
*
* @return void
*/
protected function throttle($class, array $options = [])
{
$this->throttles[] = compact('class', 'options');
}
/**
* Rate limit controller methods.
*
* @param int $limit
* @param int $expires
* @param array $options
*
* @return void
*/
protected function rateLimit($limit, $expires, array $options = [])
{
$this->rateLimit[] = compact('limit', 'expires', 'options');
}
/**
* Add scopes to controller methods.
*
* @param string|array $scopes
* @param array $options
*
* @return void
*/
protected function scopes($scopes, array $options = [])
{
$scopes = $this->getPropertyValue($scopes);
$this->scopes[] = compact('scopes', 'options');
}
/**
* Authenticate with certain providers on controller methods.
*
* @param string|array $providers
* @param array $options
*
* @return void
*/
protected function authenticateWith($providers, array $options = [])
{
$providers = $this->getPropertyValue($providers);
$this->authenticationProviders[] = compact('providers', 'options');
}
/**
* Prepare a property value.
*
* @param string|array $value
*
* @return array
*/
protected function getPropertyValue($value)
{
return is_string($value) ? explode('|', $value) : $value;
}
/**
* Get the controllers rate limiting throttles.
*
* @return array
*/
public function getThrottles()
{
return $this->throttles;
}
/**
* Get the controllers rate limit and expiration.
*
* @return array
*/
public function getRateLimit()
{
return $this->rateLimit;
}
/**
* Get the controllers scopes.
*
* @return array
*/
public function getScopes()
{
return $this->scopes;
}
/**
* Get the controllers authentication providers.
*
* @return array
*/
public function getAuthenticationProviders()
{
return $this->authenticationProviders;
}
/**
* Get the internal dispatcher instance.
*
* @return \Dingo\Api\Dispatcher
*/
public function api()
{
return app(Dispatcher::class);
}
/**
* Get the authenticated user.
*
* @return mixed
*/
protected function user()
{
return app(Auth::class)->user();
}
/**
* Get the auth instance.
*
* @return \Dingo\Api\Auth\Auth
*/
protected function auth()
{
return app(Auth::class);
}
/**
* Get the response factory instance.
*
* @return \Dingo\Api\Http\Response\Factory
*/
protected function response()
{
return app(Factory::class);
}
/**
* Magically handle calls to certain properties.
*
* @param string $key
*
* @throws \ErrorException
*
* @return mixed
*/
public function __get($key)
{
$callable = [
'api', 'user', 'auth', 'response',
];
if (in_array($key, $callable) && method_exists($this, $key)) {
return $this->$key();
}
throw new ErrorException('Undefined property '.get_class($this).'::'.$key);
}
/**
* Magically handle calls to certain methods on the response factory.
*
* @param string $method
* @param array $parameters
*
* @throws \ErrorException
*
* @return \Dingo\Api\Http\Response
*/
public function __call($method, $parameters)
{
if (method_exists($this->response(), $method) || $method == 'array') {
return call_user_func_array([$this->response(), $method], $parameters);
}
throw new ErrorException('Undefined method '.get_class($this).'::'.$method);
}
}