APIRequest.php
3.01 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<?php
namespace App\Service\Requests;
use App\Models\Tokens;
use App\Service\API\API;
use Ramsey\Collection\Collection;
class APIRequest implements \App\Service\Contract\APIRequest
{
protected $api;
protected $service;
protected $method;
protected $params;
protected $token;
protected function __construct($api)
{
$this->api = $api;
}
static function getInstance($type)
{
switch ($type) {
case API::YANDEX:
return new DirectRequest($type);
default:
null;
}
}
function getApi(): string
{
return $this->api;
}
function setService(string $service)
{
$this->service = $service;
return $this;
}
function getService()
{
return $this->service;
}
function setMethod(string $method)
{
$this->method = $method;
return $this;
}
function getMethod()
{
return $this->method;
}
function setParams(array $params)
{
$this->params = $params;
return $this;
}
function getParams()
{
return $this->params;
}
function setToken(Tokens $token)
{
$this->token = $token;
return $this;
}
function getToken(): Tokens
{
return $this->token;
}
function sliceByKey($maxObjects, $key): ?\App\Service\Contract\APIRequest
{
$params = $this->getParams();
$replication = clone $this;
if (!is_array($key)) {
$key = [$key];
}
$replication->setParams($this->changeInArray($params, $key, $maxObjects));
$this->setParams($this->changeInArray($params, $key, 0, $maxObjects));
return $replication;
}
private function changeInArray($params, $key, $offset, $maxObjects = null)
{
$params_i = &$params;
for ($i = 0; $i < count($key); $i++) {
$params_i = &$params_i[$key[$i]];
}
$objects = $this->sliceArray($params_i, $offset, $maxObjects);
$params_i = $objects;
return $params;
}
private function sliceArray($params, $offset, $length = null): array
{
return array_values(array_slice($params, $offset, $length));
}
function slice($count): ?\App\Service\Contract\APIRequest
{
throw new \Exception('Я не знаю формата запрсов, чтобы его разбить');
}
function next($count)
{
throw new \Exception('Я не знаю формата запрсов, чтобы его разбить');
}
function call($params = null)
{
}
function handle($response)
{
}
function getObjectsCount()
{
throw new \Exception('Не задано сколько объектов обрабатывается');
}
function getMaxCount()
{
throw new \Exception('Не задано сколько максимум объектов необходимо обработатывать');
}
}