Mapping.php
1.09 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
60
61
62
63
64
65
66
67
68
<?php
namespace ACP\Search\Middleware;
abstract class Mapping {
const RESPONSE = 'response';
const REQUEST = 'request';
/**
* @var string
*/
protected $direction;
/**
* @var array
*/
protected $properties;
/**
* @param string|null $direction
*/
public function __construct( $direction = null ) {
if ( null === $direction || $direction !== self::REQUEST ) {
$direction = self::RESPONSE;
}
$this->direction = $direction;
$this->properties = $this->apply_direction(
$this->get_properties()
);
}
/**
* @param array $array
*
* @return array
*/
protected function apply_direction( array $array ) {
if ( $this->direction === self::REQUEST ) {
$array = array_flip( $array );
}
return $array;
}
/**
* Return array of properties with the response side first
* @return array
*/
abstract protected function get_properties();
/**
* Get a property
*
* @param string $key
*
* @return false|string
*/
public function __get( $key ) {
if ( ! isset( $this->properties[ $key ] ) ) {
return false;
}
return $this->properties[ $key ];
}
}