-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathApi.php
439 lines (349 loc) · 11.2 KB
/
Api.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
<?php
namespace Linnworks;
require_once('nusoap/nusoap.php');
class LinnworksException extends \Exception { }
class NotImplementedException extends \BadMethodCallException {}
class LinnworksApiBase{
protected $_apiKey = null;
protected $_client = null;
protected $_wsdl = null;
public function __construct($apiKey){
$this->_apiKey = $apiKey;
$this->_client = new \nusoap_client($this->_wsdl, true);
}
public function getClient(){
return $this->_client;
}
/*
* nusoap SOAP request
*
* @returns the XML soap request envelope
* from the last API call
*/
public function request(){
return $this->getClient()->request;
}
/*
* nusoap SOAP response
*
* @returns the XML soap response envelope
* from the last API call
*/
public function response(){
return $this->getClient()->response;
}
/*
* nusoap debug function.
*
* @returns WSDL composition debug information
*/
public function debug(){
return $this->getClient()->debug_str;
}
/*
* A convenience method to handle error responses from the Linnworks API
* NOTE: not all api calls return error data in this format, but most do.
*/
protected function handleError($result){
if(is_array($result) && array_key_exists('IsError', $result) && $result['IsError'] == "true"){
throw new LinnworksException($result['Error']);
}
return false;
}
/*
* A convenience function to automatically pass in the Linnworks auth token,
* return the correct data, and handle any errors.
*/
protected function _call($method, $params=array()){
$args = array_merge(array('Token'=>$this->_apiKey), $params);
$response = $this->getClient()->call($method, $args);
if(is_array($response)){
$result = $response[$method.'Result'];
if(!$this->handleError($result)){
return $result;
}
}
else{
throw new LinnworksException('Error - invalid response from newsoap. See echo $api->debug() for more information');
}
}
}
class InventoryApi extends LinnworksApiBase{
public function __construct($apiKey){
$this->_wsdl = "http://api.linnlive.com/inventory.asmx?wsdl";
parent::__construct($apiKey);
}
public function stockLevelAddDeduct($skuOrBarcode, $diff, $updateSource, $locationId){
$result = $this->_call('StockLevelAddDeduct', array('SKUorBarcode'=>$skuOrBarcode, 'diff'=>$diff, 'updateSource'=>$updateSource, 'pkLocationId'=>$locationId ));
return $result;
}
/*
* changeStockLevel
*
* http://api.linnlive.com/inventory.asmx?op=ChangeStockLevel
*
* @args
* $itemId - Linnworks product guid (e.g pkOrderItemId)
* $location - string correlates with warehouse location, if in doubt use "Default"
* $level - integer field indicating stock level for product at this location
*
* @returns
* SOAP response
*
* TODO: process the soap response and return true/false
*/
public function changeStockLevel($itemId, $location, $level){
$stockLevel = array('Level'=>$level, 'IsSetLevel'=>true, 'Location'=>$location);
$result = $this->_call('ChangeStockLevel', array('pkStockItemId'=>$itemId, 'stocklevel'=>$stockLevel));
return $result;
}
/*
* saveStockItem
*
* http://api.linnlive.com/inventory.asmx?op=SaveStockItem
*
* @args
* $item
* @returns
* A linnworks itemId
*/
public function saveStockItem( $item ){
$response = $this->_call('SaveStockItem', array('item' => $item));
return $result['StockItems']['StockItem']['pkStockItemId'];
}
public function getStockItem($filter){
return $this->_call('GetStockItem', array('filter' => $filter));
}
/*
* getStockItemBySku
*
* @args
* $sku - string containing the product sku
* @returns
* stock item array if found, otherwise returns null
*/
public function getStockItemBySku($sku){
$response = $this->getStockItem(array('SKU'=>$sku, 'IsSetSKU'=>'true'));
if($response['StockItems'] == ""){
return null;
}
else{
return $response['StockItems']['StockItem'];
}
}
public function getStockItemByBarcode($barcode)
{
$response = $this->getStockItem(array('BarcodeNumber' => $barcode, 'IsSetBarcodeNumber' => 'true'));
if($response['StockItems'] == ""){
return null;
}
else{
return $response['StockItems']['StockItem'];
}
}
/*
* deleteStockItem
*
* http://api.linnlive.com/inventory.asmx?op=DeleteStockItem
*/
public function deleteStockItem($pkStockItemId){
$response = $this->_call('DeleteStockItem', array('pkStockItemId' => $pkStockItemId));
}
/*
* Change a binrack location
*
* args:
* pkStockItemId - the linnworks item id
* $location - the location assoc array containing:
* LocationID - guid
* LocationName - string (e.g. Default, Shop etc.)
* BinRack - string
* delete - set to true to remove the binrack location
*/
public function updateStockItemLocation($pkStockItemId, $location, $delete=false){
$response = $this->_call('UpdateStockItemLocation', array('pkStockItemId'=>$pkStockItemId, 'location'=>$location, 'Delete'=>$delete));
return true;
}
}
class OrderApi extends LinnworksApiBase{
public function __construct($apiKey){
$this->_wsdl = "http://api.linnlive.com/order.asmx?wsdl";
parent::__construct($apiKey);
}
/*
* addNewOrder
*
* See: http://api.linnlive.com/order.asmx?op=AddNewOrder
*/
public function addNewOrder($order){
$result = $this->_call('AddNewOrder', array('order'=>$order));
$result['Orders']['OrderLite'];
}
/*
* addOrderAudit
*
* See: http://api.linnlive.com/order.asmx?op=AddOrderAudit
*
* @args:
* $itemId - Linnworks pkOrderItemId
* $audit - $audit associative array (see the above link for details)
*/
public function addOrderAudit($itemId, $audit){
/*
* Sample "object":
* $audit = array('HistoryNote'=>'',
* 'fkOrderHistoryTypeId'=>'', // See generic API for types
* 'Datestamp'=>'',
* 'Tag'=>'',
* 'updatedBy'=>'');
*/
$response = $this->_call('AddOrderAudit', array('pkOrderItemId'=>$itemId, 'audit'=> $audit));
}
public function addOrderAuditBatch($orderAuditSingletonItems){
throw new NotImplementedException;
}
public function addBatchReturns($returnRequests){
throw new NotImplementedException;
}
public function deleteOrder($returnRequests){
throw new NotImplementedException;
}
/*
* getFilteredOrders
*
* See http://api.linnlive.com/order.asmx?op=GetFilteredOrders
*/
public function getFilteredOrders($filter){
$result = $this->_call('GetFilteredOrders', array('Filter'=>$filter));
return $result;
}
public function getLiteOpenOrders(){
throw new NotImplementedException;
}
public function partShipOrders(){
throw new NotImplementedException;
}
public function getOrderById($orderId){
$filter = array('OrderIdIsSet'=>true, 'OrderId'=>$orderId);
$result = $this->getFilteredOrders($filter);
return $result['Orders']['Order'];
}
/*
* updateOrder
*
* See: http://api.linnlive.com/order.asmx?op=UpdateOrder
*/
public function updateOrder($order){
$response = $this->_call('UpdateOrder', array('order'=>$order));
return true;
}
public function processOrder(){
throw new NotImplementedException;
}
}
/*
* Linnworks generic API - currently no methods implemented
*
* Reference docs: http://api.linnlive.com/generic.asmx
*/
class GenericApi extends LinnworksApiBase{
public function __construct($apiKey){
$this->_wsdl = "http://api.linnlive.com/generic.asmx?wsdl";
parent::__construct($apiKey);
}
public function addCountry(){
throw new NotImplementedException;
}
public function addProductCountry(){
throw new NotImplementedException;
}
public function checkToken(){
throw new NotImplementedException;
}
public function deleteCountry(){
throw new NotImplementedException;
}
public function deleteProductCategory(){
throw new NotImplementedException;
}
public function generateToken(){
throw new NotImplementedException;
}
public function getAllAppSettings(){
throw new NotImplementedException;
}
public function getAppSettings(){
throw new NotImplementedException;
}
public function getAuditTypes(){
throw new NotImplementedException;
}
public function getCategories(){
throw new NotImplementedException;
}
public function getCountryList(){
throw new NotImplementedException;
}
public function getExtendedPropertyTypes(){
throw new NotImplementedException;
}
public function getLocations(){
$result = $this->_call('GetLocations', array());
if(!$this->handleError($result)){
return $result['DataObj']['StockItemLocation'];
}
}
public function getOrderStatusTypes(){
throw new NotImplementedException;
}
public function getPackagingGroups(){
throw new NotImplementedException;
}
public function getPaymentMethods(){
throw new NotImplementedException;
}
public function getPostalServices(){
throw new NotImplementedException;
}
public function getPurchaseOrderAuditTypes(){
throw new NotImplementedException;
}
public function getSuppliers(){
throw new NotImplementedException;
}
public function updateCountry(){
throw new NotImplementedException;
}
}
/*
* Purchase Order API - currently no methods are implemented
*
* See: http://api.linnlive.com/PurchaseOrder.asmx
*/
class PurchaseOrderApi extends LinnworksApiBase{
public function __construct($apiKey){
$this->_wsdl = "http://api.linnlive.com/order.asmx?wsdl";
parent::__construct($apiKey);
}
public function actionBatchPurchaseOrderItemDelivered(){
throw new NotImplementedException;
}
public function actionPurchaseOrderItemDelivered(){
throw new NotImplementedException;
}
public function addPurchaseOrderAuditTrail(){
throw new NotImplementedException;
}
public function getFilteredPoList(){
throw new NotImplementedException;
}
public function getPoList(){
throw new NotImplementedException;
}
public function getPurchaseOrder(){
throw new NotImplementedException;
}
public function lockPurchaseOrder(){
throw new NotImplementedException;
}
}