Completed
Push — master ( c87337...703ea3 )
by
unknown
01:28
created

Domain::getExtensionNamespace()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
namespace AfriCC\EPP\Extension\NASK\Update;
4
5
use AfriCC\EPP\ExtensionInterface;
6
use AfriCC\EPP\Frame\Command\Update\Domain as DomainUpdate;
7
use AfriCC\EPP\Validator;
8
9
class Domain extends DomainUpdate implements ExtensionInterface
10
{
11
    protected $extension = 'extdom';
12
    protected $extension_xmlns = 'http://www.dns.pl/nask-epp-schema/extdom-2.0';
13
14
    public function addNs($host, $remove = false)
15
    {
16
        if (!Validator::isHostname($host)) {
17
            throw new \Exception(sprintf('%s is not a valid host name', $host));
18
        }
19
20
        if ($remove) {
21
            $key = 'rem';
22
        } else {
23
            $key = 'add';
24
        }
25
26
        $this->set(sprintf('domain:%s/domain:ns[]', $key), $host);
27
    }
28
29
    public function removeNs($host)
30
    {
31
        return $this->addNs($host, true);
32
    }
33
34
    public function addHostObj($host, $remove = false)
35
    {
36
        return $this->addNs($host, $remove);
37
    }
38
39
    public function addAdminContact($contact, $remove = false)
40
    {
41
        if ($remove) {
42
            $key = 'rem';
43
        } else {
44
            return false; //TODO: should this thow if registry forbids adding Admin contact?
45
        }
46
47
        $this->set(sprintf('domain:%s/domain:contact[@type=\'admin\']', $key), $contact);
48
    }
49
50
    public function addTechContact($contact, $remove = false)
51
    {
52
        if ($remove) {
53
            $key = 'rem';
54
        } else {
55
            return false; //TODO: shuld this throw if registry forbids adding Tech contact?
56
        }
57
58
        $this->set(sprintf('domain:%s/domain:contact[@type=\'tech\']', $key), $contact);
59
    }
60
61
    public function addBillingContact($contact, $remove = false)
62
    {
63
        if ($remove) {
64
            $key = 'rem';
65
        } else {
66
            return false; //TODO: should this throw if registry forbids adding Billing contact
67
        }
68
69
        $this->set(sprintf('domain:%s/domain:contact[@type=\'billing\']', $key), $contact);
70
    }
71
}
72