Payload.php (3178B)
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 | <?php namespace netcup\DNS\API; final class Payload { /** * @var string */ private $user; /** * @var string */ private $password; /** * @var string */ private $domain; /** * @var string */ private $mode; /** * @var string */ private $ipv4; /** * @var string */ private $ipv6; /** * @var bool */ private $force = false; public function __construct(array $payload) { foreach (get_object_vars($this) as $key => $val) { if (isset($payload[$key])) { $this->$key = $payload[$key]; } } } /** * @return bool */ public function isValid() { return !empty($this->user) && !empty($this->password) && !empty($this->domain) && ( ( !empty($this->ipv4) && $this->isValidIpv4() ) || ( !empty($this->ipv6) && $this->isValidIpv6() ) ); } /** * @return string */ public function getUser() { return $this->user; } /** * @return string */ public function getPassword() { return $this->password; } /** * @return string */ public function getDomain() { return $this->domain; } /** * @return array */ public function getMatcher() { switch ($this->mode) { case 'both': return ['@', '*']; case '*': return ['*']; default: return ['@']; } } /** * there is no good way to get the correct "registrable" Domain without external libs! * * @see https://github.com/jeremykendall/php-domain-parser * * this method is still tricky, because: * * works: nas.tld.com * works: nas.tld.de * works: tld.com * failed: nas.tld.co.uk * failed: nas.home.tld.de * * @return string */ public function getHostname() { // hack if top level domain are used for dynDNS if (1 === substr_count($this->domain, '.')) { return $this->domain; } $domainParts = explode('.', $this->domain); array_shift($domainParts); // remove sub domain return implode('.', $domainParts); } /** * @return string */ public function getIpv4() { return $this->ipv4; } /** * @return bool */ public function isValidIpv4() { return (bool)filter_var($this->ipv4, FILTER_VALIDATE_IP, FILTER_FLAG_IPV4); } /** * @return string */ public function getIpv6() { return $this->ipv6; } /** * @return bool */ public function isValidIpv6() { return (bool)filter_var($this->ipv6, FILTER_VALIDATE_IP, FILTER_FLAG_IPV6); } /** * @return bool */ public function isForce() { return $this->force; } } |