123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- <?php
- declare(strict_types=1);
- /**
- * This file is part of Hyperf.
- *
- * @link https://www.hyperf.io
- * @document https://hyperf.wiki
- * @contact group@hyperf.io
- * @license https://github.com/hyperf/hyperf/blob/master/LICENSE
- */
- namespace Hyperf\Conditionable;
- class HigherOrderWhenProxy
- {
- /**
- * The target being conditionally operated on.
- *
- * @var mixed
- */
- protected $target;
- /**
- * The condition for proxying.
- *
- * @var bool
- */
- protected $condition;
- /**
- * Indicates whether the proxy has a condition.
- *
- * @var bool
- */
- protected $hasCondition = false;
- /**
- * Determine whether the condition should be negated.
- *
- * @var bool
- */
- protected $negateConditionOnCapture;
- /**
- * Create a new proxy instance.
- *
- * @param mixed $target
- */
- public function __construct($target)
- {
- $this->target = $target;
- }
- /**
- * Proxy accessing an attribute onto the target.
- *
- * @param string $key
- * @return mixed
- */
- public function __get($key)
- {
- if (! $this->hasCondition) {
- $condition = $this->target->{$key};
- return $this->condition($this->negateConditionOnCapture ? ! $condition : $condition);
- }
- return $this->condition
- ? $this->target->{$key}
- : $this->target;
- }
- /**
- * Proxy a method call on the target.
- *
- * @param string $method
- * @param array $parameters
- * @return mixed
- */
- public function __call($method, $parameters)
- {
- if (! $this->hasCondition) {
- $condition = $this->target->{$method}(...$parameters);
- return $this->condition($this->negateConditionOnCapture ? ! $condition : $condition);
- }
- return $this->condition
- ? $this->target->{$method}(...$parameters)
- : $this->target;
- }
- /**
- * Set the condition on the proxy.
- *
- * @param bool $condition
- * @return $this
- */
- public function condition($condition)
- {
- [$this->condition, $this->hasCondition] = [$condition, true];
- return $this;
- }
- /**
- * Indicate that the condition should be negated.
- *
- * @return $this
- */
- public function negateConditionOnCapture()
- {
- $this->negateConditionOnCapture = true;
- return $this;
- }
- }
|