appwrite/src/Appwrite/Network/Validator/CNAME.php

55 lines
1,003 B
PHP
Raw Normal View History

2020-02-20 22:15:53 +00:00
<?php
2020-06-11 19:36:10 +00:00
namespace Appwrite\Network\Validator;
2020-02-20 22:15:53 +00:00
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';
2020-02-20 22:15:53 +00:00
}
/**
* 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);
2020-02-20 22:15:53 +00:00
} catch (\Throwable $th) {
return false;
}
if(!$records || !\is_array($records)) {
2020-02-20 22:15:53 +00:00
return false;
}
foreach($records as $record) {
if(isset($record['target']) && $record['target'] === $this->target) {
return true;
}
}
return false;
}
}