spatie/laravel-rdap
Composer 安装命令:
composer require spatie/laravel-rdap
包简介
Perform RDAP queries in a Laravel app
关键字:
README 文档
README
RDAP is a protocol to query domain registration data. It is seen as the successor to WHOIS. The main advantage over WHOIS is that the returned data is standardized and structured as JSON. A downside of RDAP is that, at the moment of writing, not all TLDs are supported.
This package contains a few classes to query basic data from RDAP. It also provides caching of the responses out of the box.
Support us
We invest a lot of resources into creating best in class open source packages. You can support us by buying one of our paid products.
We highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using. You'll find our address on our contact page. We publish all received postcards on our virtual postcard wall.
Installation
You can install the package via composer:
composer require spatie/laravel-rdap
You can publish the config file with:
php artisan vendor:publish --tag="rdap-config"
This is the contents of the published config file:
<?php use Carbon\CarbonInterval; return [ /* * When making an RDAP query, we first have got to make a request to determine * the server responsible for the tld of the query. Here you can specify * how long we should cache the server URLs. */ 'tld_servers_cache' => [ 'store_name' => null, 'duration_in_seconds' => CarbonInterval::week()->totalSeconds, ], /* * RDAP seem to be a bit unreliable when responding to domain queries. * We solve this by attempting a request to RDAP a couple of times * until we get a response. */ 'domain_queries' => [ /* * How long we should wait per attempt to get a response */ 'timeout_in_seconds' => 5, /* * How many times we should attempt getting a response */ 'retry_times' => 3, /* * The time between attempts */ 'sleep_in_milliseconds_between_retries' => 1000, ], "ip_queries" => [ /* * How long we should wait per attempt to get a response */ "timeout_in_seconds" => 5, /* * How many times we should attempt getting a response */ "retry_times" => 3, /* * The time between attempts */ "sleep_in_milliseconds_between_retries" => 1000, ], ];
Usage
Perform a domain query
To get information about a domain, call domain().
use Spatie\Rdap\Facades\Rdap; $domain = Rdap::domain('google.com'); // returns an instance of `Spatie\Rdap\Responses\DomainResponse`
If you pass a non-existing domain, then the domain() function will return null.
Retrying requests
RDAP seem to be a bit unreliable when responding to domain requests. We solve this by attempting a request to RDAP a couple of times until we get a response. In the rdap config file, you can set the defaults for the retry mechanism.
You can override those defaults, by passing extra parameters to domain.
$domain = Rdap::domain( 'google.com' timeoutInSecons: 10, retryTimes: 4, sleepInMillisecondsBetweenRetries: 2000, );
Using custom RDAP servers
You can specify a custom RDAP server instead of the default one by passing the dnsServer parameter. This is useful if you want to query a specific registry’s RDAP endpoint or test against a private server.
$domain = Rdap::domain( 'google.com' dnsServer: 'https://rdap.verisign.com/com/v1/', );
Get various dates
On an instance of DomainResponse you can call various methods to fetch various dates. All of these methods return an instance of Carbon\Carbon.
$domain->registrationDate();
$domain->expirationDate();
$domain->lastChangedDate();
$domain->lastUpdateOfRdapDb();
Getting all domain properties
You can get all properties of a DomainResponse using all().
$properties = $domain->all(); // returns an array
To know which properties get returned, take a look at this json containing the response for google.com.
Getting a specific domain property
Use get() to get a specific domain property.
$domain->get('objectClassName'); // returns 'domain'
You can use dot notation to reach deeper in the properties.
$domain->get('links.0.value'); // returns 'https://rdap.verisign.com/com/v1/domain/GOOGLE.COM'
Check if a domain as a specific status
You can check if a domain has a specific status, such as "client transfer prohibited", using the hasStatus method.
use Spatie\Rdap\Enums\DomainStatus; $domain->hasStatus(DomainStatus::ClientTransferProhibited); // returns a boolean
Check if domain is supported by Rdap
You can check if Rdap has info about your domain using domainIsSupported
use Spatie\Rdap\Facades\Rdap; Rdap::domainIsSupported('freek.dev'); // returns true; Rdap::domainIsSupported('spatie.be'); // returns false because 'be' isn't currently a supported tld;
use Spatie\Rdap\Facades\Rdap; $domain = Rdap::domain('google.com'); // returns an instance of `Spatie\Rdap\Responses\DomainResponse`
If you pass a non-existing domain, then the domain() function will return null.
Handling errors
Sometimes RDAP is slow in responding. If a response isn't returned in a timely manner, a Spatie\Rdap\Exceptions\RdapRequestTimedOut exception will be thrown.
Sometimes RDAP servers return with an invalid response. If that happens, a Spatie\Rdap\Exceptions\InvalidRdapResponse exception will be thrown.
Both exceptions implement Spatie\Rdap\Exceptions\RdapException. You can catch that exception to handle both cases.
Perform an IP query
To get information about an IP, call ip().
use Spatie\Rdap\Facades\Rdap; $ip = Rdap::ip("127.0.0.1"); // returns an instance of `Spatie\Rdap\Responses\IpResponse
Get various dates from the IpRespones
On an instance of IpResponse you can call various methods to fetch various dates. All of these methods return an instance of Carbon\Carbon.
$ip->registrationDate(); $ip->expirationDate(); $ip->lastChangedDate(); $ip->lastUpdateOfRdapDb();
Getting a specific IP property
Similar to domain, you may call ->get() to get a specific property.
$ip->get("objectClassName"); // returns ip network
Working with RDAP DNS
For each TLD a specific server is used to respond to domain queries. Such a server is called a "DNS server". The official list of all RDAP DNS server is available as JSON here.
The Spatie\Rdap\RdapDns class can fetch information from that JSON file. Because all above domain methods need to search the approriate DNS server, we cache the list with available DNS servers. By default, the response will be cached for a week. You can configure this caching period in the rdap config file.
You can get info on Rdap DNS via this dns function.
$rdapDns = Spatie\Rdap\Facades\Rdap::dns();
Get the DNS server URL
To get the DNS server URL for a specific domain call getServerForDomain:
$rdapDns->getServerForDomain('google.com'); // returns "https://rdap.verisign.com/com/v1/"
Alternatively, you can use getServerForTld and pass a TLD.
$rdapDns->getServerForTld('com'); // returns "https://rdap.verisign.com/com/v1/"
If you pass a domain or tld that is not supported, the above methods will return null.
Get all supported TLDs
To get a list of all supported TLDs, call supportedTlds.
$rdapDns->supportedTlds(); // returns an array with all supported TLDs
Working with IPv4/IPv6 registries
Similar to RdapDns you may call getAllIPServers() to see all registries.
use Spatie\Rdap\RdapIpV4; $ipv4 = new RdapIpV4(); $ipv4->getAllIpServers(); // returns array<int, array<int, string>>
To find the server for an IP you may call getServerForIP().
use Spatie\Rdap\RdapIpV4; $ipv4 = new RdapIpV4(); $ipv4->getServerForIp("216.58.207.206"); // returns "https://rdap.arin.net/registry/"
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.
spatie/laravel-rdap 适用场景与选型建议
spatie/laravel-rdap 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 150.56k 次下载、GitHub Stars 达 71, 最近一次更新时间为 2022 年 05 月 25 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「laravel」 「spatie」 「laravel-rdap」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 spatie/laravel-rdap 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 spatie/laravel-rdap 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 spatie/laravel-rdap 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Receive webhooks in Laravel apps
Easily optimize images using PHP
Store your application settings
Alfabank REST API integration
Add tags and taggable behaviour to your Laravel app
Speed up a Laravel application by caching the entire response additions
统计信息
- 总下载量: 150.56k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 72
- 点击次数: 23
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-05-25