kdn/yii2-domain-validator
Composer 安装命令:
composer require kdn/yii2-domain-validator
包简介
Domain name validator for Yii 2.
关键字:
README 文档
README
Domain validator for Yii 2.
Requirements
- PHP 5.4 or later or HHVM 3;
- Yii framework 2;
- PHP extensions:
ctype(character type checking) extension (required);mbstring(multibyte string) extension (required);intl(internationalization functions) extension (optional, for IDN only).
Installation
The preferred way to install this extension is through Composer.
To install, either run
php composer.phar require kdn/yii2-domain-validator "*"
or add
"kdn/yii2-domain-validator": "*"
to the require section of your composer.json file.
Usage
Model class example:
<?php namespace app\models; use kdn\yii2\validators\DomainValidator; use Yii; use yii\base\Model; class YourCustomModel extends Model { public $domain; public function rules() { return [ ['domain', DomainValidator::class], /* or with custom options: enable IDN and forbid URLs [ 'domain', DomainValidator::class, 'enableIDN' => true, 'allowURL' => false, ], */ ]; } public function attributeLabels() { return [ 'domain' => Yii::t('app', 'Domain Name'), ]; } }
Please view public properties in class DomainValidator to get info about all available options, they documented comprehensively. Here I will highlight only non-evident things.
-
By default, validator allows URL, it will try to parse URL and then validate domain name. Note that model attribute value itself will not be modified. If URL parsing fails then validator considers value as domain. Validator may work not perfect for invalid URLs. For example user input is
http//example.com, the error message will beEach label of the input value can consist of only letters, numbers and hyphens, although it would be better to show something likeInvalid URL. The problem is that if field allows both URL and bare domain name and the input value is invalid, then it is impossible to reliably determine what did user wanthttp://example.comorhttp.example.com. If you don't need URLs at all, only stand-alone domain name, you can disable this behavior by settingallowURLtofalse. If you always need to validate domain name in URL, no stand-alone domain name, then you should add URL validator before domain name validator:public function rules() { return [ ['domain', 'url'], ['domain', DomainValidator::class], ]; }
-
By default, minimum number of domain name labels is 2. So
example- invalid,example.com- valid. It is not standard requirement for domain name, standard states that domain nameexampleis valid. I added this restriction for practical reasons, you can disable it or require even more domain name labels using optionlabelNumberMin. -
Client side validation not implemented, and I have not such plans. Please consider AJAX validation if you want to bring domain validation on client side.
Testing
Make sure you installed all Composer dependencies (run composer update in the base directory of repository).
Run PHPUnit in the base directory of repository:
./vendor/bin/phpunit
Testing using Docker
Requirements
Up and running
-
Provide credentials for Composer:
cp auth.json.example \ auth.jsonI suggest to set GitHub OAuth token (also known as personal access token) in
auth.json, however if you have doubts about security, or you are lazy to generate token then you can replace content ofauth.jsonon{}, in most cases this will work. -
Build images for services:
docker buildx bake --load --pull
or
docker buildx bake --load --pull --no-cache --progress plain
see
docker buildx bake --helpfor details. -
Start service in background mode:
docker-compose up --detach 8.1
This command will start the service with PHP 8.1. Also allowed
7.4,5.6,8.1-alpine,7.4-alpineand5.6-alpine, see services defined indocker-compose.yml. -
Execute tests in the running container:
docker-compose exec 8.1 ./vendor/bin/phpunitAlternatively you can start a shell in the running container and execute tests from it:
docker-compose exec 8.1 sh $ ./vendor/bin/phpunit -
Stop and remove containers created by
up:docker-compose down
You may want to remove volumes along with containers:
docker-compose down --volumes
Backward compatibility promise
yii2-domain-validator is using Semver. This means that versions are tagged with MAJOR.MINOR.PATCH. Only a new major version will be allowed to break backward compatibility (BC).
PHP 8 introduced named arguments, which increased the cost and reduces flexibility for package maintainers. The names of the arguments for methods in yii2-domain-validator is not included in our BC promise.
kdn/yii2-domain-validator 适用场景与选型建议
kdn/yii2-domain-validator 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 125.63k 次下载、GitHub Stars 达 11, 最近一次更新时间为 2016 年 06 月 26 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「validator」 「extension」 「domain」 「yii2」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 kdn/yii2-domain-validator 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 kdn/yii2-domain-validator 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 kdn/yii2-domain-validator 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Runn Me! Validation and Sanitization Library
A custom URL rule class for Yii 2 which allows to create translated URL rules
Extension for Opis JSON Schema
The Yii2 extension uses jQuery jquery.carousel-1.1.min.js and makes image carousel from php array of structure defined.
TYPO3 CMS extension to create gallery content element with preset crop ratios and pagination
UI Kit 3 Extension for Yii2
统计信息
- 总下载量: 125.63k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 11
- 点击次数: 22
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-06-26