-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMtAPI.php
More file actions
520 lines (382 loc) · 11.9 KB
/
MtAPI.php
File metadata and controls
520 lines (382 loc) · 11.9 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
<?php
/*
* (mt) API class
*
* The first PHP Library to support (mt) Media Temple's API.
*
* @package PHP (mt) API
* @author Nathan Le Ray
* @license Creative Commons BY-NC-SA 3.0 License
* @link http://syrinxoon.net
* @link http://www.mediatemple.net/api
* @since Version 1.0
*/
class MtAPI {
/* Contains the last HTTP status code returned. */
public $http_code;
/* Contains the last HTTP headers returned. */
public $http_info;
/* Contains the last API call. */
public $url;
/* Set up the API root URL. */
public $host = 'https://api.mediatemple.net/api/v1/';
/* Respons format. */
public $format = 'json';
/* Decode returned json data. */
public $decode_json = TRUE;
/* Set wrapRoot default */
public $wrap_root = FALSE;
/* Set prettyPrint default */
public $pretty_print = FALSE;
/* Set timeout default. */
public $timeout = 30;
/* Set connect timeout. */
public $connecttimeout = 30;
/* Verify SSL Cert. */
public $ssl_verifypeer = FALSE;
/* Set the useragent. */
public $useragent = 'PHP MtAPI v1.0-beta1';
/* Contains the API key */
private $api_key;
/* Contains the service ID */
private $service_id;
/* Contains the verified service IDs */
private $verified_service_ids = array();
/**
* Set API URLS
*/
function servicesAPI() { return $this->host . 'services'; }
function statsAPI() { return $this->host . 'stats'; }
/**
* Debug helpers
*/
function lastStatusCode() { return $this->http_code; }
function lastAPICall() { return $this->last_api_call; }
/**
* Construct (mt) API object
*/
function __construct($api_key, $service_id = NULL) {
if ($api_key == '' || strlen($api_key) != 65) { die('Invalid API Key'); }
if (!is_int($service_id) && $service_id != NULL) { die('Invalid Service ID'); }
$this->api_key = $api_key;
$this->service_id = $service_id;
}
/**
* Set service ID
*/
function set_service_id($service_id) { if (is_int($service_id)) { $this->service_id = $service_id; } }
/** SERVICES METHODS **/
/**
* Add a service
*
* @return Request result according to the selected format
*
*/
function add_service($service_type, $primary_domain = '', $os = 16) {
if (!is_int($service_type)) { die('Invalid service type.'); }
if (!is_int($service_type)) { die('Invalid operating system. '); }
// Service type is a (dv) server
if ($service_type >= 725) {
if ($primary_domain == '') { die('You must provide a primary domain'); }
$json = array('serviceType' => $service_type, 'primaryDomain' => $primary_domain);
$post_data = json_encode($json);
}
else {
$json = array('serviceType' => $service_type, 'operatingSystem' => $operating_system);
$post_data = json_encode($json);
}
$url = $this->servicesAPI();
return $this->api_call($url, 'POST', array(), $post_data);
}
/**
* Get operating systems list
*
* @return Operating systems list (available for (ve) servers when purchasing one) according to the selected format
*
*/
function get_os_list() {
$url = $this->servicesAPI() . '/types/os';
return $this->api_call($url, 'GET');
}
/**
* Get available_services
*
* @return Available services list (for purchase) according to the selected format
*
*/
function get_available_services() {
$url = $this->servicesAPI() . '/types';
return $this->api_call($url, 'GET');
}
/**
* Get services list
*
* @return Services list according to the selected format
*
*/
function get_services_list() {
$url = $this->servicesAPI();
return $this->api_call($url, 'GET');
}
/**
* Get services ids
*
* @return Services IDs list according to the selected format
*
*/
function get_services_ids() {
$url = $this->servicesAPI() . '/ids';
return $this->api_call($url, 'GET');
}
/**
* Get service details
*
* @return Details of service according to the selected format
*
*/
function get_service_details() {
$this->check_service_id();
$url = $this->servicesAPI() . '/' . $this->service_id;
return $this->api_call($url, 'GET');
}
/**
* Reboot a service
*
* @return Request result according to the selected format
*
*/
function reboot_service() {
$this->check_service_id();
$url = $this->servicesAPI() . '/' . $this->service_id . '/reboot';
return $this->api_call($url, 'POST');
}
/**
* Set Plesk password
*
* @return Request result according to the selected format
*
*/
function set_plesk_password($password) {
$this->check_service_id();
$url = $this->servicesAPI() . '/' . $this->service_id . '/pleskPassword';
return $this->api_call($url, 'PUT', '{"password": "' . $password . '"}');
}
/**
* Set root password
*
* @return Request result according to the selected format
*
*/
function set_root_password($password) {
$this->check_service_id();
$url = $this->servicesAPI() . '/' . $this->service_id . '/rootPassword';
return $this->api_call($url, 'PUT', '{"password": "' . $password . '"}');
}
/**
* Add temporary disk space
*
* @return Request result according to the selected format
*
*/
function add_temp_disk() {
$this->check_service_id();
$url = $this->servicesAPI() . '/' . $this->service_id . '/disk/temp';
return $this->api_call($url, 'POST');
}
/**
* Flush firewall rules
*
* @return Request result according to the selected format
*
*/
function flush_firewall() {
$this->check_service_id();
$url = $this->servicesAPI() . '/' . $this->service_id . '/firewall/flush';
return $this->api_call($url, 'POST');
}
/** STATS METHODS **/
/**
* Get current stats
*
* @return Current stats according to the selected format
*
*/
function get_current_stats($field_list = array()) {
$this->check_service_id();
$get_data = array();
if (!empty($field_list)) {
if ($this->wrap_root) {
foreach ($field_list as $key=>$value) {
$field_list[$key] = 'stats.'.$value;
}
}
$get_data = array('fieldList'=>implode(',',$field_list));
}
$url = $this->statsAPI() . '/' . $this->service_id;
return $this->api_call($url, 'GET', '', array(), $get_data);
}
/**
* Get range stats
*
* @return Stat list for the selected period according to the selected format
*
*/
function get_range_stats($start, $end, $resolution = 15, $precision = 2, $field_list = array()) {
if (!is_int($start) || !is_int($end) || !is_int($resolution) || !is_int($precision)) { die('All params must be of type int.'); }
$this->check_service_id();
$get_data = array(
'start' => $start,
'end' => $end,
'resolution' => $resolution,
'precision' => $precision
);
if (!empty($field_list)) {
$this->wrap_root = false;
foreach ($field_list as $key=>$value) {
if (!in_array($value,array('timeStamp','resolution','serviceId'))) {
$field_list[$key] = 'stats.'.$value;
}
}
$field_list[] = 'stats';
$get_data['fieldList'] = implode(',',$field_list);
}
$url = $this->statsAPI() . '/' . $this->service_id;
return $this->api_call($url, 'GET', '', array(), $get_data);
}
/**
* Get predefined range stats
*
* @return Stats list for the selected range according to the selected format
*
*/
function get_predefined_range_stats($range, $field_list = array()) {
$ranges = array('5min', '15min', '30min', '1hour', '1day', '1week', '1month', '3month', '1year');
if (!in_array($range, $ranges)) { die('Invalid range.'); }
$this->check_service_id();
if (!empty($field_list)) {
$this->wrap_root = false;
foreach ($field_list as $key=>$value) {
if (!in_array($value,array('timeStamp','resolution','serviceId'))) {
$field_list[$key] = 'stats.'.$value;
}
}
$field_list[] = 'stats';
$field_list[] = 'stats.timeStamp';
$get_data['fieldList'] = implode(',',$field_list);
}
$url = $this->statsAPI() . '/' . $this->service_id . '/' . $range;
return $this->api_call($url, 'GET', '', array(), $get_data);
}
/**
* Get warnings
*
* @return Warnings list for the last 60 minutes according to the selected format
*
*/
function get_warnings() {
$this->check_service_id();
$url = $this->statsAPI() . '/warnings';
return $this->api_call($url, 'GET');
}
/**
* Get warnings thresolds
*
* @return Warings thresolds list according to selected format
*
*/
function get_warnings_thresholds() {
$this->check_service_id();
$url = $this->statsAPI() . '/warnings/thresholds';
return $this->api_call($url, 'GET');
}
/** UTILS **/
/**
* Check if a service ID match the API Key
*/
function check_service_id() {
if (!is_int($this->service_id)) die("You must set your service ID before using this function.");
if (!in_array($this->service_id,$this->verified_service_ids)) {
/* verify the service id because it hasn't been done, or has changed */
echo "verifying service id\n";
$config = array($this->format, $this->decode_json, $this->wrap_root);
$this->format = 'json';
$this->decode_json = TRUE;
$this->wrap_root = FALSE;
$this->verified_service_ids = $this->get_services_ids();
$exists = array_keys($this->verified_service_ids, $this->service_id);
if (empty($exists)) {
die("The service ID $this->service_id doesn't match your API Key.");
}
$this->format = $config[0];
$this->decode_json = $config[1];
$this->wrap_root = $config[2];
}
}
/**
* Decode API results
*
* @return Decoded JSON string or plain text
*
*/
function decode_results($results) {
if ($this->format === 'json' && $this->decode_json) { return json_decode($results); }
return $results;
}
/**
* Make an API call
*
* @return API results decoded according to the selected format
*
*/
function api_call($url, $method = 'POST', $put_data = '', $post_data = array(), $get_data = array()) {
$this->http_info = array();
$ch = curl_init();
$headers = array('Expect:');
/* Curl settings */
curl_setopt($ch, CURLOPT_USERAGENT, $this->useragent);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $this->connecttimeout);
curl_setopt($ch, CURLOPT_TIMEOUT, $this->timeout);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, $this->ssl_verifypeer);
curl_setopt($ch, CURLOPT_HEADER, FALSE);
if ($method == 'POST') {
$headers[] = "Authorization: MediaTemple $this->api_key";
$headers[] = "Accept: application/$this->format";
$headers[] = "Content-type: application/$this->format";
curl_setopt($ch, CURLOPT_POST, TRUE);
if (!empty($post_data)) curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
if ($this->wrap_root == FALSE) $url .= '?wrapRoot=false';
}
elseif ($method == 'PUT') {
$headers[] = "Authorization: MediaTemple $this->api_key";
$headers[] = "Accept: application/$this->format";
$headers[] = "Content-type: application/json";
if (!$put_file = tmpfile()) die('Can\'t create the temp file.');
fwrite($put_file, $put_data);
fseek($put_file, 0);
curl_setopt($ch, CURLOPT_PUT, TRUE);
curl_setopt($ch, CURLOPT_INFILE, $put_file);
curl_setopt($ch, CURLOPT_INFILESIZE, strlen($put_data));
}
elseif ($method == 'GET') {
$url .= '.' . $this->format . '?apikey=' . $this->api_key;
if ($this->wrap_root == FALSE) $url .= '&wrapRoot=false';
if (!empty($get_data)) {
foreach ($get_data as $key => $value) {
$url .= '&' . $key . '=' . $value;
}
}
}
if ($this->pretty_print) $url .= '&prettyPrint=true';
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_URL, $url);
$response = curl_exec($ch);
$this->http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
$this->http_info = array_merge($this->http_info, curl_getinfo($ch));
$this->url = $url;
$this->last_api_call = $url;
curl_close ($ch);
if ($method == 'PUT') fclose($put_file);
return $this->decode_results($response);
}
}