mirror of
https://github.com/torrentpier/torrentpier-lts.git
synced 2025-03-01 15:21:02 +03:00
189 lines
3.8 KiB
PHP
189 lines
3.8 KiB
PHP
<?php
|
|
/**
|
|
* Zend Framework (http://framework.zend.com/)
|
|
*
|
|
* @link http://github.com/zendframework/zf2 for the canonical source repository
|
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
|
*/
|
|
|
|
namespace Zend\Server\Method;
|
|
|
|
use Zend\Server;
|
|
|
|
/**
|
|
* Method callback metadata
|
|
*/
|
|
class Callback
|
|
{
|
|
/**
|
|
* @var string Class name for class method callback
|
|
*/
|
|
protected $class;
|
|
|
|
/**
|
|
* @var string Function name for function callback
|
|
*/
|
|
protected $function;
|
|
|
|
/**
|
|
* @var string Method name for class method callback
|
|
*/
|
|
protected $method;
|
|
|
|
/**
|
|
* @var string Callback type
|
|
*/
|
|
protected $type;
|
|
|
|
/**
|
|
* @var array Valid callback types
|
|
*/
|
|
protected $types = array('function', 'static', 'instance');
|
|
|
|
/**
|
|
* Constructor
|
|
*
|
|
* @param null|array $options
|
|
*/
|
|
public function __construct($options = null)
|
|
{
|
|
if ((null !== $options) && is_array($options)) {
|
|
$this->setOptions($options);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Set object state from array of options
|
|
*
|
|
* @param array $options
|
|
* @return \Zend\Server\Method\Callback
|
|
*/
|
|
public function setOptions(array $options)
|
|
{
|
|
foreach ($options as $key => $value) {
|
|
$method = 'set' . ucfirst($key);
|
|
if (method_exists($this, $method)) {
|
|
$this->$method($value);
|
|
}
|
|
}
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Set callback class
|
|
*
|
|
* @param string $class
|
|
* @return \Zend\Server\Method\Callback
|
|
*/
|
|
public function setClass($class)
|
|
{
|
|
if (is_object($class)) {
|
|
$class = get_class($class);
|
|
}
|
|
$this->class = $class;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get callback class
|
|
*
|
|
* @return string|null
|
|
*/
|
|
public function getClass()
|
|
{
|
|
return $this->class;
|
|
}
|
|
|
|
/**
|
|
* Set callback function
|
|
*
|
|
* @param string $function
|
|
* @return \Zend\Server\Method\Callback
|
|
*/
|
|
public function setFunction($function)
|
|
{
|
|
$this->function = (string) $function;
|
|
$this->setType('function');
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get callback function
|
|
*
|
|
* @return null|string
|
|
*/
|
|
public function getFunction()
|
|
{
|
|
return $this->function;
|
|
}
|
|
|
|
/**
|
|
* Set callback class method
|
|
*
|
|
* @param string $method
|
|
* @return \Zend\Server\Method\Callback
|
|
*/
|
|
public function setMethod($method)
|
|
{
|
|
$this->method = $method;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get callback class method
|
|
*
|
|
* @return null|string
|
|
*/
|
|
public function getMethod()
|
|
{
|
|
return $this->method;
|
|
}
|
|
|
|
/**
|
|
* Set callback type
|
|
*
|
|
* @param string $type
|
|
* @return Callback
|
|
* @throws Server\Exception\InvalidArgumentException
|
|
*/
|
|
public function setType($type)
|
|
{
|
|
if (!in_array($type, $this->types)) {
|
|
throw new Server\Exception\InvalidArgumentException('Invalid method callback type "' . $type . '" passed to ' . __CLASS__ . '::' . __METHOD__);
|
|
}
|
|
$this->type = $type;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get callback type
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getType()
|
|
{
|
|
return $this->type;
|
|
}
|
|
|
|
/**
|
|
* Cast callback to array
|
|
*
|
|
* @return array
|
|
*/
|
|
public function toArray()
|
|
{
|
|
$type = $this->getType();
|
|
$array = array(
|
|
'type' => $type,
|
|
);
|
|
if ('function' == $type) {
|
|
$array['function'] = $this->getFunction();
|
|
} else {
|
|
$array['class'] = $this->getClass();
|
|
$array['method'] = $this->getMethod();
|
|
}
|
|
return $array;
|
|
}
|
|
}
|