1
|
|
|
<?php |
2
|
|
|
/** |
3
|
|
|
* FlexiPeeHP - Třída pro práci s FlexiBee. |
4
|
|
|
* |
5
|
|
|
* @author Vítězslav Dvořák <[email protected]> |
6
|
|
|
* @copyright (C) 2015,2016 Spoje.Net |
7
|
|
|
*/ |
8
|
|
|
|
9
|
|
|
namespace FlexiPeeHP; |
10
|
|
|
|
11
|
|
|
class FlexiBee extends \Ease\Brick |
12
|
|
|
{ |
13
|
|
|
/** |
14
|
|
|
* Základní namespace pro komunikaci s FlexiBEE. |
15
|
|
|
* |
16
|
|
|
* @var string Jmený prostor datového bloku odpovědi |
17
|
|
|
*/ |
18
|
|
|
public $nameSpace = 'winstrom'; |
19
|
|
|
|
20
|
|
|
/** |
21
|
|
|
* Datový blok v poli odpovědi. |
22
|
|
|
* |
23
|
|
|
* @var string |
24
|
|
|
*/ |
25
|
|
|
public $resultField = 'results'; |
26
|
|
|
|
27
|
|
|
/** |
28
|
|
|
* Verze protokolu použitého pro komunikaci. |
29
|
|
|
* |
30
|
|
|
* @var string Verze použitého API |
31
|
|
|
*/ |
32
|
|
|
public $protoVersion = '1.0'; |
33
|
|
|
|
34
|
|
|
/** |
35
|
|
|
* Evidence užitá objektem. |
36
|
|
|
* |
37
|
|
|
* @var string |
38
|
|
|
*/ |
39
|
|
|
public $evidence = null; |
40
|
|
|
|
41
|
|
|
/** |
42
|
|
|
* Výchozí formát pro komunikaci. |
43
|
|
|
* |
44
|
|
|
* @link https://www.flexibee.eu/api/dokumentace/ref/format-types Přehled možných formátů |
45
|
|
|
* |
46
|
|
|
* @var string json|xml|... |
47
|
|
|
*/ |
48
|
|
|
public $format = 'json'; |
49
|
|
|
|
50
|
|
|
/** |
51
|
|
|
* Curl Handle. |
52
|
|
|
* |
53
|
|
|
* @var resource |
54
|
|
|
*/ |
55
|
|
|
public $curl = null; |
56
|
|
|
|
57
|
|
|
/** |
58
|
|
|
* @var type |
59
|
|
|
*/ |
60
|
|
|
public $company = FLEXIBEE_COMPANY; |
61
|
|
|
|
62
|
|
|
/** |
63
|
|
|
* @var string |
64
|
|
|
*/ |
65
|
|
|
public $url = FLEXIBEE_URL; |
66
|
|
|
|
67
|
|
|
/** |
68
|
|
|
* @var string |
69
|
|
|
*/ |
70
|
|
|
public $user = FLEXIBEE_LOGIN; |
71
|
|
|
|
72
|
|
|
/** |
73
|
|
|
* @var string |
74
|
|
|
*/ |
75
|
|
|
public $password = FLEXIBEE_PASSWORD; |
76
|
|
|
|
77
|
|
|
/** |
78
|
|
|
* Identifikační řetězec. |
79
|
|
|
* |
80
|
|
|
* @var string |
81
|
|
|
*/ |
82
|
|
|
public $init = null; |
83
|
|
|
|
84
|
|
|
/** |
85
|
|
|
* Sloupeček s názvem. |
86
|
|
|
* |
87
|
|
|
* @var string |
88
|
|
|
*/ |
89
|
|
|
public $nameColumn = 'nazev'; |
90
|
|
|
|
91
|
|
|
/** |
92
|
|
|
* Sloupeček obsahující datum vložení záznamu do shopu. |
93
|
|
|
* |
94
|
|
|
* @var string |
95
|
|
|
*/ |
96
|
|
|
public $myCreateColumn = 'false'; |
97
|
|
|
|
98
|
|
|
/** |
99
|
|
|
* Slopecek obsahujici datum poslení modifikace záznamu do shopu. |
100
|
|
|
* |
101
|
|
|
* @var string |
102
|
|
|
*/ |
103
|
|
|
public $myLastModifiedColumn = 'lastUpdate'; |
104
|
|
|
|
105
|
|
|
/** |
106
|
|
|
* Klíčový idendifikátor záznamu. |
107
|
|
|
* |
108
|
|
|
* @var string |
109
|
|
|
*/ |
110
|
|
|
public $fbKeyColumn = 'id'; |
111
|
|
|
|
112
|
|
|
/** |
113
|
|
|
* Informace o posledním HTTP requestu. |
114
|
|
|
* |
115
|
|
|
* @var array |
116
|
|
|
*/ |
117
|
|
|
public $info; |
118
|
|
|
|
119
|
|
|
/** |
120
|
|
|
* Informace o poslední HTTP chybě. |
121
|
|
|
* |
122
|
|
|
* @var array |
123
|
|
|
*/ |
124
|
|
|
public $error; |
125
|
|
|
|
126
|
|
|
/** |
127
|
|
|
* Used codes storage. |
128
|
|
|
* |
129
|
|
|
* @var array |
130
|
|
|
*/ |
131
|
|
|
public $codes = null; |
132
|
|
|
|
133
|
|
|
/** |
134
|
|
|
* Last Inserted ID. |
135
|
|
|
* |
136
|
|
|
* @var int |
137
|
|
|
*/ |
138
|
|
|
public $lastInsertedID = null; |
139
|
|
|
|
140
|
|
|
/** |
141
|
|
|
* Default Line Prefix. |
142
|
|
|
* |
143
|
|
|
* @var string |
144
|
|
|
*/ |
145
|
|
|
public $prefix = '/c/'; |
146
|
|
|
|
147
|
|
|
/** |
148
|
|
|
* HTTP Response code of last request |
149
|
|
|
* |
150
|
|
|
* @var int |
151
|
|
|
*/ |
152
|
|
|
public $lastResponseCode = null; |
153
|
|
|
|
154
|
|
|
/** |
155
|
|
|
* Array of fields for next curl POST operation |
156
|
|
|
* |
157
|
|
|
* @var array |
158
|
|
|
*/ |
159
|
|
|
protected $postFields = []; |
160
|
|
|
|
161
|
|
|
/** |
162
|
|
|
* Třída pro práci s FlexiBee. |
163
|
|
|
* |
164
|
|
|
* @param string $init výchozí selektor dat |
165
|
|
|
*/ |
166
|
32 |
|
public function __construct($init = null) |
167
|
|
|
{ |
168
|
32 |
|
$this->init = $init; |
169
|
|
|
|
170
|
32 |
|
parent::__construct(); |
171
|
32 |
|
$this->curlInit(); |
172
|
32 |
|
} |
173
|
|
|
|
174
|
32 |
|
public function curlInit() |
175
|
|
|
{ |
176
|
32 |
|
$this->curl = \curl_init(); // create curl resource |
177
|
32 |
|
curl_setopt($this->curl, CURLOPT_RETURNTRANSFER, true); // return content as a string from curl_exec |
178
|
32 |
|
curl_setopt($this->curl, CURLOPT_FOLLOWLOCATION, true); // follow redirects (compatibility for future changes in FlexiBee) |
179
|
32 |
|
curl_setopt($this->curl, CURLOPT_HTTPAUTH, true); // HTTP authentication |
180
|
32 |
|
curl_setopt($this->curl, CURLOPT_SSL_VERIFYPEER, false); // FlexiBee by default uses Self-Signed certificates |
181
|
32 |
|
curl_setopt($this->curl, CURLOPT_SSL_VERIFYHOST, false); |
182
|
32 |
|
curl_setopt($this->curl, CURLOPT_VERBOSE, true); // For debugging |
183
|
32 |
|
curl_setopt($this->curl, CURLOPT_USERPWD, |
184
|
32 |
|
$this->user.':'.$this->password); // set username and password |
185
|
32 |
|
} |
186
|
|
|
|
187
|
|
|
/** |
188
|
|
|
* Nastaví Agendu pro Komunikaci. |
189
|
|
|
* |
190
|
|
|
* @param string $evidence |
191
|
|
|
*/ |
192
|
16 |
|
public function setEvidence($evidence) |
193
|
|
|
{ |
194
|
16 |
|
$this->evidence = $evidence; |
195
|
16 |
|
} |
196
|
|
|
|
197
|
|
|
/** |
198
|
|
|
* Převede rekurzivně Objekt na pole. |
199
|
|
|
* |
200
|
|
|
* @param object|array $object |
201
|
|
|
* |
202
|
|
|
* @return array |
203
|
|
|
*/ |
204
|
16 |
|
public static function object2array($object) |
205
|
|
|
{ |
206
|
16 |
|
$result = null; |
207
|
16 |
|
if (is_object($object)) { |
208
|
16 |
|
$objectData = get_object_vars($object); |
209
|
16 |
|
if (is_array($objectData) && count($objectData)) { |
210
|
16 |
|
$result = array_map('self::object2array', $objectData); |
211
|
16 |
|
} |
212
|
16 |
|
} else { |
213
|
16 |
|
if (is_array($object)) { |
214
|
16 |
|
foreach ($object as $item => $value) { |
215
|
16 |
|
$result[$item] = self::object2array($value); |
216
|
16 |
|
} |
217
|
16 |
|
} else { |
218
|
16 |
|
$result = $object; |
219
|
|
|
} |
220
|
|
|
} |
221
|
|
|
|
222
|
16 |
|
return $result; |
223
|
|
|
} |
224
|
|
|
|
225
|
|
|
/** |
226
|
|
|
* Funkce, která provede I/O operaci a vyhodnotí výsledek. |
227
|
|
|
* |
228
|
|
|
* @param string $urlSuffix část URL za identifikátorem firmy. |
229
|
|
|
* @param string $method HTTP/REST metoda |
230
|
|
|
* @param string $format Requested format |
231
|
|
|
*/ |
232
|
16 |
|
public function performRequest($urlSuffix = null, $method = 'GET', |
233
|
|
|
$format = null) |
234
|
|
|
{ |
235
|
16 |
|
if (is_null($format)) { |
236
|
16 |
|
$format = $this->format; |
237
|
16 |
|
} |
238
|
16 |
|
if (is_null($urlSuffix)) { |
239
|
3 |
|
$urlSuffix = $this->evidence.'.'.$format; |
240
|
3 |
|
} |
241
|
16 |
|
$url = $this->url.$this->prefix.$this->company.'/'.$urlSuffix; |
242
|
16 |
|
curl_setopt($this->curl, CURLOPT_URL, $url); |
243
|
|
|
// Nastavení samotné operace |
244
|
16 |
|
curl_setopt($this->curl, CURLOPT_CUSTOMREQUEST, $method); |
245
|
|
|
//Vždy nastavíme byť i prázná postdata jako ochranu před chybou 411 |
246
|
16 |
|
curl_setopt($this->curl, CURLOPT_POSTFIELDS, $this->postFields); |
247
|
|
|
|
248
|
|
|
|
249
|
|
|
// Proveď samotnou operaci |
250
|
16 |
|
$response = curl_exec($this->curl); |
251
|
|
|
|
252
|
16 |
|
$this->info = curl_getinfo($this->curl); |
|
|
|
|
253
|
|
|
|
254
|
16 |
|
$this->lastResponseCode = curl_getinfo($this->curl, CURLINFO_HTTP_CODE); |
255
|
|
|
|
256
|
16 |
|
if ($this->lastResponseCode != 200 && $this->lastResponseCode != 201) { |
257
|
16 |
|
$this->error = curl_error($this->curl); |
|
|
|
|
258
|
|
|
switch ($format) { |
259
|
16 |
|
case 'json': |
260
|
16 |
|
$response = preg_replace_callback('/\\\\u([0-9a-fA-F]{4})/', |
261
|
16 |
|
function ($match) { |
262
|
|
|
return mb_convert_encoding(pack('H*', $match[1]), |
263
|
|
|
'UTF-8', 'UCS-2BE'); |
264
|
16 |
|
}, $response); |
265
|
16 |
|
$response = (json_encode(json_decode($response, true, 10), |
266
|
16 |
|
JSON_PRETTY_PRINT)); |
267
|
16 |
|
break; |
268
|
|
|
case 'xml': |
269
|
|
|
if (strlen($response)) { |
270
|
|
|
$response = self::xml2array($response); |
271
|
|
|
} |
272
|
|
|
break; |
273
|
|
|
} |
274
|
|
|
|
275
|
16 |
|
if (is_array($response)) { |
276
|
|
|
$result = http_build_query($response); |
277
|
|
|
} else { |
278
|
16 |
|
$result = http_build_query(self::object2array(current(json_decode($response)))); |
279
|
|
|
} |
280
|
|
|
|
281
|
16 |
|
if ($this->lastResponseCode == 400) { |
282
|
2 |
|
$this->logResult($result); |
|
|
|
|
283
|
2 |
|
} else { |
284
|
16 |
|
$this->addStatusMessage(sprintf('Error (HTTP %d): <pre>%s</pre> %s', |
285
|
16 |
|
curl_getinfo($this->curl, CURLINFO_HTTP_CODE), $result, |
286
|
16 |
|
$this->error), 'error'); |
287
|
16 |
|
$this->addStatusMessage($url); |
288
|
|
|
} |
289
|
16 |
|
if ($response == 'null') { |
290
|
|
|
if ($this->lastResponseCode == 200) { |
291
|
|
|
$response = true; |
292
|
|
|
} else { |
293
|
|
|
$response = null; |
294
|
|
|
} |
295
|
|
|
} else { |
296
|
16 |
|
if (is_string($response)) { |
297
|
16 |
|
$response = self::object2array(current(json_decode($response))); |
298
|
16 |
|
} |
299
|
|
|
} |
300
|
16 |
|
return $response; |
301
|
|
|
} |
302
|
|
|
|
303
|
|
|
// Parse response |
304
|
|
|
switch ($format) { |
305
|
14 |
|
case 'json': |
306
|
14 |
|
$decoded = json_decode($response, true, 10); |
307
|
14 |
|
if (($method == 'PUT') && isset($decoded[$this->nameSpace][$this->resultField][0]['id'])) { |
308
|
|
|
$this->lastInsertedID = $decoded[$this->nameSpace][$this->resultField][0]['id']; |
309
|
|
|
} else { |
310
|
14 |
|
$this->lastInsertedID = null; |
311
|
|
|
} |
312
|
|
|
// $decodeError = json_last_error_msg(); |
|
|
|
|
313
|
|
|
// $this->addStatusMessage($decodeError); |
314
|
|
|
|
315
|
14 |
|
break; |
316
|
3 |
|
case 'xml': |
317
|
3 |
|
if (strlen($response)) { |
318
|
3 |
|
$decoded = self::xml2array($response); |
319
|
3 |
|
} else { |
320
|
|
|
$decoded = null; |
321
|
|
|
} |
322
|
3 |
|
break; |
323
|
|
|
} |
324
|
|
|
|
325
|
|
|
// Get response body root automatically |
326
|
14 |
|
if (isset($decoded[$this->nameSpace])) { |
327
|
14 |
|
$decoded = $decoded[$this->nameSpace]; |
328
|
14 |
|
} |
329
|
|
|
|
330
|
14 |
|
return $decoded; |
|
|
|
|
331
|
|
|
} |
332
|
|
|
|
333
|
|
|
/** |
334
|
|
|
* Give you last inserted record ID. |
335
|
|
|
* |
336
|
|
|
* @return int |
337
|
|
|
*/ |
338
|
|
|
public function getLastInsertedId() |
339
|
|
|
{ |
340
|
|
|
return $this->lastInsertedID; |
341
|
|
|
} |
342
|
|
|
|
343
|
|
|
/** |
344
|
|
|
* Convert XML to array. |
345
|
|
|
* |
346
|
|
|
* @param string $xml |
347
|
|
|
* |
348
|
|
|
* @return array |
349
|
|
|
*/ |
350
|
16 |
|
public static function xml2array($xml) |
351
|
|
|
{ |
352
|
16 |
|
$arr = []; |
353
|
|
|
|
354
|
16 |
|
if (is_string($xml)) { |
355
|
16 |
|
$xml = simplexml_load_string($xml); |
356
|
16 |
|
} |
357
|
|
|
|
358
|
16 |
|
foreach ($xml->children() as $r) { |
359
|
16 |
|
$t = []; |
|
|
|
|
360
|
16 |
|
if (count($r->children()) == 0) { |
361
|
16 |
|
$arr[$r->getName()] = strval($r); |
362
|
16 |
|
} else { |
363
|
16 |
|
$arr[$r->getName()][] = self::xml2array($r); |
364
|
|
|
} |
365
|
16 |
|
} |
366
|
|
|
|
367
|
16 |
|
return $arr; |
368
|
|
|
} |
369
|
|
|
|
370
|
|
|
/** |
371
|
|
|
* Odpojení od FlexiBee. |
372
|
|
|
*/ |
373
|
17 |
|
public function disconnect() |
374
|
|
|
{ |
375
|
17 |
|
if (is_resource($this->curl)) { |
376
|
17 |
|
curl_close($this->curl); |
377
|
17 |
|
} |
378
|
17 |
|
$this->curl = null; |
379
|
17 |
|
} |
380
|
|
|
|
381
|
17 |
|
public function __destruct() |
382
|
|
|
{ |
383
|
17 |
|
$this->disconnect(); |
384
|
17 |
|
} |
385
|
|
|
|
386
|
|
|
/** |
387
|
|
|
* Načte data z FlexiBee. |
388
|
|
|
* |
389
|
|
|
* @param string $suffix dotaz |
390
|
|
|
*/ |
391
|
|
|
public function loadFlexiData($suffix = null) |
392
|
|
|
{ |
393
|
|
|
return $this->takeData($this->getFlexiData($suffix)); |
394
|
|
|
} |
395
|
|
|
|
396
|
|
|
/** |
397
|
|
|
* Načte řádek dat z FlexiBee. |
398
|
|
|
* |
399
|
|
|
* @param int $recordID id požadovaného záznamu |
400
|
|
|
* |
401
|
|
|
* @return array |
402
|
|
|
*/ |
403
|
16 |
|
public function getFlexiRow($recordID) |
404
|
|
|
{ |
405
|
16 |
|
$record = null; |
406
|
16 |
|
$response = $this->performRequest($this->evidence.'/'.$recordID.'.json'); |
407
|
16 |
|
if (isset($response[$this->evidence])) { |
408
|
9 |
|
$record = $response[$this->evidence][0]; |
409
|
9 |
|
} |
410
|
|
|
|
411
|
16 |
|
return $record; |
412
|
|
|
} |
413
|
|
|
|
414
|
|
|
/** |
415
|
|
|
* Načte data z FlexiBee. |
416
|
|
|
* |
417
|
|
|
* @param string $suffix dotaz |
418
|
|
|
* @param string $conditions Volitelný filtrovací výraz |
419
|
|
|
*/ |
420
|
15 |
|
public function getFlexiData($suffix = null, $conditions = null) |
421
|
|
|
{ |
422
|
15 |
|
if (!is_null($conditions)) { |
423
|
10 |
|
if ($conditions[0] != '/') { |
424
|
10 |
|
$conditions = '/'.rawurlencode('('.($conditions).')'); |
425
|
10 |
|
} |
426
|
10 |
|
} else { |
427
|
15 |
|
$conditions = ''; |
428
|
|
|
} |
429
|
15 |
|
if ($suffix) { |
|
|
|
|
430
|
|
|
$transactions = $this->performRequest($this->evidence.$conditions.'.'.$this->format.'?'.$suffix, |
431
|
|
|
'GET'); |
432
|
|
|
} else { |
433
|
15 |
|
$transactions = $this->performRequest($this->evidence.$conditions.'.'.$this->format, |
434
|
15 |
|
'GET'); |
435
|
|
|
} |
436
|
15 |
|
if (isset($transactions[$this->evidence])) { |
437
|
12 |
|
$result = $transactions[$this->evidence]; |
438
|
12 |
|
} else { |
439
|
3 |
|
$result = $transactions; |
440
|
|
|
} |
441
|
|
|
|
442
|
15 |
|
return $result; |
443
|
|
|
} |
444
|
|
|
|
445
|
|
|
/** |
446
|
|
|
* Načte záznam z FlexiBee. |
447
|
|
|
* |
448
|
|
|
* @param int $id ID záznamu |
449
|
|
|
* |
450
|
|
|
* @return int počet načtených položek |
451
|
|
|
*/ |
452
|
16 |
|
public function loadFromFlexiBee($id = null) |
453
|
|
|
{ |
454
|
16 |
|
if (is_null($id)) { |
455
|
16 |
|
$id = $this->getMyKey(); |
456
|
16 |
|
} |
457
|
|
|
|
458
|
16 |
|
return $this->takeData($this->getFlexiData('/'.$id)); |
459
|
|
|
} |
460
|
|
|
|
461
|
|
|
/** |
462
|
|
|
* Uloží data do FlexiBee. |
463
|
|
|
* |
464
|
|
|
* @param array $data |
465
|
|
|
* |
466
|
|
|
* @return array výsledek |
467
|
|
|
*/ |
468
|
|
|
public function saveToFlexiBee($data = null) |
469
|
|
|
{ |
470
|
|
|
if (is_null($data)) { |
471
|
|
|
$data = $this->getData(); |
472
|
|
|
} |
473
|
|
|
|
474
|
|
|
$jsonizedData = $this->jsonizeData($data); |
475
|
|
|
|
476
|
|
|
curl_setopt($this->curl, CURLOPT_POSTFIELDS, $jsonizedData); |
477
|
|
|
|
478
|
|
|
return $this->performRequest($this->evidence.'.'.$this->format, 'PUT'); |
479
|
|
|
} |
480
|
|
|
|
481
|
|
|
/** |
482
|
|
|
* Převede data do Json formátu pro FlexiBee. |
483
|
|
|
* |
484
|
|
|
* @param array $data |
485
|
|
|
* |
486
|
|
|
* @return string |
487
|
|
|
*/ |
488
|
16 |
|
public function jsonizeData($data) |
489
|
|
|
{ |
490
|
|
|
$jsonize = [ |
491
|
16 |
|
$this->nameSpace => [ |
492
|
16 |
|
'@version' => $this->protoVersion, |
493
|
16 |
|
$this->evidence => $data, |
494
|
16 |
|
], |
495
|
16 |
|
]; |
496
|
|
|
|
497
|
16 |
|
return json_encode($jsonize); |
498
|
|
|
} |
499
|
|
|
|
500
|
|
|
/** |
501
|
|
|
* Uloží záznam. |
502
|
|
|
* |
503
|
|
|
* @param array $data |
504
|
|
|
* |
505
|
|
|
* @return array odpověď |
506
|
|
|
*/ |
507
|
|
|
public function insertToFlexiBee($data = null) |
508
|
|
|
{ |
509
|
|
|
if (is_null($data)) { |
510
|
|
|
$data = $this->getData(); |
511
|
|
|
} |
512
|
|
|
$this->postFields = $this->jsonizeData($data); |
|
|
|
|
513
|
|
|
return $this->performRequest($this->evidence.'.'.$this->format, 'PUT'); |
514
|
|
|
} |
515
|
|
|
|
516
|
|
|
/** |
517
|
|
|
* Test if given record ID exists in FlexiBee. |
518
|
|
|
* |
519
|
|
|
* @param string|int $identifer |
520
|
|
|
*/ |
521
|
|
|
public function idExists($identifer = null) |
522
|
|
|
{ |
523
|
|
|
if (is_null($identifer)) { |
524
|
|
|
$identifer = $this->getMyKey(); |
525
|
|
|
} |
526
|
|
|
$flexiData = $this->getFlexiData( |
527
|
|
|
'detail=custom:'.$this->getmyKeyColumn(), $identifer); |
528
|
|
|
|
529
|
|
|
return $flexiData; |
530
|
|
|
} |
531
|
|
|
|
532
|
|
|
/** |
533
|
|
|
* Test if given record exists in FlexiBee. |
534
|
|
|
* |
535
|
|
|
* @param array $data |
536
|
|
|
*/ |
537
|
|
|
public function recordExists($data = null) |
538
|
|
|
{ |
539
|
|
|
if (is_null($data)) { |
540
|
|
|
$data = $this->getData(); |
541
|
|
|
} |
542
|
|
|
|
543
|
|
|
$res = $this->getColumnsFromFlexibee([$this->myKeyColumn], |
544
|
|
|
self::flexiUrl($data)); |
545
|
|
|
|
546
|
|
|
return $res; |
547
|
|
|
} |
548
|
|
|
|
549
|
|
|
/** |
550
|
|
|
* Vrací z FlexiBee sloupečky podle podmínek. |
551
|
|
|
* |
552
|
|
|
* @param array|int|string $conditions pole podmínek nebo ID záznamu |
553
|
|
|
* @param array|string $orderBy třídit dle |
554
|
|
|
* @param string $indexBy klice vysledku naplnit hodnotou ze |
555
|
|
|
* sloupečku |
556
|
|
|
* @param int $limit maximální počet vrácených záznamů |
557
|
|
|
* |
558
|
|
|
* @return array |
559
|
|
|
*/ |
560
|
|
|
public function getAllFromFlexibee($conditions = null, $orderBy = null, |
|
|
|
|
561
|
|
|
$indexBy = null, $limit = null) |
|
|
|
|
562
|
|
|
{ |
563
|
|
|
if (is_int($conditions)) { |
564
|
|
|
$conditions = [$this->getmyKeyColumn() => $conditions]; |
565
|
|
|
} |
566
|
|
|
|
567
|
|
|
$flexiData = $this->getFlexiData('', $conditions); |
|
|
|
|
568
|
|
|
|
569
|
|
View Code Duplication |
if ($indexBy) { |
|
|
|
|
570
|
|
|
$flexiData2 = []; |
571
|
|
|
foreach ($flexiData as $dataID => $data) { |
572
|
|
|
$flexiData2[$data[$indexBy]] = $data; |
573
|
|
|
} |
574
|
|
|
$flexiData = $flexiData2; |
575
|
|
|
} |
576
|
|
|
|
577
|
|
|
return $flexiData; |
578
|
|
|
} |
579
|
|
|
|
580
|
|
|
/** |
581
|
|
|
* Vrací z FlexiBee sloupečky podle podmínek. |
582
|
|
|
* |
583
|
|
|
* @param string[] $columnsList seznam položek |
584
|
|
|
* @param array|int|string $conditions pole podmínek nebo ID záznamu |
585
|
|
|
* @param array|string $orderBy třídit dle |
586
|
|
|
* @param string $indexBy klice vysledku naplnit hodnotou ze |
587
|
|
|
* sloupečku |
588
|
|
|
* @param int $limit maximální počet vrácených záznamů |
589
|
|
|
* |
590
|
|
|
* @return array |
591
|
|
|
*/ |
592
|
|
|
public function getColumnsFromFlexibee($columnsList, $conditions = null, |
593
|
|
|
$orderBy = null, $indexBy = null, |
|
|
|
|
594
|
|
|
$limit = null) |
|
|
|
|
595
|
|
|
{ |
596
|
|
|
if (($columnsList != '*') && !count($columnsList)) { |
597
|
|
|
$this->error('getColumnsFromFlexiBee: Missing ColumnList'); |
598
|
|
|
|
599
|
|
|
return; |
600
|
|
|
} |
601
|
|
|
|
602
|
|
|
if (is_int($conditions)) { |
603
|
|
|
$conditions = [$this->getmyKeyColumn() => $conditions]; |
604
|
|
|
} |
605
|
|
|
|
606
|
|
|
if (is_array($columnsList)) { |
607
|
|
|
$columns = implode(',', array_unique($columnsList)); |
608
|
|
|
} else { |
609
|
|
|
$columns = $columnsList; |
610
|
|
|
} |
611
|
|
|
|
612
|
|
|
$flexiData = $this->getFlexiData('detail=custom:'.$columns, $conditions); |
|
|
|
|
613
|
|
|
|
614
|
|
View Code Duplication |
if ($indexBy) { |
|
|
|
|
615
|
|
|
$flexiData2 = []; |
616
|
|
|
foreach ($flexiData as $dataID => $data) { |
617
|
|
|
$flexiData2[$data[$indexBy]] = $data; |
618
|
|
|
} |
619
|
|
|
$flexiData = $flexiData2; |
620
|
|
|
} |
621
|
|
|
|
622
|
|
|
return $flexiData; |
623
|
|
|
} |
624
|
|
|
|
625
|
|
|
/** |
626
|
|
|
* Vrací kód záznamu. |
627
|
|
|
* |
628
|
|
|
* @param mixed $data |
629
|
|
|
* |
630
|
|
|
* @todo papat i string |
631
|
|
|
* |
632
|
|
|
* @return string |
633
|
|
|
*/ |
634
|
16 |
|
public function getKod($data = null, $unique = true) |
635
|
|
|
{ |
636
|
16 |
|
$kod = null; |
637
|
|
|
|
638
|
16 |
|
if (is_null($data)) { |
639
|
16 |
|
$data = $this->getData(); |
640
|
16 |
|
} |
641
|
|
|
|
642
|
16 |
|
if (is_string($data)) { |
643
|
16 |
|
$data = [$this->nameColumn => $data]; |
644
|
16 |
|
} |
645
|
|
|
|
646
|
16 |
|
if (isset($data['kod'])) { |
647
|
16 |
|
$kod = $data['kod']; |
648
|
16 |
|
} else { |
649
|
16 |
|
if (isset($data[$this->nameColumn])) { |
650
|
16 |
|
$kod = preg_replace('/[^a-zA-Z0-9]/', '', |
651
|
16 |
|
\Ease\Sand::rip($data[$this->nameColumn])); |
652
|
16 |
|
} else { |
653
|
16 |
|
if (isset($data[$this->myKeyColumn])) { |
654
|
16 |
|
$kod = \Ease\Sand::rip($data[$this->myKeyColumn]); |
655
|
16 |
|
} |
656
|
|
|
} |
657
|
|
|
} |
658
|
|
|
|
659
|
16 |
|
if (!strlen($kod)) { |
660
|
16 |
|
$kod = 'NOTSET'; |
661
|
16 |
|
} |
662
|
|
|
|
663
|
16 |
|
if (strlen($kod) > 18) { |
664
|
16 |
|
$kodfinal = strtoupper(substr($kod, 0, 18)); |
665
|
16 |
|
} else { |
666
|
16 |
|
$kodfinal = strtoupper($kod); |
667
|
|
|
} |
668
|
|
|
|
669
|
16 |
|
if ($unique) { |
670
|
16 |
|
$counter = 0; |
671
|
16 |
|
if ($this->codes) { |
|
|
|
|
672
|
16 |
|
foreach ($this->codes as $codesearch => $keystring) { |
673
|
16 |
|
if (strstr($codesearch, $kodfinal)) { |
674
|
16 |
|
++$counter; |
675
|
16 |
|
} |
676
|
16 |
|
} |
677
|
16 |
|
} |
678
|
16 |
|
if ($counter) { |
679
|
16 |
|
$kodfinal = $kodfinal.$counter; |
680
|
16 |
|
} |
681
|
|
|
|
682
|
16 |
|
$this->codes[$kodfinal] = $kod; |
683
|
16 |
|
} |
684
|
|
|
|
685
|
16 |
|
return $kodfinal; |
686
|
|
|
} |
687
|
|
|
|
688
|
|
|
/** |
689
|
|
|
* Vyhledavani v záznamech objektu FlexiBee. |
690
|
|
|
* |
691
|
|
|
* @param string $what hledaný výraz |
692
|
|
|
* |
693
|
|
|
* @return array pole výsledků |
694
|
|
|
*/ |
695
|
|
|
public function searchString($what) |
696
|
|
|
{ |
697
|
|
|
$results = []; |
698
|
|
|
$conds = []; |
699
|
|
|
$columns[] = $this->myKeyColumn; |
|
|
|
|
700
|
|
|
foreach ($this->useKeywords as $keyword => $keywordInfo) { |
|
|
|
|
701
|
|
|
if (isset($this->keywordsInfo[$keyword]['virtual']) && ($this->keywordsInfo[$keyword]['virtual'] |
|
|
|
|
702
|
|
|
== true)) { |
703
|
|
|
if ($keyword == $this->nameColumn) { |
704
|
|
|
$this->nameColumn = $this->myKeyColumn; |
705
|
|
|
} |
706
|
|
|
continue; |
707
|
|
|
} |
708
|
|
|
switch ($keywordInfo) { |
709
|
|
|
case 'INT': |
710
|
|
View Code Duplication |
case 'FLOAT': |
|
|
|
|
711
|
|
|
if (is_numeric($what)) { |
712
|
|
|
$conds[] = "($keyword = ".$what.')'; |
713
|
|
|
$columns[] = "$keyword"; |
714
|
|
|
} |
715
|
|
|
break; |
716
|
|
|
case 'TEXT': |
717
|
|
View Code Duplication |
case 'STRING': |
|
|
|
|
718
|
|
|
if (is_string($what)) { |
719
|
|
|
$conds[] = "( $keyword like '".$what."')"; |
720
|
|
|
$columns[] = "$keyword"; |
721
|
|
|
} |
722
|
|
|
break; |
723
|
|
|
default: |
724
|
|
|
break; |
725
|
|
|
} |
726
|
|
|
} |
727
|
|
|
|
728
|
|
|
// $res = \Ease\Shared::db()->queryToArray('SELECT ' . implode(',', $columns) . ',' . $this->nameColumn . ' FROM ' . $this->myTable . ' WHERE ' . implode(' OR ', $conds) . ' ORDER BY ' . $this->nameColumn, $this->myKeyColumn); |
|
|
|
|
729
|
|
|
|
730
|
|
|
$res = $this->getColumnsFromFlexibee($columns, implode(' or ', $conds)); |
731
|
|
|
|
732
|
|
|
foreach ($res as $result) { |
733
|
|
|
$occurences = ''; |
734
|
|
|
foreach ($result as $key => $value) { |
735
|
|
|
if (is_array($value)) { |
736
|
|
|
continue; |
737
|
|
|
} |
738
|
|
|
if (mb_stristr($value, $what)) { |
739
|
|
|
$occurences .= '('.$key.': '.$value.')'; |
740
|
|
|
} |
741
|
|
|
} |
742
|
|
|
$results[$result[$this->myKeyColumn]] = [$this->nameColumn => $result[$this->nameColumn], |
743
|
|
|
'what' => $occurences,]; |
744
|
|
|
} |
745
|
|
|
|
746
|
|
|
return $results; |
747
|
|
|
} |
748
|
|
|
|
749
|
|
|
/** |
750
|
|
|
* Write Operation Result. |
751
|
|
|
* |
752
|
|
|
* @param array $resultData |
753
|
|
|
* @param string $url URL |
754
|
|
|
*/ |
755
|
16 |
|
public function logResult($resultData, $url = null) |
756
|
|
|
{ |
757
|
16 |
|
if ($url) { |
|
|
|
|
758
|
16 |
|
$this->logger->addStatusMessage($url); |
759
|
16 |
|
} |
760
|
|
|
|
761
|
16 |
|
if (isset($resultData['results'])) { |
762
|
16 |
|
$status = null; |
|
|
|
|
763
|
16 |
|
if ($resultData['success'] == 'false') { |
764
|
16 |
|
$status = 'error'; |
765
|
16 |
|
} else { |
766
|
16 |
|
$status = 'success'; |
767
|
|
|
} |
768
|
16 |
|
foreach ($resultData['results'] as $result) { |
769
|
16 |
|
if (isset($result['request-id'])) { |
770
|
16 |
|
$rid = $result['request-id']; |
771
|
16 |
|
} else { |
772
|
16 |
|
$rid = ''; |
773
|
|
|
} |
774
|
16 |
|
if (isset($result['errors'])) { |
775
|
16 |
|
foreach ($result['errors'] as $error) { |
776
|
16 |
|
$message = $error['message']; |
777
|
16 |
|
if (isset($error['for'])) { |
778
|
|
|
$message.=' for: '.$error['for']; |
779
|
|
|
} |
780
|
16 |
|
if (isset($error['value'])) { |
781
|
|
|
$message.=' value:'.$error['value']; |
782
|
|
|
} |
783
|
16 |
|
if (isset($error['code'])) { |
784
|
|
|
$message.=' code:'.$error['code']; |
785
|
|
|
} |
786
|
16 |
|
$this->logger->addStatusMessage($rid.': '.$message, |
787
|
16 |
|
$status); |
788
|
16 |
|
} |
789
|
16 |
|
} |
790
|
16 |
|
} |
791
|
16 |
|
} |
792
|
16 |
|
if (is_object($this->logger)) { |
793
|
16 |
|
$this->logger->flush(get_class($this)); |
794
|
16 |
|
} |
795
|
16 |
|
} |
796
|
|
|
|
797
|
|
|
/** |
798
|
|
|
* Generuje fragment url pro filtrování. |
799
|
|
|
* |
800
|
|
|
* @see https://www.flexibee.eu/api/dokumentace/ref/filters |
801
|
|
|
* |
802
|
|
|
* @param array $data |
803
|
|
|
* @param string $operator and/or |
804
|
|
|
* |
805
|
|
|
* @return string |
806
|
|
|
*/ |
807
|
16 |
|
public static function flexiUrl(array $data, $operator = 'and') |
808
|
|
|
{ |
809
|
16 |
|
$flexiUrl = ''; |
|
|
|
|
810
|
16 |
|
$parts = []; |
811
|
|
|
|
812
|
16 |
|
foreach ($data as $column => $value) { |
813
|
16 |
|
if (is_numeric($data[$column])) { |
814
|
16 |
|
$parts[$column] = $column.' = '.$data[$column]; |
815
|
16 |
|
} else { |
816
|
16 |
|
$parts[$column] = $column." = '".$data[$column]."'"; |
817
|
|
|
} |
818
|
16 |
|
} |
819
|
|
|
|
820
|
16 |
|
$flexiUrl = implode(' '.$operator.' ', $parts); |
821
|
|
|
|
822
|
16 |
|
return $flexiUrl; |
823
|
|
|
} |
824
|
|
|
|
825
|
|
|
/** |
826
|
|
|
* Smaže záznam |
827
|
|
|
* |
828
|
|
|
* @param int|string $id identifikátor záznamu |
829
|
|
|
* @return boolean Response code is 200 ? |
830
|
|
|
*/ |
831
|
|
|
public function deleteFromFlexiBee($id) |
832
|
|
|
{ |
833
|
|
|
$this->performRequest($this->evidence.'/'.$id.'.'.$this->format, |
834
|
|
|
'DELETE'); |
835
|
|
|
return $this->lastResponseCode == 200; |
836
|
|
|
} |
837
|
|
|
} |
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..