-
Notifications
You must be signed in to change notification settings - Fork 3
/
dynect.php
525 lines (484 loc) · 13.2 KB
/
dynect.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
<?php
class dynect
{
protected $token;
public $response;
protected $allowed_records = array('A', 'AAAA', 'CNAME', 'DNSKEY', 'DS', 'KEY', 'LOC', 'MX', 'NS', 'PTR', 'RP', 'SOA', 'SRV', 'TXT');
/*
* execute a call to the Dynect API
* @command string the API command to invoke
* @method string HTTP method to use (GET, PUT, POST, or DELETE)
* @args array associative array of data to send
* @return mixed the Dynect response
*/
protected function execute( $command, $method = 'GET', $args = array() )
{
// Reset the response cache
$this->response = null;
$headers = array( 'Content-Type: application/json' );
if ( ! empty( $this->token ) )
{
$headers[] = 'Auth-Token: ' . $this->token;
}
$ch = curl_init();
// Return the transfer as a string of the return value instead of outputting it out directly
curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true );
// Do not fail silently. We want a response regardless
curl_setopt( $ch, CURLOPT_FAILONERROR, false );
// Disables response header and only returns the response body
curl_setopt( $ch, CURLOPT_HEADER, false );
// Set the content type of the post body via HTTP headers
curl_setopt( $ch, CURLOPT_HTTPHEADER, $headers );
// Set the custom request method
curl_setopt( $ch, CURLOPT_CUSTOMREQUEST, $method );
// Set the URL to send the request to the API
curl_setopt( $ch, CURLOPT_URL, 'https://api2.dynect.net/REST/' . $command . '/' );
if ( ! empty( $args ) )
{
curl_setopt( $ch, CURLOPT_POSTFIELDS, json_encode( $args ) );
}
$response = curl_exec( $ch );
curl_close( $ch );
$this->response = $response;
return json_decode( $response );
}
/*
* parse a Dyn object into an associative array
* @data object an object of Dyn data
* @return array Associative array of object key/value pairs
*/
protected function parse_dyn_object( $data )
{
$arr = array();
foreach ( $data as $key => $value )
{
if ( 'rdata' == $key )
{
continue;
}
$arr[$key] = $value;
}
if ( isset( $data->rdata ) )
{
foreach ( $data->rdata as $key => $value )
{
$arr[$key] = $value;
}
}
return $arr;
}
/*
* log into the Dynect API and obtain an API token
* @credentials array Dynect credentials
* @return bool success or failure
*/
public function login( $customer_name, $user_name, $password )
{
$result = $this->execute( 'Session', 'POST', array('customer_name' => $customer_name, 'user_name' => $user_name, 'password' => $password) );
if ( 'success' == $result->status )
{
$this->token = $result->data->token;
return true;
}
return false;
}
/*
* logout, destroying a Dynect API token
* @return bool success or failure
*/
public function logout()
{
$result = $this->execute( 'Session', 'DELETE' );
if ( 'success' == $result->status )
{
return true;
}
return false;
}
/*
* create a new Dynect zone
* @contact string email address for the contact of this zone
* @name string the name of the zone
* @ttl int the default TTL to set for this zone
* @return bool success or failure
*/
public function zoneCreate( $contact, $name, $ttl = 3600 )
{
if ( empty( $contact) || empty( $name ) ) {
return false;
}
$result = $this->execute( "Zone/$name", 'POST', array( 'rname' => $contact, 'zone' => $name, 'ttl' => $ttl ) );
if ( 'success' == $result->status )
{
return TRUE;
}
return FALSE;
}
/*
* delete a Dynect zone
* @zone string name of the zone to delete
* @return bool success or failure
*/
public function zoneDelete( $zone )
{
$result = $this->execute( "Zone/$zone", 'DELETE' );
if ( 'success' == $result->status )
{
return TRUE;
}
return FALSE;
}
/*
* update a zone
* @zone string name of the zone to publish
* @status string status of the zone to update
* @return bool success or failure
*/
public function zoneUpdate ( $zone, $status )
{
if ( ! in_array( $status, array( 'publish', 'freeze', 'thaw' ) ) )
{
return FALSE;
}
$result = $this->execute( "Zone/$zone", 'PUT', array( $status => 'TRUE' ) );
if ( 'success' == $result->status )
{
return TRUE;
}
return FALSE;
}
/*
* get a list of zones
* @return mixed Array of avialable zones or boolean false
*/
public function zoneGetList()
{
$result = $this->execute( "Zone", 'GET' );
if ( 'success' == $result->status )
{
$domains = array();
foreach ( $result->data as $value )
{
$domains[] = rtrim( str_replace( '/REST/Zone/', '', $value ), '/' );
}
return $domains;
}
return FALSE;
}
/*
* get details of a specific zone
* @zone string Zone name
* @return mixed Associative array of zone data or boolean false
*/
public function zoneGet( $zone )
{
$result = $this->execute( "Zone/$zone", 'GET' );
if ( 'success' == $result->status )
{
return $this->parse_dyn_object( $result->data );
}
return FALSE;
}
/*
* delete a node, any records in it, and any nodes underneath it
* @zone string Zone containing the node
* @fqdn string FQDN of the node to delete
* @return bool success or failure
*/
public function nodeDelete( $zone, $fqdn )
{
$result = $this->execute( "Node/$zone/$fqdn", 'DELETE' );
if ( 'success' == $result->status )
{
return TRUE;
}
return FALSE;
}
/*
* list all the nodes in a zone
* @zone string the zone to query
* @fqdn string a top-level node in the zone
* @return mixed Array of node data, or boolean false
*/
public function nodeList( $zone, $fqdn = '' )
{
$command = "NodeList/$zone";
if ( ! empty( $fqdn ) )
{
$command .= "/$fqdn";
}
$result = $this->execute( $command, 'GET' );
if ( 'success' == $result->status )
{
return $result->data;
}
return FALSE;
}
/*
* get a list of A record IDs for an FQDN
* @zone string name of the zone containing the A record
* @fqdn string FQDN fo the A record to query
* @return mixed array of Dynect IDs or boolean false
*/
public function allRecordsGetList( $zone, $fqdn )
{
$result = $this->execute( "AllRecord/$zone/$fqdn", 'GET' );
if ( 'success' == $result->status )
{
if ( empty( $result->data ) )
{
return FALSE;
}
$records = array();
foreach ( $result->data as $data )
{
$data = str_replace( "/REST/", '', $data );
$record = $this->execute( $data, 'GET');
if ( ! empty( $record->data ) )
{
$records[] = $record->data;
}
}
return $records;
}
return FALSE;
}
/*
* get a list of record IDs for an FQDN
* @type string type of record to get list
* @zone string name of the zone containing the record
* @fqdn string FQDN fo the record to query
* @return mixed array of Dynect IDs or boolean false
*/
public function recordGetList( $type, $zone, $fqdn )
{
$result = $this->execute( "{$type}Record/$zone/$fqdn", 'GET' );
if ( 'success' == $result->status )
{
if ( empty( $result->data ) )
{
return FALSE;
}
$records = array();
foreach ( $result->data as $data )
{
$records[] = str_replace( "/REST/{$type}Record/$zone/$fqdn/", '', $data );
}
return $records;
}
return FALSE;
}
/*
* get data about a specific record
* @type string type of record to get
* @zone string name of the zone containing the record
* @fqdn string FQDN of the record to query
* @id int Dynect ID of the record
* @return mixed Associative array of record data, or boolean false
*/
public function recordGet( $type, $zone, $fqdn, $id = '' )
{
$result = $this->execute( "{$type}Record/$zone/$fqdn/$id", 'GET' );
if ( 'success' == $result->status )
{
return $this->parse_dyn_object( $result->data );
}
return FALSE;
}
/*
* create a new record in a zone
* @type string type of record to create
* @zone string name of the zone to contain the record
* @fqdn string FQDN of the record to create
* @rdata string Rdata of the record to create
* @ttl int TTL value for the record
* @return bool success or failure
*/
public function recordAdd ( $type, $zone, $fqdn, $rdata, $ttl = 0 )
{
if ( ! in_array( $type, $this->allowed_records ) )
{
return FALSE;
}
$record = array( 'rdata' => $rdata, 'ttl' => $ttl, );
$result = $this->execute( "{$type}Record/$zone/$fqdn", 'POST', $record );
if ( 'success' == $result->status )
{
return TRUE;
}
return FALSE;
}
/*
* change a record in a zone
* @type string type of record to update
* @zone string name of the zone to contain the record
* @fqdn string FQDN of the record to update
* @rdata string Rdata of the record to update
* @ttl int TTL value for the record
* @return bool success or failure
*/
public function recordUpdate ( $type, $zone, $fqdn, $rdata, $ttl = 0 )
{
if ( ! in_array( $type, $this->allowed_records ) )
{
return FALSE;
}
$record = array( 'rdata' => $rdata, 'ttl' => $ttl, );
$result = $this->execute( "{$type}Record/$zone/$fqdn", 'PUT', $record );
if ( 'success' == $result->status )
{
return TRUE;
}
return FALSE;
}
/*
* delete a record in a zone
* @type string type of record to delete
* @zone string name of the zone to contain the record
* @fqdn string FQDN of the record to delete
* @id int Dynect ID of the record to delete
* @return bool success or failure
*/
public function recordDelete ( $type, $zone, $fqdn, $id )
{
if ( ! in_array( $type, $this->allowed_records ) )
{
return FALSE;
}
$result = $this->execute( "{$type}Record/$zone/$fqdn/$id", 'DELETE' );
if ( 'success' == $result->status )
{
return TRUE;
}
return FALSE;
}
/*
* create a new HTTP redirect
* @zone string name of the zone in which the redirect will be created
* @fqdn string FQDN to redirect
* @target string full URI (http://.../) of target to which request will be redirected
* @code int 301 (permanent) or 302 (temporary) response to send
* @uri bool whether to preserve the original URI
* @return bool success or failure
*/
public function redirectCreate( $zone, $fqdn, $target, $code = 302, $uri = true )
{
$keep = ( $uri ) ? 'Y' : 'N';
$args = array( 'code' => $code, 'keep_uri' => $keep, 'url' => $target );
$result = $this->execute( "HTTPRedirect/$zone/$fqdn", 'POST', $args );
if ( 'success' == $result->status ) {
return TRUE;
}
return FALSE;
}
/*
* delete an HTTP redirect
* @zone string name of zone containing the redirect to delete
* @fqdn string FQDN of the redirect to delete
* @return bool success or failure
*/
public function redirectDelete( $zone, $fqdn )
{
$result = $this->execute( "HTTPRedirect/$zone/$fqdn", 'DELETE' );
if ( 'success' == $result->status ) {
return TRUE;
}
return FALSE;
}
/*
* get a list of HTTP redirects
* @zone string name of zone to query
* @return mixed array of redirects or boolean false
*/
public function redirectGetList( $zone )
{
$result = $this->execute( "HTTPRedirect/$zone", 'GET' );
if ( 'success' == $result->status ) {
$redirects = array();
foreach ( $result->data as $data ) {
$redirects[] = rtrim( str_replace( "/REST/HTTPRedirect/$zone/", '', $data ), '/' );
}
return $redirects;
}
return FALSE;
}
/*
* get details of a specific HTTP redirect
* @zone string name of zone to query
* @fqdn string FQDN of the redirect to query
* @return mixed Object of Dynect data or boolean false
*/
public function redirectGet( $zone, $fqdn )
{
$result = $this->execute( "HTTPRedirect/$zone/$fqdn", 'GET' );
if ( 'success' == $result->status ) {
return $result->data;
}
return FALSE;
}
/*
* GET Job data
* @job string job ID
* @return mixed Object of Dynect data or boolean false
*/
public function jobGet( $job)
{
$result = $this->execute( "Job/$job/", 'GET' );
return $result;
if ( 'success' == $result->status ) {
return $result;
}
return FALSE;
}
/*
* Bulk Upload a BIND file to create or update zone
* @zone string name of zone to upload
* @BINDfile string path to file containing BIND zone
* @return mixed Object of Dynect data or boolean false
*/
protected function ZoneFile( $zone, $BINDfile, $BulkMethod )
{
$args = array( 'file' => $BINDfile );
$result = $this->execute( "ZoneFile/$zone/", $BulkMethod, $args );
if ( 'success' == $result->status ) {
return $result;
}
return FALSE;
}
/*
* Proxy for ZoneFile to create zone
* @zone string name of zone to upload
* @BINDfile string path to file containing BIND zone
* @return mixed Object of Dynect data or boolean false
*/
public function bulkCreate( $zone, $BINDfile )
{
$result = $this->ZoneFile( $zone, $BINDfile, 'POST' );
return $result;
}
/*
* Proxy for ZoneFile to update zone
* @zone string name of zone to upload
* @BINDfile string path to file containing BIND zone
* @return mixed Object of Dynect data or boolean false
*/
public function bulkUpdate( $zone, $BINDfile )
{
$result = $this->ZoneFile( $zone, $BINDfile, 'PUT' );
return $result;
}
/*
* get Zone Notes
* @zone string name of zone to query
* @fqdn string FQDN of the redirect to query
* @return mixed Object of Dynect data or boolean false
*/
public function ZoneNoteReport( $zone, $limit = 1, $offset = 0 )
{
$result = $this->execute( "ZoneNoteReport", 'POST', array('zone' => $zone, 'limit' => $limit, 'offset' => $offset ) );
if ( 'success' == $result->status ) {
return $result->data;
}
return FALSE;
}
}