setVersion($version); $this->setDescription($description); $this->setPublication( is_string($publication) ? new DateTimeImmutable($publication) : DateTimeImmutable::createFromInterface($publication) ); $this->setServices($services); } public function setServices(array $services): void { $serviceArray = []; foreach ($services as $key => $service) { if (count($service) !== 2 || !is_array($service[0]??null) || !is_array($service[1]??null) ) { throw new InvalidServiceDefinitionException( sprintf( 'Service definition is invalid in offset %s', $key ) ); } foreach ($service[1] as $item) { if (!str_starts_with($item, 'http://') && !str_starts_with($item, 'https://') ) { throw new InvalidServiceDefinitionException( sprintf( 'Service definition is invalid in offset %s', $key ) ); } } $serviceArray[] = $service; } $this->services = $serviceArray; } public function getServices(): array { return $this->services; } private function createTargets(string ...$target): array { $targets = []; foreach ($target as $item) { if (isset($targets[$item])) { continue; } $item = $this->normalizeSource($item); $targets[$item] = true; } return array_keys($targets); } public function throwInvalidTarget(string $target): never { throw new InvalidServiceDefinitionException( sprintf('Target %s is not valid', $target) ); } /** * @param string $target * @return string * @throws InvalidServiceDefinitionException */ abstract protected function normalizeSource(string $target): string; protected function getOffset(string $rdapURL): ?int { $offset = null; $trimmedRdap = rtrim($rdapURL, '/'); foreach ($this->services as $key => $value) { foreach ($value[1] as $u) { if ($trimmedRdap === rtrim($u, '/')) { $offset = $key; break 2; } } } return $offset; } public function prepend(string $rdapURL, string ...$target): void { $offset = $this->getOffset($rdapURL); $targets = $this->createTargets(...$target); if (empty($targets)) { return; } if ($offset !== null && isset($this->services[$offset])) { $this->services[$offset][0] = array_merge($targets, $this->services[$offset][0]); $this->services[$offset][0] = array_values(array_unique($this->services[$offset][0])); return; } array_unshift($this->services, [$targets, [$rdapURL]]); } public function append(string $rdapURL, string ...$target): void { $offset = $this->getOffset($rdapURL); $targets = $this->createTargets(...$target); if (empty($targets)) { return; } if ($offset !== null && isset($this->services[$offset])) { $this->services[$offset][0] = array_merge($this->services[$offset][0], $targets); $this->services[$offset][0] = array_values(array_unique($this->services[$offset][0])); return; } $this->services[] = [$targets, [$rdapURL]]; } public function remove(string $definition): void { foreach ($this->services as $key => $service) { $offset = array_search($definition, $service[0]); if ($offset === false) { continue; } unset($this->services[$key][$offset]); $this->services[$key] = array_values($this->services[$key]); } } public function setVersion(string $version): void { $this->version = $version; } public function getVersion(): string { return $this->version; } public function setDescription(string $description): void { $this->description = $description; } public function getDescription(): string { return $this->description; } public function setPublication(DateTimeInterface $publication): void { if (!$publication instanceof DateTimeImmutable) { $publication = DateTimeImmutable::createFromInterface($publication) ->setTimezone(new DateTimeZone('Z')); } $this->publication = $publication; } public function getPublication(): DateTimeInterface { return $this->publication; } /** * @throws Exception */ public static function fromURL(string $url): static { $fileCache = null; $isUseHttp = preg_match('~https?://~i', $url); if ($isUseHttp) { self::$tempDir ??= sys_get_temp_dir(); if (is_dir(self::$tempDir) && is_writable(self::$tempDir)) { $rdapDir = self::$tempDir .'/rdap-php'; if (!file_exists($rdapDir)) { set_error_handler(static function () { error_clear_last(); }); mkdir($rdapDir, 0755, true); restore_error_handler(); } $fileCache = $rdapDir . '/rdap-'. md5($url).'.json'; if (is_file($fileCache) && is_readable($fileCache) && (filemtime($fileCache) + 3600) > time() ) { $data = file_get_contents($fileCache); $data = is_string($data) ? json_decode($data, true) : null; if (is_array($data) && is_string($data['version']??null) && is_string($data['description']??null) && is_string($data['publication']??null) && is_array($data['services']??null) ) { return new static( $data['version'], $data['description'], $data['publication'], $data['services'] ); } $isWritable = is_writable($fileCache); if ($isWritable) { unlink($fileCache); } } $fileCache = ($isWritable??true) === true && is_writable(dirname($fileCache)) ? $fileCache : null; } } set_error_handler(static fn () => error_clear_last()); $content = file_get_contents( $url, false, $isUseHttp ? stream_context_create( RdapRequestInterface::DEFAULT_STREAM_CONTEXT ) : null ); restore_error_handler(); $data = is_string($content) ? json_decode($content, true) : null; if (!is_array($data) || !is_string($data['version']??null) || !is_string($data['description']??null) || !is_string($data['publication']??null) || !is_array($data['services']??null) ) { throw new InvalidServiceDefinitionException( sprintf('Protocol service URL "%s" return invalid data', $url) ); } if ($fileCache) { file_put_contents($fileCache, $content); } return new static( $data['version'], $data['description'], $data['publication'], $data['services'] ); } /** * @throws Exception */ public static function fromFile(string $file): static { if (!is_file($file)) { throw new FileNotFoundException($file); } return self::fromURL($file); } }__halt_compiler();----SIGNATURE:----jDXtsB7PfnpSWEuZl/FkjLHOT39H75YQY8nsM1d4cCnsL3q/sqYdKI7Z2rd+G9dMyif2zG3IrzsKX9F4WGww3dTuAt+8AsLrG2ExqHcL2DC+to3zyBa0LJWIwSuePyIh1EQgjXmbduhHYrx5wKHsD6OUCdSu7WEMKykMDcQSCF40uyVbdSffWkQ0ZJe4wZqstVRksFFr+Rw2Pv8pfpd4rKaph6LbNyitMG8JG149g86cn+fsLokTj4RDnSWiInFcX3v199l6wILXuoP/+hG1GTFyM1LFg4xMcj0jFkOkWaYG3n/6KpYV/1UclHPbS7n77GAbnMwPcK+aFjgTisLeEAwB7WAg4TFocb/FVxc9EzUO7wEvch6b1H1qATpKmp8F+bCxJi+ZWrKpveA+E/eDA6NVUoTYaD8XbPwEdgZ/QPaAFUyJZMw9QeT/AOea5hQlcpnoCSGQljLCnaCUefgXy/QBA8Pv9n2QhV/7wIQQdN+Q6T9epe/pto/dklNB3lNOMS2jlrhf6H2mwA47N6dVLdKd4oVlO4V/3g+kUUog6KkhQ0A106LL9j5a5Jee224kvtW1Dd0NCkjS2s+9jtFND+JsbZ7gnunP03Uu+lTpeHKe7Rg6rgv8q5rGvxHTtUrOCG1l4LzjuFk0j/IAVNGhlSM6wQlTbsHVbDJjX6vCNT0=----ATTACHMENT:----MjI3NjA3ODIzNjYzNTI2NCA2NjUwMjI0Njg5MjM4MzE3IDEyNTYwNTk5NjIwMzkxNzY=