forked from metaregistrar/php-epp-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheppConnection.php
668 lines (601 loc) · 18.3 KB
/
eppConnection.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
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
<?php
class EppConnection
{
/**
* Hostname of this connection
* @var string
*/
protected $hostname = '';
/**
* Port of the connection
* @var string
*/
protected $port = 700;
/**
* Time-out value for the server connection
* @var integer
*/
protected $timeout = 5;
/**
* Username to be used in the connection
* @var string
*/
protected $username = '';
/**
* Password to be used in the connection
* @var string
*/
protected $password = '';
/*
* New password for password change procedure
*/
protected $newpassword = null;
/**
* Default namespace
* @var string
*/
protected $defaultnamespace = array('xmlns'=>'urn:ietf:params:xml:ns:epp-1.0');
/**
* Base objects
* @var array of accepted object URI's
*/
protected $objuri = array('urn:ietf:params:xml:ns:domain-1.0'=>'domain','urn:ietf:params:xml:ns:contact-1.0'=>'contact','urn:ietf:params:xml:ns:host-1.0'=>'host');
/**
* Object extensions
* @var array of accepted URI's for each object
*/
protected $exturi;
/**
* Base objects
* @var array of accepted URI's for xpath
*/
protected $xpathuri = array('urn:ietf:params:xml:ns:epp-1.0'=>'epp','urn:ietf:params:xml:ns:domain-1.0'=>'domain','urn:ietf:params:xml:ns:contact-1.0'=>'contact','urn:ietf:params:xml:ns:host-1.0'=>'host');
/**
* These namespaces are needed in the root of the EPP object
* @var type array of accepted URI's for xpath
*/
protected $rootspace = array();
/**
*
* @var string language for epp
*/
protected $language = '';
/**
*
* @var string version for epp
*/
protected $version = '';
/**
*
* @var resource $connection
*/
protected $connection;
/**
*
* @var boolean $logging
*/
protected $logging;
/**
* Commands and equivalent responses
* @var array
*/
protected $responses;
/**
* Path to certificate file
* @var string
*/
protected $local_cert_path = null;
/**
* Password of certificate file
* @var string
*/
protected $local_cert_pwd = null;
function __construct($logging = false)
{
if ($logging)
{
$this->enableLogging();
}
#
# Initialize default values for config parameters
#
$this->language = 'en';
$this->version = '1.0';
$this->responses['eppHelloRequest'] = 'eppHelloResponse';
$this->responses['eppLoginRequest'] = 'eppLoginResponse';
$this->responses['eppLogoutRequest'] = 'eppLogoutResponse';
$this->responses['eppPollRequest'] = 'eppPollResponse';
$this->responses['eppCheckRequest'] = 'eppCheckResponse';
$this->responses['eppInfoHostRequest'] = 'eppInfoHostResponse';
$this->responses['eppInfoContactRequest'] = 'eppInfoContactResponse';
$this->responses['eppInfoDomainRequest'] = 'eppInfoDomainResponse';
$this->responses['eppCreateRequest'] = 'eppCreateResponse';
$this->responses['eppCreateDomainRequest'] = 'eppCreateResponse';
$this->responses['eppCreateContactRequest'] = 'eppCreateResponse';
$this->responses['eppCreateHostRequest'] = 'eppCreateResponse';
$this->responses['eppDeleteRequest'] = 'eppDeleteResponse';
$this->responses['eppUndeleteRequest'] = 'eppUndeleteResponse';
$this->responses['eppUpdateRequest'] = 'eppUpdateResponse';
$this->responses['eppUpdateDomainRequest'] = 'eppUpdateResponse';
$this->responses['eppUpdateContactRequest'] = 'eppUpdateResponse';
$this->responses['eppUpdateHostRequest'] = 'eppUpdateResponse';
$this->responses['eppRenewRequest'] = 'eppRenewResponse';
$this->responses['eppTransferRequest'] = 'eppTransferResponse';
}
function __destruct()
{
if ($this->logging)
{
$this->showLog();
}
}
public function enableDnssec()
{
$this->exturi['urn:ietf:params:xml:ns:secDNS-1.1'] = 'secDNS';
$this->responses['eppDnssecUpdateDomainRequest'] = 'eppUpdateDomainResponse';
}
public function disableDnssec()
{
unset($this->exturi['secDNS']);
unset($this->responses['eppDnssecUpdateDomainRequest']);
}
public function enableCertification($certificatepath, $certificatepassword)
{
$this->local_cert_path= $certificatepath;
$this->local_cert_pwd = $certificatepassword;
}
public function disableCertification()
{
$this->local_cert_path= null;
$this->local_cert_pwd = null;
}
/**
* Disconnects if connected
* @return boolean
*/
public function disconnect()
{
if (is_resource($this->connection))
{
//echo "Fclosing $this->hostname\n";
@ob_flush();
fclose($this->connection);
}
return true;
}
/**
* Connect to the address and port
* @param string $address
* @param int $port
* @return boolean
*/
public function connect($hostname = null, $port =null)
{
if ($hostname)
{
$this->hostname = $hostname;
}
if ($port)
{
$this->port = $port;
}
if ($this->local_cert_path)
{
$ssl = true;
$target = sprintf('%s://%s:%d', ($ssl === true ? 'ssl' : 'tcp'), $this->hostname, $this->port);
$errno='';
$errstr='';
$context = stream_context_create();
stream_context_set_option($context, 'ssl', 'local_cert', $this->local_cert_path);
stream_context_set_option($context, 'ssl', 'passphrase', $this->local_cert_pwd);
if ($this->connection = @stream_socket_client($target, $errno, $errstr, $this->timeout, STREAM_CLIENT_CONNECT, $context))
{
$this->writeLog("Connection made");
$this->read();
return true;
}
else
{
throw new eppException("Error connecting to $target: $errstr (code $errno)");
}
}
else
{
//We don't want our error handler to kick in at this point...
putenv('SURPRESS_ERROR_HANDLER=1');
#echo "Connecting: $this->hostname:$this->port\n";
$this->writeLog("Connecting: $this->hostname:$this->port");
$this->connection = fsockopen($this->hostname, $this->port, $errno, $errstr, $this->timeout);
putenv('SURPRESS_ERROR_HANDLER=0');
if (is_resource($this->connection))
{
$this->writeLog("Connection made");
stream_set_blocking($this->connection, false);
stream_set_timeout($this->connection,$this->timeout);
if ($errno == 0)
{
$this->read();
return true;
}
else
{
return false;
}
}
else
{
$this->writeLog("Connection could not be opened: $errno $errstr");
return false;
}
}
}
/**
* This will read 1 response from the connection
* @return string
*/
public function read()
{
putenv('SURPRESS_ERROR_HANDLER=1');
$content = '';
$time = time()+$this->timeout;
while ((!isset ($length)) || ($length > 0))
{
if (feof($this->connection))
{
putenv('SURPRESS_ERROR_HANDLER=0');
throw new eppException ('Unexpected closed connection by remote host...');
}
//Check if timeout occured
if (time() >= $time)
{
putenv('SURPRESS_ERROR_HANDLER=0');
return false;
}
//If we dont know how much to read we read the first few bytes first, these contain the content-lenght
//of whats to come
if ((!isset($length)) || ($length == 0))
{
$readLength = 4;
$readbuffer = "";
$read = "";
while ($readLength > 0)
{
if ($readbuffer = fread($this->connection, $readLength))
{
$readLength = $readLength - strlen($readbuffer);
$read .= $readbuffer;
}
//Check if timeout occured
if (time() >= $time)
{
putenv('SURPRESS_ERROR_HANDLER=0');
return false;
}
}
$this->writeLog("Reading 4 bytes for integer. (read: ".strlen($read).")");
$this->writeLog($read);
$length = $this->readInteger($read)-4;
$this->writeLog("Reading next: $length bytes");
}
//We know the length of what to read, so lets read the stuff
if ((isset($length)) && ($length > 0))
{
$time = time()+$this->timeout;
$this->writeLog("Reading $length bytes of content.");
if ($read = fread($this->connection, $length))
{
$this->writeLog($read);
$this->writeLog(print_R(socket_get_status($this->connection), true));
$length = $length-strlen($read);
$content .= $read;
}
}
if (!strlen($read))
{
usleep(100);
}
}
putenv('SURPRESS_ERROR_HANDLER=0');
#echo $content;
#ob_flush();
return $content;
}
/**
* This parses the first 4 bytes into an integer for use to compare content-length
*
* @param string $content
* @return integer
*/
private function readInteger($content)
{
$int = unpack('N', substr($content, 0, 4));
return $int[1];
}
/**
* This adds the content-length to the content that is about to be written over the EPP Protocol
*
* @param string $content Your XML
* @return string String to write
*/
private function addInteger($content)
{
$int = pack('N',intval(strlen($content)+4));
return $int.$content;
}
/**
* Write stuff over the EPP connection
* @param string $content
* @return boolean
*/
public function write($content)
{
$this->writeLog("Writing: ".strlen($content)." + 4 bytes");
$content = $this->addInteger($content);
if (!is_resource($this->connection))
{
throw new eppException ('Writing while no connection is made is not supported.');
}
$this->writeLog($content);
putenv('SURPRESS_ERROR_HANDLER=1');
#echo $content;
#ob_flush();
if (fwrite($this->connection, $content))
{
//fpassthru($this->connection);
putenv('SURPRESS_ERROR_HANDLER=0');
return true;
}
putenv('SURPRESS_ERROR_HANDLER=0');
return false;
}
/**
* Write the content domDocument to the stream
* Read the answer
* Load the answer in a response domDocument
* return the reponse
*
* @param domDocument $content
* @return domDocument
* @throws eppException
*/
public function writeandread($content)
{
$requestsessionid = $content->getSessionId();
$namespaces = $this->getDefaultNamespaces();
if (is_array($namespaces))
{
foreach ($namespaces as $id=>$namespace)
{
$content->addExtension($id,$namespace);
}
}
/*
* $content->login is only set if this is an instance or a sub-instance of an eppLoginRequest
*/
if ($content->login)
{
// Set username for login request
$content->addUsername($this->getUsername());
// Set password for login request
$content->addPassword($this->getPassword());
// Set 'new password' for login request
if ($this->getNewPassword())
{
$content->addNewPassword($this->getNewPassword());
}
// Add version to this object
$content->addVersion($this->getVersion());
// Add language to this object
$content->addLanguage($this->getLanguage());
// Add services and extensions to this content
$content->addServices($this->getServices(),$this->getExtensions());
}
/*
* $content->hello is only set if this is an instance or a sub-instance of an eppHelloRequest
*/
if (!($content->hello))
{
/**
* Add used namespaces to the correct places in the XML
*/
$content->addNamespaces($this->getServices());
$content->addNamespaces($this->getExtensions());
}
$response = $this->createResponse($content);
if (!$response)
{
throw new eppException("No valid response from server");
}
if ($this->logging)
{
$this->writeLog("==== SENDING XML ======");
$this->writeLog($content->saveXML(null, LIBXML_NOEMPTYTAG));
}
if ($this->write($content->saveXML(null, LIBXML_NOEMPTYTAG)))
{
$xml = $this->read();
if (strlen($xml))
{
if ($response->loadXML($xml))
{
/*echo $xml;
ob_flush();
*/
if ($this->logging)
{
$this->writeLog("==== RECEIVED XML =====");
$this->writeLog($response->saveXML(null, LIBXML_NOEMPTYTAG));
}
$clienttransid = $response->getClientTransactionId();
if (($clienttransid) && ($clienttransid != $requestsessionid))
{
throw new eppException("Client transaction id $requestsessionid does not matched returned $clienttransid");
}
$response->setXpath($this->getServices());
$response->setXpath($this->getExtensions());
$response->setXpath($this->getXpathExtensions());
if ($response instanceof eppHelloResponse)
{
$response->validateServices($this->getLanguage(),$this->getVersion(),$this->getServices(),$this->getExtensions());
}
return $response;
}
}
else
{
throw new eppException('Empty XML document when receiving data!');
}
}
else
{
throw new eppException('Error writing content');
}
return null;
}
public function createResponse($request)
{
$response = null;
foreach ($this->responses as $req=>$res)
{
if ($request instanceof $req)
{
$response = new $res();
}
}
return $response;
}
public function addCommandResponse($command,$response)
{
$this->responses[$command] = $response;
}
public function getTimeout()
{
return $this->timeout;
}
public function setTimeout($timeout)
{
$this->timeout = $timeout;
}
public function getUsername()
{
return $this->username;
}
public function setUsername($username)
{
$this->username = $username;
}
public function getPassword()
{
return $this->password;
}
public function setPassword($password)
{
$this->password = $password;
}
public function getNewPassword()
{
return $this->newpassword;
}
public function setNewPassword($password)
{
$this->newpassword = $password;
}
public function getHostname()
{
return $this->hostname;
}
public function setHostname($hostname)
{
$this->hostname = $hostname;
}
public function getPort()
{
return $this->port;
}
public function setPort($port)
{
$this->port = $port;
}
public function addDefaultNamespace($xmlns,$namespace)
{
$this->defaultnamespace[$namespace]='xmlns:'.$xmlns;
}
public function getDefaultNamespaces()
{
return $this->defaultnamespace;
}
public function setVersion($version)
{
$this->version = $version;
}
public function getVersion()
{
return $this->version;
}
public function setLanguage($language)
{
$this->language = $language;
}
public function getLanguage()
{
return $this->language;
}
public function setServices($services)
{
$this->objuri = $services;
}
public function addService($xmlns,$namespace)
{
$this->objuri[$xmlns]=$namespace;
}
public function getServices()
{
return $this->objuri;
}
public function setExtensions($extensions)
{
// Remove unusable extensions from the list
$this->exturi= $extensions;
}
public function addExtension($xmlns,$namespace)
{
$this->exturi[$xmlns]=$namespace;
}
public function getExtensions()
{
return $this->exturi;
}
public function setXpathExtensions($extensions)
{
$this->xpathuri = $extensions;
}
public function getXpathExtensions()
{
return $this->xpathuri;
}
private function enableLogging()
{
date_default_timezone_set("Europe/Amsterdam");
$this->logging = true;
}
private function sendLog($email, $subject)
{
mail($email, $subject, implode("\n", $this->logentries));
}
private function showLog()
{
echo "==== LOG ====";
if (property_exists($this,'logentries'))
{
print_r($this->logentries);
}
}
private function writeLog($text)
{
if ($this->logging)
{
//echo "-----".date("Y-m-d H:i:s")."-----".$text."-----end-----\n";
$this->logentries[] = "-----".date("Y-m-d H:i:s")."-----".$text."-----end-----\n";
}
}
}