-
Notifications
You must be signed in to change notification settings - Fork 0
/
postArticleData.php
970 lines (702 loc) · 26.8 KB
/
postArticleData.php
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
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
<?php
require_once 'inc/config.php';
$target_dir = "uploads/";
$target_file = $target_dir . basename($_FILES["fileToUpload"]["name"]);
// Check if image file is a actual image or fake image
if(isset($_POST["submit"])) {
if (move_uploaded_file($_FILES["fileToUpload"]["tmp_name"], $target_file)) {
$filename = htmlspecialchars(basename( $_FILES["fileToUpload"]["name"]));
echo "Die Datei ". $filename . " wurde hochgeladen!";
if(isset($_POST["uploadProducts"])){
//Show button to check upload status
echo '<a href="getUploadStatus.php"><button>Uploadstatus prüfen</button></a>';
//Read csv content
$postfields = readDataFromCSV($url, $accessToken, $target_dir . $filename, "products");
uploadProductData($url, $accessToken, $postfields, $username, $password);
}
else if(isset($_POST["uploadQuantity"])){
echo '<a href="inc/quantityErrors.csv"><button>Error-File in Excel öffnen</button></a><br><br>';
$postfields = readDataFromCSV($url, $accessToken, $target_dir . $filename, "quantity");
uploadQuantityData($url, $accessToken, $postfields, $username, $password);
}
} else {
echo "Fehler beim Upload...";
}
}
/*
* TODO: Write documentation
*
* @input String Base api url (productive or test)
* @input String Access token for the api
* @input Array
* @input String
* @return Array Decoded json result
*/
function readDataFromCSV($url, $accessToken, $filepath, $identifier){
$brands_json = file_get_contents('inc/brands.json');
$brands = json_decode($brands_json);
$weeCategories = explode("\n", file_get_contents('inc/weeeCategories.csv'));
$csv = file_get_contents($filepath);
$postfields = array();
if (($handle = fopen($filepath, "r")) !== FALSE) {
fgetcsv($handle); //Skip first line
$i = 0; // Count lines
while (($data = fgetcsv($handle, 0, ";")) !== FALSE) {
if($identifier === "products"){
array_push($postfields, getProductJsonFromCSVData($data, $brands, $weeCategories));
}
else if($identifier === "quantity"){
array_push($postfields, getQuantityJsonFromCSVData($data));
}
$i++;
if($i % 1000 === 0){ LogMe("readDataFromCSV " . $i); }
}
fclose($handle);
} else {
echo "Fehler beim Lesen der Datei...";
}
return $postfields;
}
/*
* TODO: Write documentation
*
* @input String Base api url (productive or test)
* @input String Access token for the api
* @input Array
* @return Array Decoded json result
*/
function uploadProductData($url, $accessToken, $postfields, $username, $password){
//Split in chunks with 500 articles (max per request)
$chunksize = 500;
$chunkPostfields = array_chunk($postfields, $chunksize);
$uploadIds = "";
$i = 0;
//Start upload
echo "<h1>Uploadinfo</h1>";
foreach ($chunkPostfields as &$value) {
//Get new token every 25000 requests
if($i % 25000 || $i == 0){
$accessToken = getAccessToken($url, $username, $password);
}
echo $i . " - " . getCurrentDateTimeOtto();
echo "<br>";
$spResult = uploadProducts($url, $accessToken, $value, 'product_' . $i);
$uploadIds .= $spResult["links"][0]["href"] . "\r\n";
$i += $chunksize;
LogMe("uploadProductData " . $i);
//Wait 100ms
//usleep(100000);
echo "<br><br>";
}
$file = 'inc/uploadId.txt';
//Write upload id to file
file_put_contents($file, $uploadIds);
}
/*
* TODO: Write documentation
*
* @input String Base api url (productive or test)
* @input String Access token for the api
* @input Array
* @return Array Decoded json result
*/
function uploadQuantityData($url, $accessToken, $postfields, $username, $password){
$chunksize = 200;
//Split in chunks with 200 articles (max per request)
$chunkPostfields = array_chunk($postfields, $chunksize);
$i = 0;
$csv = 0;
//Start upload
echo "<h1>Uploadinfo</h1>";
foreach ($chunkPostfields as &$value) {
//Get new token every 25000 requests
if($i % 25000){
$accessToken = getAccessToken($url, $username, $password);
}
echo $i . " - " . getCurrentDateTimeOtto();
echo "<br>";
$quantityResult = uploadQuantities($url, $accessToken, $value, 'quantity_' . $i);
if(isset($quantityResult["errors"])){
logMe($quantityResult["errors"]);
foreach($quantityResult["errors"] as &$value){
$csv .= $value["logref"] . ";" . $value["title"] . ";" . $value["detail"] . PHP_EOL;
}
}
$i += $chunksize;
LogMe("uploadQuantityData " . $i . " - " . var_dump($quantityResult));
//Wait 100ms
usleep(100000);
}
$csv = 'Logref;Title;Detail' . PHP_EOL . $csv;
$file = 'inc/quantityErrors.csv';
//Write upload id to file
file_put_contents($file, $csv);
}
/*
* TODO: Write documentation
*
* @input String Base api url (productive or test)
* @input String Access token for the api
* @input Array
* @return Array Decoded json result
*/
function uploadProducts($url, $accessToken, $postfields, $filenameJson){
$json = JSONfyPostfields($postfields, $filenameJson);
// Generated by curl-to-PHP: http://incarnate.github.io/curl-to-php/
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url . '/v3/products');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $json);
$headers = array();
$headers[] = 'Authorization: Bearer ' . $accessToken;
$headers[] = 'X-Request-Timestamp: SOME_STRING_VALUE';
$headers[] = 'Content-Type: application/json';
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$result = curl_exec($ch);
if (curl_errno($ch)) {
echo 'Error:' . curl_error($ch);
}
curl_close($ch);
$jsonDecode = json_decode($result, true);
if($jsonDecode["state"] != "pending"){
logMe($result);
}
return $jsonDecode;
}
/*
* TODO: Write documentation
*
* @input String Base api url (productive or test)
* @input String Access token for the api
* @input Array
* @return Array Decoded json result
*/
function uploadQuantities($url, $accessToken, $postfields, $filenameJson){
$json = JSONfyPostfields($postfields, $filenameJson);
// Generated by curl-to-PHP: http://incarnate.github.io/curl-to-php/
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url . '/v2/quantities');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $json);
$headers = array();
$headers[] = 'Authorization: Bearer ' . $accessToken;
$headers[] = 'Content-Type: application/json;charset=UTF-8';
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$result = curl_exec($ch);
if (curl_errno($ch)) {
echo 'Error:' . curl_error($ch);
}
curl_close($ch);
return json_decode($result, true);
}
/*
* Formats the csv data as json.
* Replaces line breaks, tab stops, <ul> and <li> tags
* Checks, if base unit is existent; If not, it's not included in the json
* Prices and sales amounts can have a , as decimal seperator; The function changes commas with dots
*
*
* Format:
* SKU [0];EAN [1];Herstellernr [2];Marke angepasst [3];Bezeichnung [4];
* Beschreibung [5];Bilddateiname [6];Lieferzeit [7];Preis [8];Grundeinheit [9];
* Grundmenge [10];Kategorie [11];Marke Original [12]; VPE [13]; Farbe [14];
* Größe [15]; Norm [16]; Material [17]; Produktart [18]; Ausführung [19];
* Zertifikat [20]; Gefahrgut [21]; MOIN [22]; WEEE-Number [23]
*
* @input String Csv line in the correct format (generated via fgetcsv)
* @input String Array with all the available brands
* @input String Array with all categories that require a weee number
* @return String Json string for product data uploads
*/
function getProductJsonFromCSVData($csvData, $brands, $weeeCategories){
$baseUnitJson = '';
$baseUnit = getOttoBaseUnit($csvData[9]);
//Only add base unit, if it actually exists
if($baseUnit != null && $baseUnit != ""){
$baseUnitJson = ',
"normPriceInfo":{
"normAmount":1,
"normUnit":"' . $baseUnit . '",
"salesAmount":' . str_replace(',', '.', $csvData[10]) . ',
"salesUnit":"' . $baseUnit . '"
}';
}
$vpeString = "";
//Support for multiple units in one package
if($csvData[13] != null && $csvData[13] != "" && $csvData[13] != "1"){
$vpeString = $csvData[13]. 'er Pack ';
}
$bulletpoints = " ";
//Bulletpoints
for($i = 14; $i < 20; $i++){
if($csvData[$i] != null && $csvData[$i] != ""){
$bulletpoints .= $csvData[$i] . ' | ';
}
}
//Remove last 2 chars from bulletpoints
$bulletpoints = substr_replace($bulletpoints, "", -2);
//Replace " with ''
$bulletpoints = str_replace('"', "''", $bulletpoints);
$attributes = "";
//Set attributes, if Werkzeugset
if($csvData[11] == "Werkzeugset"){
//Is the product dangerous?
$dangerGood = "Produkt fällt nicht unter die Gefahrgutvorschriften.";
if($csvData[21] != null && $csvData[21] != ""){
$dangerGood = "Produkt fällt unter die Gefahrgutvorschriften.";
}
$attributes = ',
"attributes":[{
"name":"Relevanz Gefahrgut",
"values":["' . $dangerGood . '"]
}]';
}
//Add attributes for weee number if a weee number is listed in the csv
else {
//Check categories
foreach($weeeCategories as $weeeCategory){
//Category found
if(trim(strtolower($weeeCategory)) == trim(strtolower($csvData[11]))){
//Check if a weee number is listed
if($csvData[23] != null || $csvData[23] != ""){
$attributes = ',
"attributes":[{
"name":"Geräteart laut ElektroG",
"values":["Kleingeräte, die in privaten Haushalten genutzt werden können."]
},
{
"name":"WEEE-Reg.-Nr. DE",
"values":["' . preg_replace('/\D/', '', $csvData[23]) . '"]
}]'; //Removes the DE from the weee number
}
else{
$attributes = ',
"attributes":[{
"name":"Geräteart laut ElektroG",
"values":["Produkt fällt nicht unter das ElektroG."]
}]';
}
break;
}
}
}
//Only transfer moin, if it was listed in the csv
$moin = "";
if($csvData[22] != null && $csvData[22] != ""){
$moin = '"moin":"' . $csvData[22] . '",';
}
//"ohne Marke"
$productBrandId = "00000000";
//Search for BrandId
foreach($brands as $brand){
if(strtolower($brand->name) === strtolower($csvData[3])){
$productBrandId = $brand->id;
break;
}
}
//logMe($csvData[0] . " - " . strtolower($csvData[3]) . " - " . $productBrandId);
//Generate json
$json =
'{
"productReference":"' . $csvData[0] . '",
"sku":"' . $csvData[0] . '",
"ean":"' . $csvData[1] . '",
"pzn":"0",
"mpn":"' . $csvData[2] . '", ' . $moin . '
"releaseDate":"1970-01-01T00:00:00.000Z",
"productDescription":{
"category":"' . $csvData[11] . '",
"brandId":"' . $productBrandId . '",
"productLine":"' . substr($vpeString . $csvData[4], 0, 70) . '",
"manufacturer":"' . $csvData[12] . '",
"productionDate":"1970-01-01T00:00:00.000Z",
"multiPack":false,
"bundle":false,
"fscCertified":false,
"disposal":false,
"productUrl":"https://www.loechel-industriebedarf.de/nwsearch/execute?query=' . $csvData[0] . '",
"description":"' . substr($csvData[5], 0, 2000) . '",
"bulletPoints":[
"' . $csvData[12] . '",
"' . $vpeString . '",
"' . $bulletpoints . '"
]' . $attributes . '
},
"mediaAssets":[{
"type":"IMAGE",
"location":"' . $csvData[6] . '"
}],
"delivery":{
"type":"PARCEL",
"deliveryTime":' . $csvData[7] . '
},
"pricing":{
"standardPrice":{
"amount":' . str_replace(',', '.', $csvData[8]) . ',
"currency":"EUR"
},
"vat":"FULL"
' . $baseUnitJson . '
},
"logistics":{
"packingUnitCount":1
}
}';
$json = str_replace('<br>', ' ', $json);
$json = str_replace('<BR>', ' ', $json);
$json = str_replace('<ul>', ' ', $json);
$json = str_replace('<UL>', ' ', $json);
$json = str_replace('<li>', ' ', $json);
$json = str_replace('<LI>', ' ', $json);
$json = preg_replace('/\t+/', ' ', $json); //Remove tab
$json = str_replace('\\r\\n', ' ', $json); //Remove line breaks
return $json;
}
/*
* Formats the csv data as json.
*
* Format:
* SKU [0];Bestand [1]
*
* @input String Csv line in the correct format (generated via fgetcsv)
* @return String Json string for quantity uploads
*/
function getQuantityJsonFromCSVData($csvData){
$json = '
{
"lastModified": "' . getDateTimeOttoOneHourAgo() . '",
"quantity": ' . $csvData[1] . ',
"sku": "' . $csvData[0] . '"
}
';
return $json;
}
/*
* Gets the quantity from a single sku.
*
* @input String Base api url (productive or test)
* @input String Access token for the api
* @input String The sku number, we want to get the quantity from
* @return Array Decoded json result
*/
function getQuantityFromSKU($url, $accessToken, $sku){
// Generated by curl-to-PHP: http://incarnate.github.io/curl-to-php/
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url . '/v2/quantities/' . $sku);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'GET');
$headers = array();
$headers[] = 'Authorization: Bearer ' . $accessToken;
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$result = curl_exec($ch);
if (curl_errno($ch)) {
echo 'Error:' . curl_error($ch);
}
curl_close($ch);
return json_decode($result, true);
}
/*
* Transform base units into the correct format
*
* Allowed units
* 'Stk', 'qm', 'kg', 'l', 'm', 'ml', 'g', 'Paar', 'RM', 'dm3'
*
* @return String Base unit, included in the source csv file
* @return String Base unit, accepted by Otto
*/
function getOttoBaseUnit($unitOriginal){
switch($unitOriginal){
case "L":
$baseUnit = "l";
break;
case "ST":
$baseUnit = "Stk";
break;
case "m²":
$baseUnit = "qm";
break;
case "M":
$baseUnit = "m";
break;
case "ML":
$baseUnit = "ml";
break;
case "KG":
$baseUnit = "kg";
break;
case "G":
$baseUnit = "g";
break;
case "RL":
$baseUnit = "Stk";
break;
case "RL":
$baseUnit = "Stk";
break;
default:
$baseUnit = $unitOriginal;
}
return $baseUnit;
}
/*******************************************************************************************************
*
* Debug and non working stuff~ Ignore plz.
*
*******************************************************************************************************/
/*
* Generates a json array for two test products.
*
* @return Array Two test products with data
*/
function getTestProducts(){
$postfields = array();
array_push($postfields, '{
"productReference":"39976396283",
"sku":"39976396283",
"ean":"4270002512702",
"isbn":"",
"upc":"",
"pzn":"0",
"mpn":"39976396283",
"moin":"",
"releaseDate":"1970-01-01T00:00:00.000Z",
"productDescription":{
"category":"Elektrowerkzeug-Set",
"brand":"Löchel Industriebedarf",
"productLine":"LÖCHEL Industriebedarf Qualitäts-Bremsenreiniger 500 ml",
"manufacturer":"WEICON",
"productionDate":"1970-01-01T00:00:00.000Z",
"multiPack":false,
"bundle":false,
"fscCertified":false,
"disposal":false,
"productUrl":"https://www.loechel-industriebedarf.de/nwsearch/execute?query=39976396283",
"description":"LÖCHEL Industriebedarf Qualitäts-Bremsenreiniger 500 ml",
"bulletPoints":["Löchel Industriebedarf"]
},
"mediaAssets":[{
"type":"IMAGE",
"location":"https://www.loechel-industriebedarf.de/upload/shoppictures_95/39976396283.jpg"
}],
"delivery":{
"type":"PARCEL",
"deliveryTime":2
},
"pricing":{
"standardPrice":{
"amount":7.79,
"currency":"EUR"
},
"vat":"FULL",
"normPriceInfo":{
"normAmount":1,
"normUnit":"l",
"salesAmount":500,
"salesUnit":"ml"
}
},
"logistics":{
"packingUnitCount":1
}
}');
array_push($postfields, '{
"productReference":"39976396284",
"sku":"39976396284",
"ean":"4270002512719",
"isbn":"",
"upc":"",
"pzn":"0",
"mpn":"39976396284",
"moin":"",
"offeringStartDate":"1970-01-01T00:00:00.000Z",
"releaseDate":"1970-01-01T00:00:00.000Z",
"productDescription":{
"category":"Elektrowerkzeug-Set",
"brand":"Löchel Industriebedarf",
"productLine":"LÖCHEL Industriebedarf Qualitäts-Sprühreiniger Entfetter S 500 ml",
"manufacturer":"WEICON",
"productionDate":"1970-01-01T00:00:00.000Z",
"multiPack":false,
"bundle":false,
"fscCertified":false,
"disposal":false,
"productUrl":"https://www.loechel-industriebedarf.de/nwsearch/execute?query=39976396284",
"description":"LÖCHEL Industriebedarf Sprühreiniger S 500 ml Der Sprühreiniger S von LÖCHEL Industriebedarf entfernt ölige und fettige Verschmutzungen von allen Metallen sowie von Keramik, Glas und den meisten Kunststoffen. Er kann jedoch die Oberfläche von Thermoplasten wie PVC, Plexiglas, Polystyrol und einfachen Lackschichten angreifen. LÖCHEL Industriebedarf Reiniger S verdunstet schnell und im Gegensatz zu herkömmlichen Verdünnern rückstandsfrei. Er kann zur Reinigung und Entfettung vor dem Grundieren und Lackieren, zur Reinigung von Maschinenteilen oder vor dem Auftragen anderer LÖCHEL Industriebedarf Produkte auf Oberflächen eingesetzt werden, wo ein fettiger Untergrund deren Wirkung beeinträchtigen würde.",
"bulletPoints":["Löchel Industriebedarf"]
},
"mediaAssets":[{
"type":"IMAGE",
"location":"https://www.loechel-industriebedarf.de/upload/shoppictures_95/39976396284.jpg"
}],
"delivery":{
"type":"PARCEL",
"deliveryTime":2
},
"pricing":{
"standardPrice":{
"amount":7.55,
"currency":"EUR"
},
"vat":"FULL",
"normPriceInfo":{
"normAmount":1,
"normUnit":"l",
"salesAmount":500,
"salesUnit":"ml"
}
},
"logistics":{
"packingUnitCount":1
}
}');
/*
curl_setopt($ch, CURLOPT_POSTFIELDS,
'[{
"productReference":"UBN-11779",
"sku":"3858389911564",
"ean":"3858389911564",
"isbn":"978-3-16-148410-0",
"upc":"042100005264",
"pzn":"PZN-4908802",
"mpn":"H2G2-42",
"moin":"M00A1234BC",
"offeringStartDate":"2019-10-19T09:30:00.000Z",
"releaseDate":"2019-10-19T09:30:00.000Z",
"maxOrderQuantity":5,
"productDescription":{
"category":"Outdoorjacke",
"brand":"Adidas",
"productLine":"501",
"manufacturer":"3M",
"productionDate":"2021-07-02T09:30:52.093Z",
"multiPack":true,
"bundle":false,
"fscCertified":true,
"disposal":false,
"productUrl":"http://myproduct.somewhere.com/productname/",
"description":"<p>Some example words...<b>in bold</b>...some more</p>",
"bulletPoints":["My top key information..."],
"attributes":[{
"name":"Bundweite",
"values":["34"],"additional":true
}]
},
"mediaAssets":[{
"type":"IMAGE",
"location":"http://apartners.url/image-location"
}],
"delivery":{
"type":"PARCEL",
"deliveryTime":1
},
"pricing":{
"standardPrice":{
"amount":19.95,
"currency":"EUR"
},
"vat":"FULL",
"msrp":{
"amount":19.95,
"currency":"EUR"
},
"sale":{
"salePrice":{
"amount":19.95,
"currency":"EUR"
},
"startDate":"2019-10-19T09:30:00.000Z",
"endDate":"2019-10-19T09:30:00.000Z"
},
"normPriceInfo":{
"normAmount":100,
"normUnit":"g",
"salesAmount":500,
"salesUnit":"g"
}
},
"logistics":{
"packingUnitCount":3,
"packingUnits":[{
"weight":365,
"width":600,
"height":200,
"length":300
}]
}
}]');
*/
return $postfields;
}
/*
* PRICE UPLOAD NOT WORKING
* string(47) "could not convert parameter and/or header value"
*/
/*
function uploadPricesQuantities($url, $accessToken, $postfields){
//Split in chunks with 500 articles (max per request)
$chunkPostfields = array_chunk($postfields, 200);
$uploadIds = "";
//Start upload
echo "<h1>Uploadinfo</h1>";
foreach ($chunkPostfields as &$value) {
$priceResult = uploadPrices($url, $accessToken, $value);
echo "<pre>";
var_dump($priceResult);
echo "</pre>";
$uploadIds .= $priceResult["links"][0]["href"] . "\r\n";
$quantityResult = uploadQuantities($url, $accessToken, $value);
echo "<pre>";
var_dump($quantityResult);
echo "</pre>";
$uploadIds .= $quantityResult["links"][0]["href"] . "\r\n";
//Wait 100ms
//usleep(100000);
}
$file = 'inc/uploadId.txt';
//Write upload id to file
file_put_contents($file, $uploadIds);
}
*/
/*
* CURRENTLY NOT WORKING!
*/
/*
function uploadPrices($url, $accessToken, $postfields){
// Generated by curl-to-PHP: http://incarnate.github.io/curl-to-php/
$ch = curl_init();
$json = '[
{
"sku":"39976396283",
"standardPrice":{
"amount":19.99,
"currency":"EUR"
}
},
{
"sku":"39976396284",
"standardPrice":{
"amount":19.99,
"currency":"EUR"
}
}
]';
echo $json;
curl_setopt($ch, CURLOPT_URL, $url . '/v2/products/prices');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $json);
$headers = array();
$headers[] = 'Authorization: Bearer ' . $accessToken;
$headers[] = 'X-Request-Timestamp: ' . getCurrentDateTimeOtto();
$headers[] = 'Content-Type: application/json';
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$result = curl_exec($ch);
if (curl_errno($ch)) {
echo 'Error:' . curl_error($ch);
}
curl_close($ch);
return json_decode($result, true);
}
*/