-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwhmcs.class.php
More file actions
404 lines (339 loc) · 10.7 KB
/
Copy pathwhmcs.class.php
File metadata and controls
404 lines (339 loc) · 10.7 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
<?php
use \Exception;
/**
* Class to connect WHMCS instance
* Few sample implementations of oryginal WHMCS API methods
* and a wrapper to Integrate API calls with ModulesGarden CRM For WHMCS module
*
* relay on json response type
* and php curl
*
* @author Piotr Sarzyński <piotr@sarzynski.org> (github.com/picq)
*/
class WHMCS
{
/**
* Contain url to whmcs/includes/api.php
*
* @var string
*/
protected $url;
/**
* Admin username to authorize in WHMCS (role needs to have 'API Access')
*
* @var string
*/
protected $username;
/**
* Admin password to authorize in WHMCS (role needs to have 'API Access')
*
* @var string
*/
protected $password;
/**
* Access Key for API call, as alternative method to ip restriction
*
* @var string
* @link http://docs.whmcs.com/API:Access_Keys
*/
protected $accessKey;
/**
* Username for hataccess authorization
*
* @var string
*/
protected $hataccessUsername;
/**
* Password for hataccess authorization
*
* @var string
*/
protected $hataccessPassword;
/**
* Container for basic parameters send to API
* we are going to generate this once, then only existing
*
* @var array
*/
protected $postParams = array();
/**
* Parse response to format
* Currently only json supported
*
* @var string
*/
const RESPONSE_TYPE = 'json';
/**
* Curl request timeout
*
* @var integer
*/
const RESPONSE_TIMEOUT = 300;
/**
* Constructor, set basic variables
*
* @param string $url full url to whmcs/includes/api.php
* @param string $username admin usrename
* @param string $password admin password
*/
public function __construct($url, $username, $password)
{
$this->url = $url;
$this->username = $username;
$this->password = $password;
}
/**
* If our $url destination is protected by Htaccess authorization
* Set credentials
*
* @param string $login login for Htaccess authorization
* @param string $pass password for Htaccess authorization
*/
public function setHtaccessAuth($login, $pass)
{
$this->hataccessUsername = $login;
$this->hataccessPassword = $pass;
}
/**
* Set up Acess Key for API calls
*
* @param string $key
* @link http://docs.whmcs.com/API:Access_Keys
*/
public function setAccessKey($key = '')
{
$this->accessKey = $key;
}
/**
* Generate/obtain main parameters
* Set up basic variables, like username/password etc
*
* @return array
*/
protected function getMainPostParams()
{
// if already set just return
if(is_array($this->postParams) && !empty($this->postParams)) {
return $this->postParams;
}
// keep this data in object
$this->postParams = array(
'username' => $this->username,
'password' => md5($this->password),
'responsetype' => self::RESPONSE_TYPE,
);
// access key ?
if($this->accessKey != '') {
$this->postParams['accesskey'] = $this->accessKey;
}
return $this->postParams;
}
/**
* Wrap all our parameters to single array
* Basically merge custom parameters with main one as authorization
*
* @param string $action requested action
* @param array $params additional parameters
* @return array
*/
protected function generatePostParams($action, array $params = array())
{
// authorization etc
$post = $this->getMainPostParams();
// set up action
$post['action'] = $action;
// set up additional parameters
foreach($params as $k => $v) {
$post[$k] = $v;
}
return $post;
}
/**
* Create and return Curl handler
* Also set proper flags
*
* @param string $queryString already parsed string as request content
* @return curl handler
*/
protected function getNewCurlHandler($queryString)
{
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $this->url);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_TIMEOUT, self::RESPONSE_TIMEOUT);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $queryString);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
// uf there is username (pass might be empty so single condition)
if(!empty($this->hataccessUsername)) {
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
curl_setopt($ch, CURLOPT_USERPWD, "{$this->hataccessUsername}:{$this->hataccessPassword}");
}
return $ch;
}
/**
* Try to decode API response from JSON format
*
* @param mixed $response what we obtain from api
* @return mixed
* @throws WhmcsException
*/
protected function formatResponse($response)
{
// decode from json, since this wrapper handle only json format
$return = json_decode($response, true);
// check for errors, just in case
if($return === null && json_last_error() !== JSON_ERROR_NONE)
{
switch (json_last_error())
{
case JSON_ERROR_DEPTH:
$error = 'Maximum stack depth exceeded';
break;
case JSON_ERROR_STATE_MISMATCH:
$error = 'Underflow or the modes mismatch';
break;
case JSON_ERROR_CTRL_CHAR:
$error = 'Unexpected control character found';
break;
case JSON_ERROR_SYNTAX:
$error = 'Syntax error, malformed JSON';
break;
case JSON_ERROR_UTF8:
$error = 'Malformed UTF-8 characters, possibly incorrectly encoded';
break;
default:
$error = 'Unknown error';
break;
}
throw new WhmcsException($error);
}
return $return;
}
/**
* Perform WHMCS API call
*
* @param string $action requested action
* @param array $params additional parameters for action
* @return array response parsed to array
* @throws WhmcsException in error
*/
public function callAPI($action = '', array $params = array())
{
// obtain main data for auth
$post = $this->generatePostParams($action, $params);
// build whole string for curl
$queryString = http_build_query($post);
// curl
$ch = $this->getNewCurlHandler($queryString);
// perform
$response = utf8_decode(curl_exec($ch));
// parse response
if(curl_error($ch)) {
throw new WhmcsException(curl_error($ch));
}
// close connection
curl_close($ch);
return $this->formatResponse($response);
}
/**
* Wrapper of standard WHMCS api call
* to use with ModulesGarden CRM for WHMCS module
* since this module hase its own API that is supported by WHMCS API
* (
* TL;TR: technical stuff
*
* request to whmcs api, to run whmcs command 'mgcrm'
* 'mgcrm' - its custom API method that is added to WHMCS by CRM
* 'mgcrm' method permit two variable (as we need to be transparent by whmcs api itself)
* 'mgcrmaction' its CRM API method name that we request
* 'mgcrmparams' its array with parameters that can be send for requested method
*
* )
*
*
* This is available from CRM version 2.2.x
*
* @notice this is only wrapper, CRM hve its own documentation available methods to use, and parameters
* @param string $action CRM method to execute
* @param array $params selected method additional parameters
* @return array response parsed to array
*/
public function callCRM($action = '', array $params = array())
{
return $this->callAPI('mgcrm', array(
'mgcrmaction' => $action,
'mgcrmparams' => $params,
));
}
/**
* WHMCS COMMAND
*
* API:Validate Login
* This command can be used to validate an email address and password against a registered user in WHMCS
*
*
* @param string $username the email address of the user trying to login
* @param type $password the password they supply for authentication
* @link http://docs.whmcs.com/API:Validate_Login
* @return mixed
*/
public function authenticate($username = '', $password = '')
{
return $this->callAPI("validatelogin", array(
'email' => $username,
'password2' => $password,
)
);
}
/**
* WHMCS COMMAND
*
* API:Get Clients Details
* This command is used to retrieve all the data held about a client in the WHMCS System for a given ID or email address
*
*
* @param type $uid the id number of the client
* @param type $email the email address of the client
* @param boolean $withStats request user stats
* @throws WhmcsException if both: $uid or $email are not provided
* @link http://docs.whmcs.com/API:Get_Clients_Details
* @return mixed
*/
public function getClient($uid = 0, $email = '', $withStats = false)
{
$params = array();
if(is_numeric($uid) && $uid > 0) {
$params["clientid"] = $uid;
} elseif(!empty($email)) {
$params["email"] = $email;
} else {
throw new WhmcsException('Not Invalid Request parameter. at least one must be priovided (uid/email)');
}
if($withStats === true) {
$params['stats'] = true;
}
return $this->callAPI("getclientsdetails", $params);
}
/**
* WHMCS COMMAND
*
* API:Get Stats
* This command is used to generate current stats
*
*
* @return mixed
* @throws WhmcsException
* @link http://docs.whmcs.com/API:Get_Stats
*/
public function getStats()
{
return $this->callAPI("getstats");
}
}
/**
* This class may thow WhmcsException
* Its basic extends nothing fancy
*/
class WhmcsException extends Exception {}