mirror of
https://github.com/cp6/my-idlers.git
synced 2024-11-16 15:33:44 +01:00
Using native dns_get_record() instead of whatsmydns.net
This commit is contained in:
parent
bce776296b
commit
a89f624b08
18
class.php
18
class.php
@ -3057,11 +3057,19 @@ class idlers extends helperFunctions
|
||||
|
||||
public function getIpForDomain(string $domain, string $type = 'A'): string
|
||||
{//Gets IP from A record for a domain
|
||||
$data = json_decode(file_get_contents("https://whatsmydns.net/api/details?server=428&type=$type&query=$domain"), true);
|
||||
if (isset($data['data'][0]['response'][0])) {
|
||||
if (strlen($data['data'][0]['response'][0]) > 6) {
|
||||
return $data['data'][0]['response'][0];
|
||||
}
|
||||
switch ($type) {
|
||||
case "A":
|
||||
$data = dns_get_record($domain, DNS_A);
|
||||
if (isset($data['0']['ip'])) {
|
||||
return $data['0']['ip'];
|
||||
}
|
||||
break;
|
||||
case "AAAA":
|
||||
$data = dns_get_record($domain, DNS_AAAA);
|
||||
if (isset($data['0']['ipv6'])) {
|
||||
return $data['0']['ipv6'];
|
||||
}
|
||||
break;
|
||||
}
|
||||
return "";//Doesnt exist/null/empty/invalid
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user