|
| 1 | +<?php //phpcs:disable Squiz.Commenting.FunctionComment.Missing |
| 2 | +/** |
| 3 | + * Dynamic_Filter class file. |
| 4 | + * |
| 5 | + * @package eXtended WordPress |
| 6 | + * @subpackage Dependency Injection |
| 7 | + */ |
| 8 | + |
| 9 | +namespace XWP\DI\Decorators; |
| 10 | + |
| 11 | +use Closure; |
| 12 | +use Reflector; |
| 13 | + |
| 14 | +/** |
| 15 | + * Dynamic filter decorator |
| 16 | + * |
| 17 | + * @template T of object |
| 18 | + * @template H of Ajax_Handler<T> |
| 19 | + * @extends Filter<T,H> |
| 20 | + */ |
| 21 | +#[\Attribute( \Attribute::TARGET_METHOD )] |
| 22 | +class Dynamic_Filter extends Filter { |
| 23 | + /** |
| 24 | + * Variables to fetch. |
| 25 | + * |
| 26 | + * @var array<string,string> |
| 27 | + */ |
| 28 | + protected array $vars; |
| 29 | + |
| 30 | + /** |
| 31 | + * Raw variables for substitution. |
| 32 | + * |
| 33 | + * @var string|array<string>|Closure():array<string> |
| 34 | + */ |
| 35 | + protected Closure|string|array $raw_vars; |
| 36 | + |
| 37 | + /** |
| 38 | + * Extra variables to pass to the callback. |
| 39 | + * |
| 40 | + * @var array<string,string> |
| 41 | + */ |
| 42 | + protected array $extra; |
| 43 | + |
| 44 | + /** |
| 45 | + * Constructor. |
| 46 | + * |
| 47 | + * @param string $tag Hook tag. |
| 48 | + * @param string|array<string>|callable():array<string> $vars Variables to mix into the tag. |
| 49 | + * @param int $context Hook context. |
| 50 | + * @param Closure|string|int|array{class-string,string} $priority Hook priority. |
| 51 | + * @param int|null $args The number of arguments to pass to the callback. |
| 52 | + * @param array<int,string> $params The parameters to pass to the callback. |
| 53 | + */ |
| 54 | + public function __construct( |
| 55 | + string $tag, |
| 56 | + callable|array|string $vars, |
| 57 | + int $context = self::CTX_GLOBAL, |
| 58 | + Closure|array|int|string $priority = 10, |
| 59 | + ?int $args = null, |
| 60 | + array $params = array(), |
| 61 | + ) { |
| 62 | + $this->raw_vars = $vars; |
| 63 | + |
| 64 | + parent::__construct( |
| 65 | + tag: $tag, |
| 66 | + priority: $priority, |
| 67 | + context: $context, |
| 68 | + invoke: self::INV_PROXIED, |
| 69 | + args: $args, |
| 70 | + params: $params, |
| 71 | + ); |
| 72 | + } |
| 73 | + |
| 74 | + /** |
| 75 | + * Process variables. |
| 76 | + * |
| 77 | + * @param string|array<string>|callable():array<string> $vars Variables to mix into the tag. |
| 78 | + * @return array<int,string>|array<string,string> |
| 79 | + */ |
| 80 | + private function process_vars( string|callable|array $vars ): array { |
| 81 | + if ( \is_callable( $vars ) ) { |
| 82 | + return $vars(); |
| 83 | + } |
| 84 | + |
| 85 | + if ( \is_string( $vars ) && $this->container->has( $vars ) ) { |
| 86 | + return $this->container->get( $vars ); |
| 87 | + } |
| 88 | + |
| 89 | + return $vars; |
| 90 | + } |
| 91 | + |
| 92 | + /** |
| 93 | + * Parse variables. |
| 94 | + * |
| 95 | + * @param string|array<string>|callable():array<string> $vars Variables to mix into the tag. |
| 96 | + * @return array<string,string> |
| 97 | + */ |
| 98 | + protected function parse_vars( string|callable|array $vars ): array { |
| 99 | + $parsed = array(); |
| 100 | + |
| 101 | + foreach ( $this->process_vars( $vars ) as $key => $val ) { |
| 102 | + $key = \is_int( $key ) ? $val : $key; |
| 103 | + |
| 104 | + $parsed[ $key ] = $val; |
| 105 | + } |
| 106 | + |
| 107 | + return $parsed; |
| 108 | + } |
| 109 | + |
| 110 | + public function with_reflector( Reflector $r ): static { |
| 111 | + $this->args ??= $r->getNumberOfParameters() - 1; |
| 112 | + |
| 113 | + return parent::with_reflector( $r ); |
| 114 | + } |
| 115 | + |
| 116 | + public function load_hook( ?string $tag = null ): bool { |
| 117 | + $res = true; |
| 118 | + |
| 119 | + foreach ( $this->parse_vars( $this->raw_vars ) as $var => $param ) { |
| 120 | + $tag = $this->define_tag( $this->tag, array( $var ) ); |
| 121 | + |
| 122 | + $this->extra[ $tag ] = $param; |
| 123 | + |
| 124 | + $res = $res && parent::load_hook( $tag ); |
| 125 | + } |
| 126 | + |
| 127 | + return $res; |
| 128 | + } |
| 129 | + |
| 130 | + protected function get_cb_args( array $args ): array { |
| 131 | + $args = parent::get_cb_args( $args ); |
| 132 | + |
| 133 | + $args[] = $this->extra[ $this->current() ]; |
| 134 | + |
| 135 | + return $args; |
| 136 | + } |
| 137 | +} |
0 commit comments