validator/livr
Composer 安装命令:
composer require validator/livr
包简介
Lightweight PHP validator supporting Language Independent Validation Rules Specification (LIVR)
关键字:
README 文档
README
NAME
Validator\LIVR - Lightweight validator supporting Language Independent Validation Rules Specification (LIVR)
SYNOPSIS
Common usage:
require 'LIVR.php' Validator\LIVR::defaultAutoTrim(true); $validator = new Validator\LIVR( [ 'name' => 'required', 'email' => [ 'required', 'email'], 'gender' => [ 'one_of' => ['male', 'female'] ], 'phone' => [ 'max_length' => 10 ], 'password' => [ 'required', ['min_length' => 10] ], 'password2' => [ 'equal_to_field' => 'password' ] ] ); var $validData = $validator->validate($userData); if ($validData) { saveUser($validData); } else { $errors = $validator->getErrors(); }
You can use filters separately or can combine them with validation:
$validator = new Validator\LIVR([ 'email' => [ 'required', 'trim', 'email', 'to_lc' ] ]);
Feel free to register your own rules:
$validator = new Validator\LIVR([ 'password' => ['required', 'strong_password'] ]); $validator->registerRules([ 'strong_password', function() { return function($value) { // We already have "required" rule to check that the value is present if ( !isset($value) || $value === '' ) { return; } if ( strlen($value) < 6 ) { return 'WEAK_PASSWORD' } } } ]);
DESCRIPTION
See https://github.com/koorchik/LIVR for details.
Features:
- Rules are declarative and language independent
- Any number of rules for each field
- Return together errors for all fields
- Excludes all fields that do not have validation rules described
- Has possibility to validatate complex hierarchical structures
- Easy to describe and undersand rules
- Returns understandable error codes(not error messages)
- Easy to add own rules
- Rules are be able to change results output ("trim", "nested_object", for example)
- Multipurpose (user input validation, configs validation, contracts programming etc)
INSTALL
Use Composer for installation LIVR. Create composer.json file with following content:
{
"require": {
"validator/livr": "dev-master"
}
}
CLASS METHODS
new Validator\LIVR($livr, $isAutoTrim);
Contructor creates validator objects. $livr - validations rules. Rules description is available here - https://github.com/koorchik/LIVR
$isAutoTrim - asks validator to trim all values before validation. Output will be also trimmed. if isAutoTrim is undefined(or null) than defaultAutoTrim value will be used.
Validator\LIVR::registerDefaultRules([ "rule_name" => ruleBuilder ])
ruleBuilder - is a function reference which will be called for building single rule validator.
Validator\LIVR::registerDefaultRules([ 'my_rule' => function($arg1, $arg2, $arg3, $ruleBuilders) { // ruleBuilders - are rules from original validator // to allow you create new validator with all supported rules $validator = new Validator\LIVR($livr); $validator->registerRules($ruleBuilders)->prepare(); return function($value, $allValues, &$outputArr) use ($validator) { ... if ($notValid) { return "SOME_ERROR_CODE"; } else { } } } ]);
Then you can use "my_rule" for validation:
[
'name1' => 'my_rule' // Call without parameters
'name2' => [ 'my_rule' => arg1 ] // Call with one parameter.
'name3' => [ 'my_rule' => [arg1] ] // Call with one parameter.
'name4' => [ 'my_rule' => [ arg1, arg2, arg3 ] ] // Call with many parameters.
]
Here is "max_number" implemenation:
function maxNumber($maxNumber) { return function($value) use($maxNumber) { // We do not validate empty fields. We have "required" rule for this purpose if ( !isset($value) || $value === '' ) { return; } // return error message if ( $value > $maxNumber ) { return 'TOO_HIGH'; } }; }; LIVR\Validator->registerDefaultRules([ 'max_number' => $maxNumber ]);
All rules for the validator are equal. It does not distinguish "required", "list_of_different_objects" and "trim" rules. So, you can extend validator with any rules you like.
Validator\LIVR::getDefaultRules();
returns array containing all default ruleBuilders for the validator. You can register new rule or update existing one with "registerRules" method.
Validator\LIVR::defaultAutoTrim($isAutoTrim)
Enables or disables automatic trim for input data. If is on then every new validator instance will have auto trim option enabled
OBJECT METHODS
$validator->validate($input)
Validates user input. On success returns validData (contains only data that has described validation rules). On error return false.
$validData = $validator->validate($input); $errors = $validator->getErrors(); if ($errors) { // Throw exceptions, write logs, show error messages, etc, using $errors } else { // Use $vaidData }
validator->getErrors()
Returns errors array.
[
"field1" => "ERROR_CODE",
"field2" => "ERROR_CODE",
...
]
For example:
[
"country" => "NOT_ALLOWED_VALUE",
"zip" => "NOT_POSITIVE_INTEGER",
"street" => "REQUIRED",
"building" => "NOT_POSITIVE_INTEGER"
]
$validator->registerRules(["rule_name" => ruleBuilder])
$ruleBuilder - is a function reference which will be called for building single rule validator.
See "Validator\LIVR::registerDefaultRules" for rules examples.
$validator->registerAliasedRule([ "name" => $ruleName, "rules" => $livrRules, "error" => $errorCode ]);
Create custom rules easely and assign own error codes in case own need. See rules-aliasing in LIVR specification.
$validator->registerAliasedRule([ "name" => "adult_age", "rules" => [ "positive_integer", ["min_number" => 18] ], "error" => "WRONG_AGE" ]);
$validator->getRules()
returns array containing all ruleBuilders for the validator. You can register new rule or update existing one with "registerRules" method.
AUTHORS
- antonfin (Anton Morozov)
- k0stik (Konstantin Dvornik)
- k33nice (Alexandr Krykovliuk)
- koorchik (Viktor Turskyi)
- wanderer (Danil Greben)
BUGS
Please report any bugs or feature requests to Github https://github.com/WebbyLab/php-validator-livr
LICENSE AND COPYRIGHT
Copyright 2012 Viktor Turskyi.
This program is free software; you can redistribute it and/or modify it under the terms of the the Artistic License (2.0). You may obtain a copy of the full license at:
http://www.perlfoundation.org/artistic_license_2_0
Any use, modification, and distribution of the Standard or Modified Versions is governed by this Artistic License. By using, modifying or distributing the Package, you accept this license. Do not use, modify, or distribute the Package, if you do not accept this license.
If your Modified Version has been derived from a Modified Version made by someone other than you, you are nevertheless required to ensure that your Modified Version complies with the requirements of this license.
This license does not grant you the right to use any trademark, service mark, tradename, or logo of the Copyright Holder.
This license includes the non-exclusive, worldwide, free-of-charge patent license to make, have made, use, offer to sell, sell, import and otherwise transfer the Package with respect to any patent claims licensable by the Copyright Holder that are necessarily infringed by the Package. If you institute patent litigation (including a cross-claim or counterclaim) against any party alleging that the Package constitutes direct or contributory patent infringement, then this Artistic License to you shall terminate on the date that such litigation is filed.
Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS "AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
validator/livr 适用场景与选型建议
validator/livr 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 314.59k 次下载、GitHub Stars 达 46, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「validator」 「livr」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 validator/livr 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 validator/livr 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 validator/livr 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Runn Me! Validation and Sanitization Library
Extension for Opis JSON Schema
Laravel credit card validator 2 from rap2hpoutre
Some pre-defined rules for validation in Omnipay payment processing library.
A shrimp of a validation library
Lightweight validator supporting Language Independent Validation Rules Specification (LIVR)
统计信息
- 总下载量: 314.59k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 46
- 点击次数: 17
- 依赖项目数: 3
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 未知