-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWSClient.php
454 lines (400 loc) · 11.3 KB
/
WSClient.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
<?php
/*************************************************************************************************
* Copyright 2015 JPL TSolucio, S.L. -- This file is a part of TSOLUCIO coreBOS Customizations.
* Licensed under the vtiger CRM Public License Version 1.1 (the "License"); you may not use this
* file except in compliance with the License. You can redistribute it and/or modify it
* under the terms of the License. JPL TSolucio, S.L. reserves all rights not expressly
* granted by the License. coreBOS distributed by JPL TSolucio S.L. is distributed in
* the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. Unless required by
* applicable law or agreed to in writing, software distributed under the License is
* distributed on an "AS IS" BASIS, WITHOUT ANY WARRANTIES OR CONDITIONS OF ANY KIND,
* either express or implied. See the License for the specific language governing
* permissions and limitations under the License. You may obtain a copy of the License
* at <http://corebos.org/documentation/doku.php?id=en:devel:vpl11>
*************************************************************************************************/
global $coreBOS_Basedir;
if (empty($coreBOS_Basedir)) {
$coreBOS_Basedir = __DIR__;
}
require_once $coreBOS_Basedir.'/Net/HTTP_Client.php';
/**
* Vtiger Webservice Client
*/
class Vtiger_WSClient {
// Webserice file
var $_servicebase = 'webservice.php';
// HTTP Client instance
var $_client = false;
// Service URL to which client connects to
var $_serviceurl = false;
// Webservice user credentials
var $_serviceuser= false;
var $_servicekey = false;
// Webservice login validity
var $_servertime = false;
var $_expiretime = false;
var $_servicetoken=false;
// Webservice login credentials
var $_sessionid = false;
var $_userid = false;
// Last operation error information
var $_lasterror = false;
// Version
var $wsclient_version = 'coreBOS2.1';
/**
* Constructor.
*/
function __construct($url) {
$this->_serviceurl = $this->getWebServiceURL($url);
$this->_client = new cbHTTP_Client($this->_serviceurl);
}
/**
* Return the client library version.
*/
function version() {
return $this->wsclient_version;
}
/**
* Reinitialize the client.
*/
function reinitalize() {
$this->_client = new cbHTTP_Client($this->_serviceurl);
}
/**
* Get the URL for sending webservice request.
*/
function getWebServiceURL($url) {
if (stripos($url, $this->_servicebase) === false) {
if (strrpos($url, '/') != (strlen($url)-1)) {
$url .= '/';
}
$url .= $this->_servicebase;
}
return $url;
}
/**
* Get actual record id from the response id.
*/
function getRecordId($id) {
$ex = explode('x', $id);
return $ex[1];
}
/**
* Check if result has any error.
*/
function hasError($result) {
if(is_array($result) && isset($result['success']) && $result['success'] === true) {
$this->_lasterror = false;
return false;
}
$this->_lasterror = isset($result['error']) ? $result['error'] : $result;
return true;
}
/**
* Get last operation error
*/
function lastError() {
return $this->_lasterror;
}
/**
* Perform the challenge
* @access private
*/
function __doChallenge($username) {
$getdata = Array(
'operation' => 'getchallenge',
'username' => $username
);
$resultdata = $this->_client->doGet($getdata, true);
if($this->hasError($resultdata)) {
return false;
}
$this->_servertime = $resultdata['result']['serverTime'];
$this->_expiretime = $resultdata['result']['expireTime'];
$this->_servicetoken = $resultdata['result']['token'];
return true;
}
/**
* Check and perform login if requried.
*/
function __checkLogin() {
/*if($this->_expiretime || (time() > $this->_expiretime)) {
$this->doLogin($this->_serviceuser, $this->_servicepwd);
}*/
}
/**
* Do Login Operation
*/
function doLogin($username, $userAccesskey, $withpassword=false) {
// Do the challenge before login
if($this->__doChallenge($username) === false) return false;
$postdata = Array(
'operation' => 'login',
'username' => $username,
'accessKey' => ($withpassword ? $this->_servicetoken.$userAccesskey : md5($this->_servicetoken.$userAccesskey))
);
$resultdata = $this->_client->doPost($postdata, true);
if($this->hasError($resultdata)) {
return false;
}
$this->_serviceuser = $username;
$this->_servicekey = $userAccesskey;
$this->_sessionid = $resultdata['result']['sessionName'];
$this->_userid = $resultdata['result']['userId'];
return true;
}
/**
* Do Logout Operation.
*/
function doLogout(){
$this->__checkLogin();
$postdata = Array(
'operation' => 'logout',
'sessionName' => $this->_sessionid
);
$resultdata = $this->_client->doPost($postdata, true);
if($this->hasError($resultdata)) {
return false;
}
return $resultdata['result'];
}
/**
* Do Query Operation.
*/
function doQuery($query) {
// Perform re-login if required.
$this->__checkLogin();
// Make sure the query ends with ;
$query = trim($query);
if (strrpos($query, ';') != strlen($query)-1) $query .= ';';
$getdata = Array(
'operation' => 'query',
'sessionName' => $this->_sessionid,
'query' => $query
);
$resultdata = $this->_client->doGet($getdata, true);
if($this->hasError($resultdata)) {
return false;
}
return $resultdata['result'];
}
/**
* Get Result Column Names.
*/
function getResultColumns($result) {
$columns = Array();
if(!empty($result)) {
$firstrow= $result[0];
foreach($firstrow as $key=>$value) $columns[] = $key;
}
return $columns;
}
/**
* List types available Modules.
*/
function doListTypes($fieldTypeList='') {
// Perform re-login if required.
$this->__checkLogin();
if (is_array($fieldTypeList)) $fieldTypeList = json_encode($fieldTypeList);
$getdata = Array(
'operation' => 'listtypes',
'sessionName' => $this->_sessionid,
'fieldTypeList' => $fieldTypeList
);
$resultdata = $this->_client->doGet($getdata, true);
if($this->hasError($resultdata)) {
return false;
}
$modulenames = $resultdata['result']['types'];
$returnvalue = Array();
foreach($modulenames as $modulename) {
$returnvalue[$modulename] = Array ( 'name' => $modulename );
}
return $returnvalue;
}
/**
* Describe Module Fields.
*/
function doDescribe($module) {
// Perform re-login if required.
$this->__checkLogin();
$getdata = Array(
'operation' => 'describe',
'sessionName' => $this->_sessionid,
'elementType' => $module
);
$resultdata = $this->_client->doGet($getdata, true);
if($this->hasError($resultdata)) {
return false;
}
return $resultdata['result'];
}
/**
* Retrieve details of record.
*/
function doRetrieve($record) {
// Perform re-login if required.
$this->__checkLogin();
$getdata = Array(
'operation' => 'retrieve',
'sessionName' => $this->_sessionid,
'id' => $record
);
$resultdata = $this->_client->doGet($getdata, true);
if($this->hasError($resultdata)) {
return false;
}
return $resultdata['result'];
}
/**
* Do Create Operation
*/
function doCreate($module, $valuemap) {
// Perform re-login if required.
$this->__checkLogin();
// Assign record to logged in user if not specified
if(!isset($valuemap['assigned_user_id'])) {
$valuemap['assigned_user_id'] = $this->_userid;
}
$postdata = Array(
'operation' => 'create',
'sessionName' => $this->_sessionid,
'elementType' => $module,
'element' => json_encode($valuemap)
);
$resultdata = $this->_client->doPost($postdata, true);
if($this->hasError($resultdata)) {
return false;
}
return $resultdata['result'];
}
function doUpdate($module, $valuemap) {
// Perform re-login if required.
$this->__checkLogin();
// Assign record to logged in user if not specified
if(!isset($valuemap['assigned_user_id'])) {
$valuemap['assigned_user_id'] = $this->_userid;
}
$postdata = Array(
'operation' => 'update',
'sessionName' => $this->_sessionid,
'elementType' => $module,
'element' => json_encode($valuemap)
);
$resultdata = $this->_client->doPost($postdata, true);
if($this->hasError($resultdata)) {
return false;
}
return $resultdata['result'];
}
function doRevise($module, $valuemap) {
// Perform re-login if required.
$this->__checkLogin();
// Assign record to logged in user if not specified
if(!isset($valuemap['assigned_user_id'])) {
$valuemap['assigned_user_id'] = $this->_userid;
}
$postdata = Array(
'operation' => 'revise',
'sessionName' => $this->_sessionid,
'elementType' => $module,
'element' => json_encode($valuemap)
);
$resultdata = $this->_client->doPost($postdata, true);
if($this->hasError($resultdata)) {
return false;
}
return $resultdata['result'];
}
/**
* Do Delete Operation
*/
function doDelete($record) {
// Perform re-login if required.
$this->__checkLogin();
$postdata = Array(
'operation' => 'delete',
'sessionName' => $this->_sessionid,
'id' => $record
);
$resultdata = $this->_client->doPost($postdata, true);
if($this->hasError($resultdata)) {
return false;
}
return $resultdata['result'];
}
/**
* Invoke custom operation
*
* @param String $method Name of the webservice to invoke
* @param Object $type null or parameter values to method
* @param String $params optional (POST/GET)
*/
function doInvoke($method, $params = null, $type = 'POST') {
// Perform re-login if required
$this->__checkLogin();
$senddata = Array(
'operation' => $method,
'sessionName' => $this->_sessionid
);
if(!empty($params)) {
foreach($params as $k=>$v) {
if(!isset($senddata[$k])) {
$senddata[$k] = $v;
}
}
}
$resultdata = false;
if(strtoupper($type) == "POST") {
$resultdata = $this->_client->doPost($senddata, true);
} else {
$resultdata = $this->_client->doGet($senddata, true);
}
if($this->hasError($resultdata)) {
return false;
}
return $resultdata['result'];
}
/**
* Retrieve related records.
*/
function doGetRelatedRecords($record, $module, $relatedModule, $queryParameters) {
// Perform re-login if required.
$this->__checkLogin();
$postdata = Array(
'operation' => 'getRelatedRecords',
'sessionName' => $this->_sessionid,
'id' => $record,
'module' => $module,
'relatedModule' => $relatedModule,
'queryParameters' => $queryParameters,
);
$resultdata = $this->_client->doPost($postdata, true);
if($this->hasError($resultdata)) {
return false;
}
return $resultdata['result']['records'];
}
/**
* Set relation between records.
* param relate_this_id string ID of record we want to related other records with
* param with_this_ids string/array either a string with one unique ID or an array of IDs to relate to the first parameter
*/
function doSetRelated($relate_this_id, $with_these_ids) {
// Perform re-login if required.
$this->__checkLogin();
$postdata = Array(
'operation' => 'SetRelation',
'sessionName' => $this->_sessionid,
'relate_this_id' => $relate_this_id,
'with_these_ids' => json_encode($with_these_ids),
);
$resultdata = $this->_client->doPost($postdata, true);
if($this->hasError($resultdata)) {
return false;
}
return $resultdata['result'];
}
}
?>