Mapping.php
1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?php
namespace ACP\Search\Middleware;
abstract class Mapping
{
public const RESPONSE = 'response';
public const REQUEST = 'request';
/**
* @var string
*/
protected $direction;
/**
* @var array
*/
protected $properties;
public function __construct(string $direction = null)
{
if ($direction !== self::REQUEST) {
$direction = self::RESPONSE;
}
$this->direction = $direction;
$this->properties = $this->apply_direction(
$this->get_properties()
);
}
protected function apply_direction(array $array): array
{
if ($this->direction === self::REQUEST) {
$array = array_flip($array);
}
return $array;
}
/**
* Return array of properties with the response side first
*/
abstract protected function get_properties(): array;
/**
* Get a property
*
* @param string $key
*
* @return false|string
*/
public function __get($key)
{
return $this->properties[$key] ?? false;
}
}