1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/** |
4
|
|
|
* This file is part of RussianPost SDK package. |
5
|
|
|
* |
6
|
|
|
* © Appwilio (http://appwilio.com), JhaoDa (https://github.com/jhaoda) |
7
|
|
|
* |
8
|
|
|
* For the full copyright and license information, please view the LICENSE |
9
|
|
|
* file that was distributed with this source code. |
10
|
|
|
*/ |
11
|
|
|
|
12
|
|
|
declare(strict_types=1); |
13
|
|
|
|
14
|
|
|
namespace Appwilio\RussianPostSDK\Dispatching\Endpoints\PostOffices\Requests; |
15
|
|
|
|
16
|
|
|
use Appwilio\RussianPostSDK\Dispatching\Contracts\Arrayable; |
17
|
|
|
use Appwilio\RussianPostSDK\Dispatching\Endpoints\PostOffices\Responses\Coordinates; |
18
|
|
|
|
19
|
|
|
final class FindByCoordinatesRequest implements Arrayable |
20
|
|
|
{ |
21
|
|
|
public const ALL = 'ALL'; |
22
|
|
|
public const ROUND_THE_CLOCK = 'ROUND_THE_CLOCK'; |
23
|
|
|
public const WORK_ON_WEEKENDS = 'WORK_ON_WEEKENDS'; |
24
|
|
|
public const CURRENTLY_WORKING = 'CURRENTLY_WORKING'; |
25
|
|
|
|
26
|
|
|
private const AVAILABLE_FILTERS = [ |
27
|
|
|
self::ROUND_THE_CLOCK, |
28
|
|
|
self::WORK_ON_WEEKENDS, |
29
|
|
|
self::CURRENTLY_WORKING, |
30
|
|
|
]; |
31
|
|
|
|
32
|
|
|
/** @var array */ |
33
|
|
|
private $data; |
34
|
|
|
|
35
|
|
|
public static function fromCoordinates(Coordinates $coordinates) |
36
|
|
|
{ |
37
|
|
|
return new self($coordinates, null, null); |
38
|
|
|
} |
39
|
|
|
|
40
|
|
|
public static function fromYandexData(string $yandexAddress, string $yandexGeo) |
41
|
|
|
{ |
42
|
|
|
return new self(null, $yandexAddress, $yandexGeo); |
43
|
|
|
} |
44
|
|
|
|
45
|
|
|
public function __construct(...$args) |
46
|
|
|
{ |
47
|
|
|
[$coordinates, $yAddress, $yGeo] = $args; |
48
|
|
|
|
49
|
|
|
if ($coordinates instanceof Coordinates && \count($args) === 1) { |
50
|
|
|
$this->data = $coordinates->toArray(); |
51
|
|
|
} else if ($coordinates === null && \is_string($yAddress) && \is_string($yGeo)) { |
52
|
|
|
$this->data = [ |
53
|
|
|
'geo-object' => $yGeo, |
54
|
|
|
'yandex-address' => $yAddress, |
55
|
|
|
]; |
56
|
|
|
} else { |
57
|
|
|
throw new \InvalidArgumentException( |
58
|
|
|
'Используйте для создания запроса методы "fromCoordinates" или "fromYandexData".' |
59
|
|
|
); |
60
|
|
|
} |
61
|
|
|
|
62
|
|
|
$this->data['filter'] = self::ALL; |
63
|
|
|
} |
64
|
|
|
|
65
|
|
|
public function filterByWorkingTime(string $value) |
66
|
|
|
{ |
67
|
|
|
if (\in_array($value, self::AVAILABLE_FILTERS)) { |
68
|
|
|
$this->data['filter'] = self::ALL; |
69
|
|
|
|
70
|
|
|
return $this; |
71
|
|
|
} |
72
|
|
|
|
73
|
|
|
throw new \InvalidArgumentException(); |
74
|
|
|
} |
75
|
|
|
|
76
|
|
|
public function filterByType(bool $value = true) |
77
|
|
|
{ |
78
|
|
|
$this->data['filter-by-office-type'] = $value; |
79
|
|
|
|
80
|
|
|
return $this; |
81
|
|
|
} |
82
|
|
|
|
83
|
|
|
public function onDateTime(\DateTimeInterface $dateTime) |
84
|
|
|
{ |
85
|
|
|
$this->data['current-date-time'] = $dateTime->format('Y-m-dTH:m:s'); |
86
|
|
|
|
87
|
|
|
return $this; |
88
|
|
|
} |
89
|
|
|
|
90
|
|
|
public function radius(int $radius) |
91
|
|
|
{ |
92
|
|
|
$this->data['radius'] = $radius; |
93
|
|
|
|
94
|
|
|
return $this; |
95
|
|
|
} |
96
|
|
|
|
97
|
|
|
public function hidePrivate(bool $hidePrivate = true) |
98
|
|
|
{ |
99
|
|
|
$this->data['hide-private'] = $hidePrivate; |
100
|
|
|
|
101
|
|
|
return $this; |
102
|
|
|
} |
103
|
|
|
|
104
|
|
|
public function take(int $value = 3) |
105
|
|
|
{ |
106
|
|
|
$this->data['top'] = $value; |
107
|
|
|
|
108
|
|
|
return $this; |
109
|
|
|
} |
110
|
|
|
|
111
|
|
|
public function toArray(): array |
112
|
|
|
{ |
113
|
|
|
return $this->data; |
114
|
|
|
} |
115
|
|
|
} |
116
|
|
|
|