jsonpolicy/jsonpolicy-php
Composer 安装命令:
composer require jsonpolicy/jsonpolicy-php
包简介
JSON Policy - Distributed Rule Engine for PHP
README 文档
README
JSON Policy is the lightweight, no dependencies framework that allows you to decouple your codebase from conditional logic.
It is the domain-specific language based on the JSON-format where you prepare well-structured JSON policies that contain knowledge on when to execute certain features/services and under which circumstances.
Prerequisites
Before you begin, ensure you have met the following requirements: PHP 7.3+ (recommended), however, may run on PHP 7.0+; You have read Json Policy Documentation;
Installation
You can install the library via Composer with the following command:
composer require jsonpolicy/jsonpolicy-php
To install manually, download this repository and move all the files inside the src folder to the desired destination. Then simply register the autoload function as following
spl_autoload_register(function ($class_name) { if (strpos($class_name, 'JSONPolicy') === 0) { $filepath = '<your-desired-folder>'; $filepath += str_replace(array('JSONPolicy', '\\'), array('', '/'), $class_name) . '.php'; } if (!empty($filepath) && file_exists($filepath)) { require_once $filepath; } });
Using JSON Policy
Let's imagine that you build an application for the car dealership, where based on the currently logged in agent, you determine if he/she is allowed to sell the car from available stock. Conditions under which this is determined may vary and most likely will be fluctuated regularly.
Here is how your code may look like:
use JsonPolicy\Manager as JsonPolicyManager; $manager = JsonPolicyManager::bootstrap([ 'repository' => [ file_get_contents(__DIR__ . '/policy.json') ] ]); // Create the car dealership instance and pass the available list of cars that can // be sold $dealership = new Dealership($stock); // Check which car is allowed to be sold based on policy attached to current // identity foreach ($dealership as $car) { if ($manager->isAllowedTo($car, 'sell') === true) { echo "You can sell the {$car->model} ($car->year)\n"; } else { echo "You cannot sell the {$car->model} ($car->year)\n"; } }
The policy that defines all the conditions can be something like this:
{
"Statement": [
{
"Effect": "deny",
"Resource": "Car"
},
{
"Effect": "allow",
"Resource": "Car",
"Action": [
"sell",
"view"
],
"Condition": {
"LessOrEquals": {
"(*int)${Car.price}": 30000
}
}
}
]
}
The above policy does not allow agents to sell or even see cars that are above $30k.
Contributing To The Project
To contribute to JSON Policy, follow these steps:
- Fork this repository.
- Create a branch:
git checkout -b <branch_name>. - Make your changes and commit them:
git commit -m '<commit_message>' - Push to the original branch:
git push origin <project_name>/<location> - Create the pull request.
Alternatively see the GitHub documentation on creating a pull request.
Contact
If you want to contact me you can reach me at vasyl@vasyltech.com.
License
jsonpolicy/jsonpolicy-php 适用场景与选型建议
jsonpolicy/jsonpolicy-php 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 9 次下载、GitHub Stars 达 2, 最近一次更新时间为 2020 年 10 月 26 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「json policy」 「access controls」 「access controls as code」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 jsonpolicy/jsonpolicy-php 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 jsonpolicy/jsonpolicy-php 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 jsonpolicy/jsonpolicy-php 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Dibi is Database Abstraction Library for PHP
Kinikit - PHP Application development framework MVC component
Simple and configurable SilverStripe module to notify users about cookie policies
A module for CSP headers in Silverstripe.
Provide a way to secure accesses to all routes of an symfony application.
ext-json wrapper with sane defaults
统计信息
- 总下载量: 9
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 4
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-10-26