|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
|
|
4
|
|
|
namespace talismanfr\geocode\entity; |
|
5
|
|
|
|
|
6
|
|
|
|
|
7
|
|
|
use yii\helpers\ArrayHelper; |
|
8
|
|
|
|
|
9
|
|
|
class Address |
|
10
|
|
|
{ |
|
11
|
|
|
/** @var string */ |
|
12
|
|
|
private $country_code; |
|
13
|
|
|
|
|
14
|
|
|
/** @var string */ |
|
15
|
|
|
private $formated; |
|
16
|
|
|
|
|
17
|
|
|
/** @var AddressComponent[][] */ |
|
18
|
|
|
private $components; |
|
19
|
|
|
|
|
20
|
|
|
/** |
|
21
|
|
|
* Address constructor. |
|
22
|
|
|
* @param string $country_code |
|
23
|
|
|
* @param string $formated |
|
24
|
|
|
* @param AddressComponent[][] $components |
|
25
|
|
|
*/ |
|
26
|
|
|
public function __construct(string $country_code, string $formated, array $components) |
|
27
|
|
|
{ |
|
28
|
|
|
$this->country_code = $country_code; |
|
29
|
|
|
$this->formated = $formated; |
|
30
|
|
|
$this->components = $components; |
|
31
|
|
|
} |
|
32
|
|
|
|
|
33
|
|
|
public static function fromState(array $state){ |
|
34
|
|
|
$components=[]; |
|
35
|
|
|
|
|
36
|
|
|
foreach (ArrayHelper::getValue($state,'Components') as $componentState){ |
|
37
|
|
|
$kind=ArrayHelper::getValue($componentState,'kind'); |
|
38
|
|
|
$name=ArrayHelper::getValue($componentState,'name'); |
|
39
|
|
|
|
|
40
|
|
|
$component=new AddressComponent($kind,$name); |
|
41
|
|
|
|
|
42
|
|
|
$components[$kind][]=$component; |
|
43
|
|
|
} |
|
44
|
|
|
|
|
45
|
|
|
$country_code=ArrayHelper::getValue($state,'country_code',''); |
|
46
|
|
|
$formatted=ArrayHelper::getValue($state,'formatted',''); |
|
47
|
|
|
|
|
48
|
|
|
return new self($country_code,$formatted,$components); |
|
49
|
|
|
} |
|
50
|
|
|
|
|
51
|
|
|
/** |
|
52
|
|
|
* @return string |
|
53
|
|
|
*/ |
|
54
|
|
|
public function getCountryCode(): string |
|
55
|
|
|
{ |
|
56
|
|
|
return $this->country_code; |
|
57
|
|
|
} |
|
58
|
|
|
|
|
59
|
|
|
/** |
|
60
|
|
|
* @return string |
|
61
|
|
|
*/ |
|
62
|
|
|
public function getFormated(): string |
|
63
|
|
|
{ |
|
64
|
|
|
return $this->formated; |
|
65
|
|
|
} |
|
66
|
|
|
|
|
67
|
|
|
/** |
|
68
|
|
|
* @return AddressComponent[][] |
|
69
|
|
|
*/ |
|
70
|
|
|
public function getComponents(): array |
|
71
|
|
|
{ |
|
72
|
|
|
return $this->components; |
|
73
|
|
|
} |
|
74
|
|
|
|
|
75
|
|
|
public function getKindName($kind){ |
|
76
|
|
|
if(isset($this->components[$kind])){ |
|
77
|
|
|
$component=$this->components[$kind][count($this->components[$kind])-1]; |
|
78
|
|
|
return $component->getName(); |
|
79
|
|
|
} |
|
80
|
|
|
|
|
81
|
|
|
return null; |
|
82
|
|
|
} |
|
83
|
|
|
|
|
84
|
|
|
|
|
85
|
|
|
} |