You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
159 lines
4.2 KiB
159 lines
4.2 KiB
1 year ago
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace Yansongda\Supports;
|
||
|
|
||
|
use Closure;
|
||
|
use Psr\Container\ContainerInterface;
|
||
|
|
||
|
/**
|
||
|
* This file mostly code come from illuminate/pipe and hyperf/utils,
|
||
|
* thanks provide such a useful class.
|
||
|
*/
|
||
|
class Pipeline
|
||
|
{
|
||
|
/**
|
||
|
* The container implementation.
|
||
|
*/
|
||
|
protected ContainerInterface $container;
|
||
|
|
||
|
/**
|
||
|
* The object being passed through the pipeline.
|
||
|
*
|
||
|
* @var mixed
|
||
|
*/
|
||
|
protected $passable;
|
||
|
|
||
|
/**
|
||
|
* The array of class pipes.
|
||
|
*/
|
||
|
protected array $pipes = [];
|
||
|
|
||
|
/**
|
||
|
* The method to call on each pipe.
|
||
|
*/
|
||
|
protected string $method = 'handle';
|
||
|
|
||
|
public function __construct(ContainerInterface $container)
|
||
|
{
|
||
|
$this->container = $container;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Set the object being sent through the pipeline.
|
||
|
*
|
||
|
* @param mixed $passable
|
||
|
*/
|
||
|
public function send($passable): self
|
||
|
{
|
||
|
$this->passable = $passable;
|
||
|
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Set the array of pipes.
|
||
|
*
|
||
|
* @param array|mixed $pipes
|
||
|
*/
|
||
|
public function through($pipes): self
|
||
|
{
|
||
|
$this->pipes = is_array($pipes) ? $pipes : func_get_args();
|
||
|
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Set the method to call on the pipes.
|
||
|
*/
|
||
|
public function via(string $method): self
|
||
|
{
|
||
|
$this->method = $method;
|
||
|
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Run the pipeline with a final destination callback.
|
||
|
*/
|
||
|
public function then(Closure $destination)
|
||
|
{
|
||
|
$pipeline = array_reduce(array_reverse($this->pipes), $this->carry(), $this->prepareDestination($destination));
|
||
|
|
||
|
return $pipeline($this->passable);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get the final piece of the Closure onion.
|
||
|
*/
|
||
|
protected function prepareDestination(Closure $destination): Closure
|
||
|
{
|
||
|
return static function ($passable) use ($destination) {
|
||
|
return $destination($passable);
|
||
|
};
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get a Closure that represents a slice of the application onion.
|
||
|
*/
|
||
|
protected function carry(): Closure
|
||
|
{
|
||
|
return function ($stack, $pipe) {
|
||
|
return function ($passable) use ($stack, $pipe) {
|
||
|
if (is_callable($pipe)) {
|
||
|
// If the pipe is an instance of a Closure, we will just call it directly but
|
||
|
// otherwise we'll resolve the pipes out of the container and call it with
|
||
|
// the appropriate method and arguments, returning the results back out.
|
||
|
return $pipe($passable, $stack);
|
||
|
}
|
||
|
if (!is_object($pipe)) {
|
||
|
[$name, $parameters] = $this->parsePipeString($pipe);
|
||
|
|
||
|
// If the pipe is a string we will parse the string and resolve the class out
|
||
|
// of the dependency injection container. We can then build a callable and
|
||
|
// execute the pipe function giving in the parameters that are required.
|
||
|
$pipe = $this->container->get($name);
|
||
|
|
||
|
$parameters = array_merge([$passable, $stack], $parameters);
|
||
|
} else {
|
||
|
// If the pipe is already an object we'll just make a callable and pass it to
|
||
|
// the pipe as-is. There is no need to do any extra parsing and formatting
|
||
|
// since the object we're given was already a fully instantiated object.
|
||
|
$parameters = [$passable, $stack];
|
||
|
}
|
||
|
|
||
|
$carry = method_exists($pipe, $this->method) ? $pipe->{$this->method}(...$parameters) : $pipe(...$parameters);
|
||
|
|
||
|
return $this->handleCarry($carry);
|
||
|
};
|
||
|
};
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Parse full pipe string to get name and parameters.
|
||
|
*/
|
||
|
protected function parsePipeString(string $pipe): array
|
||
|
{
|
||
|
[$name, $parameters] = array_pad(explode(':', $pipe, 2), 2, []);
|
||
|
|
||
|
if (is_string($parameters)) {
|
||
|
$parameters = explode(',', $parameters);
|
||
|
}
|
||
|
|
||
|
return [$name, $parameters];
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Handle the value returned from each pipe before passing it to the next.
|
||
|
*
|
||
|
* @param mixed $carry
|
||
|
*
|
||
|
* @return mixed
|
||
|
*/
|
||
|
protected function handleCarry($carry)
|
||
|
{
|
||
|
return $carry;
|
||
|
}
|
||
|
}
|