-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathRW.php
More file actions
700 lines (603 loc) · 20.2 KB
/
RW.php
File metadata and controls
700 lines (603 loc) · 20.2 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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
<?php
declare(strict_types=1);
/**
* This file is part of the SpojeNet\AbraFlexi package.
*
* (c) 2019-2024 SpojeNet s.r.o. <http://spoje.net/>
* (c) 2025 SpojeNetIT s.r.o. <http://spojenet.cz/>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace AbraFlexi;
/**
* Základní třída pro zápis do AbraFlexi.
*
* @url https://demo.flexibee.eu/devdoc/http-operations
*
* @no-named-arguments
*/
class RW extends RO
{
/**
* Sloupeček obsahující datum vložení záznamu do shopu.
*/
public ?string $myCreateColumn = '';
/**
* Column with last modification datetime/stamp.
*/
public ?string $myLastModifiedColumn = 'lastUpdate';
/**
* Last Inserted ID.
*/
public ?int $lastInsertedID = null;
/**
* Array of fields for next curl POST operation.
*/
public ?string $postFields = null;
/**
* Transaction processing mode.
*
* @see https://www.abraflexi.eu/api/dokumentace/ref/tx/ Transakční zpracování
*/
public bool $atomic = false;
/**
* Dry Run mode indicator.
*
* @see https://podpora.flexibee.eu/cs/articles/4720123-testovaci-ulozeni-dry-run
*/
public bool $dryRun = false;
/**
* Record Copy helper.
*/
private ?int $sourceId;
/**
* SetUp Object to be ready for work.
*
* @param array<mixed> $options Object Options (authSessionId,user,password,
* url,company,evidence,companyUrl
* prefix,defaultUrlParams,debug,ver,dry-run
* detail,offline,atomic,filter,ignore404
*/
public function setUp($options = []): bool
{
if (\array_key_exists('atomic', $options)) {
$this->atomic = (bool) $options['atomic'];
}
if (\array_key_exists('dry-run', $options)) {
$this->dryRun = (bool) $options['dry-run'];
$this->defaultUrlParams['dry-run'] = $this->dryRun ? 'true' : 'false';
}
return parent::setUp($options);
}
/**
* Save record (if evidence allow to).
* Uloží záznam (pokud to evidence dovoluje).
*
* @param array $data Data to save
*
* @throws Exception Evidence does not support Import
*
* @return array|bool odpověď
*/
public function insertToAbraFlexi($data = null)
{
if (null === $data) {
$data = $this->getData();
}
$this->postFields = $this->getJsonizedData(
$data,
$this->debug ? \JSON_PRETTY_PRINT : 0,
);
return $this->performRequest('', 'PUT');
}
/**
* Parse Response array.
*
* @param array $responseDecoded
* @param int $responseCode Request Response Code
*
* @return array main data part of response
*/
public function parseResponse($responseDecoded, $responseCode)
{
$parsedData = parent::parseResponse($responseDecoded, $responseCode);
switch ($responseCode) {
case 200: // The Dry Run response
if ($this->dryRun === false) {
break; // Read operation does not return results
}
// no break
case 201: // Success Write
if (\is_array($responseDecoded)) {
$this->responseStats = \array_key_exists(
'stats',
$responseDecoded,
) ? (isset($responseDecoded['stats'][0]) ? array_map('intval', $responseDecoded['stats'][0]) : array_map('intval', $responseDecoded['stats'])) : null;
if (isset($responseDecoded[$this->resultField][0]['id'])) {
$this->lastInsertedID = (int) $responseDecoded[$this->resultField][0]['id'];
$this->setMyKey($this->lastInsertedID);
} else {
$this->lastInsertedID = null;
}
if (\count($this->chained)) {
$this->assignResultIDs($this->extractResultIDs($responseDecoded[$this->resultField]));
}
}
$parsedData = $responseDecoded['results'];
}
return $parsedData;
}
/**
* Parse error message response.
*
* @return int number of errors processed
*/
public function parseError(array $responseDecoded)
{
if (\array_key_exists('results', $responseDecoded)) {
if (\array_key_exists(0, $responseDecoded['results'])) {
foreach ($responseDecoded['results'] as $result) {
if (\array_key_exists('request-id', $result)) {
unset($result['request-id']);
}
if (\array_key_exists('errors', $result)) {
foreach ($result as $error) {
$this->errors[] = \is_array($error) ? current($error) : $error;
}
}
}
} else {
foreach ($responseDecoded['results'][0]['result'] as $result) {
if (\array_key_exists('errors', $result)) {
foreach ($result as $error) {
$this->errors[] = \is_array($error) ? current($error) : $error;
}
}
}
}
foreach ($this->errors as $errorInfo) {
if ($this->debug && \array_key_exists('for', $errorInfo)) {
unset($errorInfo['message']);
$this->addStatusMessage(json_encode($errorInfo), 'debug');
}
}
} else {
parent::parseError($responseDecoded);
}
return \count($this->errors);
}
/**
* Assign result IDs to its source objects.
*
* @param array $candidates AbraFlexi insert IDs prepared by extractResultIDs()
*/
public function assignResultIDs($candidates): void
{
foreach ($this->chained as $chid => $chained) {
$chainedEvidence = $chained->getEvidence();
$chainedExtid = $chained->getRecordID();
if (\is_array($chainedExtid)) { // if there are more IDs
foreach ($chainedExtid as $extId) { // find external ID in format ext:.....
if (str_starts_with(strtolower($extId), strtolower('ext:'))) {
$chainedExtid = $extId;
break;
}
}
}
$chained->getData();
if (isset($candidates[$chainedEvidence][$chainedExtid])) {
$chained->setMyKey($candidates[$chainedEvidence][$chainedExtid]);
$chained->setDataValue('external-ids', [$chainedExtid]);
}
if (\count($this->chained[$chid]->chained)) {
$this->chained[$chid]->assignResultIDs($candidates);
}
}
}
/**
* Extract IDs from AbraFlexi response Array.
*
* @param array $resultInfo AbraFlexi response
*
* @return array List of [ 'evidence1'=>[ 'original-id'=>numericID,'original-id2'=>numericID2 ], 'evidence2'=> ... ]
*/
public function extractResultIDs($resultInfo)
{
$candidates = [];
foreach ($resultInfo as $insertResult) {
$newID = $insertResult['id'];
if (\array_key_exists('request-id', $insertResult)) {
$extid = $insertResult['request-id'];
} else {
$extid = null;
}
$evidence = explode('/', $insertResult['ref'])[3];
$candidates[$evidence][$extid] = $newID;
}
return $candidates;
}
/**
* Give you last inserted record ID.
*
* @return int
*/
public function getLastInsertedId()
{
return $this->lastInsertedID;
}
/**
* Smaže záznam
* Delete record in AbraFlexi.
*
* @param int|string $id identifikátor záznamu
*
* @return bool Response code is 200 ?
*/
public function deleteFromAbraFlexi($id = null)
{
if (null === $id) {
$id = $this->getRecordIdent();
}
$this->performRequest(
$this->getEvidenceUrl().'/'.Functions::urlizeId($id),
'DELETE',
);
return $this->lastResponseCode === 200;
}
/**
* Control for existing column names in evidence and take data.
*
* @param array<string, mixed> $data Data to keep
*
* @return int number of records taken
*/
public function takeData(array $data): int
{
if ($this->debug === true) {
$fbRelations = [];
$fbColumns = $this->getColumnsInfo();
foreach ($this->getRelationsInfo() as $relation) {
if (\is_array($relation) && isset($relation['url'])) {
$fbRelations[$relation['url']] = $relation['url'];
}
}
if (\count($fbColumns)) {
foreach ($data as $key => $value) {
if (!\array_key_exists($key, $fbColumns)) {
if (\array_key_exists($key, $fbRelations) && !\is_array($value)) {
$msg = sprintf('subevidence %s in evidence %s must bee an array', $key, $this->getEvidence());
} else {
$msg = sprintf('unknown column %s for evidence %s', $key, $this->getEvidence());
}
$this->addStatusMessage($msg, 'debug');
}
}
}
}
return parent::takeData($data);
}
/**
* Control data for ReadOnly columns presence.
*
* @param array $data
*
* @return array List of ReadOnly columns. Empty if all is ok
*/
public function controlReadOnlyColumns($data = null)
{
if (null === $data) {
$data = $this->getData();
}
$readonlyColumns = [];
$fbColumns = $this->getColumnsInfo();
if (!empty($fbColumns) && \count($fbColumns)) {
foreach ($fbColumns as $columnName => $columnInfo) {
$writable = ($columnInfo['isWritable'] === 'true');
if (!$writable && !\array_key_exists($columnName, $data)) {
$readonlyColumns[$columnName] = $columnInfo['name'];
}
}
}
return $readonlyColumns;
}
/**
* Add Data to evidence Branch
* Přidá data do větve.
*
* @thanksto Karel Běl
*
* @see Relations
*
* @param array<string, string> $data pole dat
* @param string $relationPath path evidence (relation) pro vkládaná data
* @param bool $removeAll
*
* @return bool Operation success
*/
public function addArrayToBranch(
$data,
$relationPath = 'polozkyDokladu',
$removeAll = false,
) {
$currentBranchData = $this->getDataValue($relationPath);
$branchData = $currentBranchData;
$branchData[] = $data;
if (
\is_array($this->getEvidence()) && \array_key_exists(
'bezPolozek',
$this->getColumnsInfo(),
)
) {
$this->setDataValue('bezPolozek', false);
}
if ($removeAll === true) {
$this->setDataValue($relationPath.'@removeAll', true);
}
return $this->setDataValue($relationPath, $branchData);
}
/**
* Vloží do větve data z objektu.
*
* @param RO $object objekt evidence
* @param bool $removeAll flush older items
*/
public function addObjectToBranch($object, $removeAll = false): void
{
$this->addArrayToBranch(
[$object->getEvidence() => $object->getData()],
'polozkyDokladu',
$removeAll,
);
}
/**
* Přidá uživatelskou vazbu.
*
* @see https://www.abraflexi.eu/api/dokumentace/ref/uzivatelske-vazby/
*
* @param string $vazba
*/
public function vazbaAdd($vazba): void
{
$this->addArrayToBranch(
['uzivatelska-vazba' => $vazba],
'uzivatelske-vazby',
);
}
/**
* Smaže uživatelskou vazbu.
*
* @see https://www.abraflexi.eu/api/dokumentace/ref/uzivatelske-vazby/
*
* @param string $vazba
*/
public function vazbaDel($vazba): void
{
$this->setDataValue('uzivatelska-vazba@action', 'delete');
$this->addArrayToBranch(
['uzivatelska-vazba' => $vazba],
'uzivatelske-vazby',
);
}
/**
* Převede data do Json formátu pro AbraFlexi.
* Pokud jsou štítky pole, jsou převedeny na seznam oddělený čárkou.
* Convert data to AbraFlexi like Json format.
* Array of Labels is converted to coma separated list.
*
* @param array<string, array<string, string>|string> $data
* @param int $options json_encode options like JSON_PRETTY_PRINT etc
*
* @return string
*/
public function getJsonizedData($data = null, $options = 0)
{
if (null === $data) {
$data = $this->getData();
}
if (\is_array($data) && \array_key_exists('stitky', $data)) {
if (\is_array($data['stitky'])) {
$data['stitky'] = implode(',', $data['stitky']);
}
}
return parent::getJsonizedData($data, $options);
}
/**
* Get Data Fragment specific for current object.
*
* @param array<string, string> $data
*/
public function getDataForJSON($data = null): array
{
if (null === $data) {
$data = $this->getData();
}
$dataForJSON = parent::getDataForJSON($data);
if (null !== $this->atomic) {
$dataForJSON['@atomic'] = $this->atomic;
}
if (isset($this->sourceId)) {
$dataForJSON['@sourceId'] = $this->sourceId;
$this->sourceId = null;
}
return $dataForJSON;
}
/**
* Insert current data into AbraFlexi and load actual record data back.
*
* @param array $data Initial data to save
*
* @return bool Operation success
*/
public function sync($data = null)
{
$this->insertToAbraFlexi($data);
$insertResult = $this->lastResponseCode;
if ($insertResult === 201) {
$this->reload();
}
$loadResult = $this->lastResponseCode;
return $this->dryRun ? $insertResult === 200 : ($insertResult + $loadResult) === 401;
}
/**
* Last operation was successfull ?
*
* @return bool
*/
public function success()
{
$this->curlInfo['http_method'] === 'POST' ? $this->lastResponseCode === 201 : parent::success();
}
/**
* Make Copy of given record with optional modifications.
*
* !!!Experimental Feature!!!
*
* @param int $source
* @param array $overrides
*
* @return null|RW copied record object or null in case of failure
*/
public function copy($source, $overrides = [])
{
$this->sourceId = $source;
return $this->sync($overrides) ? $this : null;
}
/**
* Perform given action (if available) on current evidence/record.
*
* @url https://demo.flexibee.eu/devdoc/actions
*
* @param string $action one of evidence actions
* @param string $method ext|int External method call operation in URL.
* Internal add the @action element to request body
*
* @return bool operation success
*/
public function performAction(string $action, $method = 'int'): bool
{
$actionsAvailable = $this->getActionsInfo();
$result = false;
if (
\is_array($actionsAvailable) && \array_key_exists(
$action,
$actionsAvailable,
)
) {
switch ($actionsAvailable[$action]['actionMakesSense']) {
case 'ONLY_WITH_INSTANCE_AND_NOT_IN_EDIT':
case 'ONLY_WITH_INSTANCE': // Add instance
$urlSuffix = '/'.$this->__toString().'/'.$action;
break;
default:
$urlSuffix = '/'.$action;
break;
}
switch ($method) {
case 'int':
$this->setAction($action);
$this->setPostFields($this->getJsonizedData(['id' => $this]));
$this->performRequest('', 'POST');
$result = $this->lastResponseCode === 201;
break;
default:
$result = $this->performRequest(
$this->evidenceUrlWithSuffix($urlSuffix),
'GET',
);
break;
}
} elseif ($this->throwException === true) {
$this->lastResponseCode = 404;
throw new Exception(
sprintf(
_('Unsupported action "%s" for evidence "%s"'),
$action,
$this->getEvidence(),
),
$this,
);
}
return $result;
}
/**
* Add External ID to Current Record.
*
* @param string $extId ext:whatever:123 or simplay whatever:123
*
* @return array Insert result
*/
public function addExternalID($extId)
{
return $this->insertToAbraFlexi([
'id' => [
$this->getRecordID(), 'ext:'.preg_replace(
'/^ext:/',
'',
$extId,
),
],
]);
}
/**
* Change Value of external id identified by selector. Add new if not exists.
*
* @param string $selector ext:$selector:$newValue
* @param int|string $newValue string or number
* @param int|string $forID Other than current record id
*
* @return array operation result
*/
public function changeExternalID($selector, $newValue, $forID = null)
{
$change['@removeExternalIds'] = 'ext:'.$selector.':';
$change['id'] = [
null === $forID ? $this->getRecordID() : $forID,
'ext:'.$selector.':'.$newValue,
];
return $this->insertToAbraFlexi($change);
}
/**
* Send all unsent Documents by eMail.
*
* @url https://www.abraflexi.eu/api/dokumentace/ref/odesilani-mailem/
*
* @return bool http response code
*/
public function sendUnsent()
{
$this->performRequest('automaticky-odeslat-neodeslane', 'PUT', 'xml');
return $this->lastResponseCode === 202;
}
/**
* {@inheritDoc}
*/
public function setDataValue(string $columnName, $value): bool
{
if ($this->debug === true) {
$columnInfo = $this->getColumnInfo($columnName);
if ($columnInfo) {
if (\array_key_exists('maxLength', $columnInfo) && (mb_strlen((string) $value) > $columnInfo['maxLength'])) {
$this->addStatusMessage($value.' is too long. Shorting to '.$columnInfo['maxLength'].' characters', 'warning');
$value = substr($value, 0, (int) $columnInfo['maxLength']);
}
}
}
return parent::setDataValue($columnName, $value);
}
/**
* New Web Interface Item editor link. It use record ID. If record Id is not
* available try to load record using its code to obtain current record Id.
*
* @return string link to item editor or empty string
*/
public function flexiEditUrl()
{
$recId = $this->getRecordID();
if (empty($recId)) {
$helper = new self(Functions::code($this->getRecordCode()), ['detail' => 'id']);
$recId = $helper->getRecordID();
}
return empty($recId) ? '' : $this->url.'/flexi/'.$this->getCompany().'/'.$this->getEvidence().'/'.$recId.'/edit';
}
}