Skip to content

Commit

Permalink
Added support for EURid (.eu)
Browse files Browse the repository at this point in the history
  • Loading branch information
getpinga committed Feb 19, 2024
1 parent 82ad978 commit 44be9a0
Show file tree
Hide file tree
Showing 4 changed files with 2,120 additions and 4 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ openssl s_client -connect epp.example.com:700 -CAfile cacert.pem -cert cert.pem
| TMCH ||
| REGRR ||

## Registry Support (32 backends and counting)
## Registry Support (33 backends and counting)

| Registry | TLDs | Extension | Status | TODO |
|----------|----------|----------|----------|----------|
Expand All @@ -108,6 +108,7 @@ openssl s_client -connect epp.example.com:700 -CAfile cacert.pem -cert cert.pem
| Domicilium | .im | || |
| DOMREG | .lt | LT | 🚧 | work on extensions |
| DRS.UA | all | || |
| EURid | .eu | EU || |
| FORTH-ICS | .gr, .ελ | GR || |
| FRED | .cz/any | FRED || domain update, DNSSEC |
| GoDaddy Registry | all | || |
Expand Down Expand Up @@ -147,5 +148,7 @@ Would you like to see any registry added as a WHMCS/FOSSBilling module? Or an EP
| Registry | TLDs | Status | Project |
|----------|----------|----------|----------|
| Generic RFC EPP | any || [fossbilling-epp-rfc](https://github.com/getpinga/fossbilling-epp-rfc) |
| Hostmaster | .ua || [fossbilling-epp-ua](https://github.com/getpinga/fossbilling-epp-ua) |
| AFNIC | .fr/others || [fossbilling-epp-fr](https://github.com/getpinga/fossbilling-epp-fr) |
| Caucasus Online | .ge || [fossbilling-epp-ge](https://github.com/getpinga/fossbilling-epp-ge) |
| FRED | .cz/any || [fossbilling-epp-fred](https://github.com/getpinga/fossbilling-epp-fred) |
| Hostmaster | .ua || [fossbilling-epp-ua](https://github.com/getpinga/fossbilling-epp-ua) |
3 changes: 2 additions & 1 deletion examples/ContactCreate.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@
'country' => 'UA',
'fullphonenumber' => '+380.1234567',
'email' => 'test@tembo.ua',
'authInfoPw' => 'ABCLviv@345'
'authInfoPw' => 'ABCLviv@345',
//'euType' => 'tech',
);
$contactCreate = $epp->contactCreate($params);

Expand Down
6 changes: 5 additions & 1 deletion src/EppRegistryFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

namespace Pinga\Tembo;

use Pinga\Tembo\Registries\EuEpp;
use Pinga\Tembo\Registries\FrEpp;
use Pinga\Tembo\Registries\FredEpp;
use Pinga\Tembo\Registries\GrEpp;
Expand All @@ -26,7 +27,10 @@ class EppRegistryFactory
{
public static function create($registry)
{
switch ($registry) {
switch ($registry) {
case 'EU':
return new EuEpp();
break;
case 'FR':
return new FrEpp();
break;
Expand Down
Loading

0 comments on commit 44be9a0

Please sign in to comment.