1
0
Fork 0
mirror of synced 2024-06-03 11:24:48 +12:00
appwrite/src/Appwrite/Network/Validator/CNAME.php
2020-06-25 00:05:16 +03:00

55 lines
1,005 B
PHP

<?php
namespace Appwrite\Network\Validator;
use Utopia\Validator;
class CNAME extends Validator
{
/**
* @var int
*/
protected $target;
/**
* @param string $target
*/
public function __construct($target)
{
$this->target = $target;
}
public function getDescription()
{
return 'Invalid CNAME record';
}
/**
* Check if CNAME record target value matches selected target
*
* @param string $domain
*
* @return bool
*/
public function isValid($domain)
{
try {
$records = \dns_get_record($domain, DNS_CNAME);
} catch (\Throwable $th) {
return false;
}
if (!$records || !\is_array($records)) {
return false;
}
foreach ($records as $record) {
if (isset($record['target']) && $record['target'] === $this->target) {
return true;
}
}
return false;
}
}