utopia-php/abuse
Composer 安装命令:
composer require utopia-php/abuse
包简介
A simple abuse library to manage application usage limits
关键字:
README 文档
README
Utopia framework abuse library is simple and lite library for managing application usage limits. This library is aiming to be as simple and easy to learn and use. This library is maintained by the Appwrite team.
Although this library is part of the Utopia Framework project it is dependency free, and can be used as standalone with any other PHP project or framework.
Getting Started
Install using composer:
composer require utopia-php/abuse
Time Limit Abuse
The time limit abuse allow each key (action) to be performed [X] times in given time frame. This adapter uses a MySQL / MariaDB to store usage attempts. Before using it create the table schema as documented in this repository (./data/schema.sql)
Database adapter
<?php require_once __DIR__ . '/../../vendor/autoload.php'; use Utopia\Abuse\Abuse; use Utopia\Abuse\Adapters\TimeLimit; use Utopia\Cache\Adapter\None as NoCache; use Utopia\Cache\Cache; use Utopia\Database\Adapter\MySQL; use Utopia\Database\Database; $dbHost = '127.0.0.1'; $dbUser = 'travis'; $dbPass = ''; $dbPort = '3306'; $pdo = new PDO("mysql:host={$dbHost};port={$dbPort};charset=utf8mb4", $dbUser, $dbPass, [ PDO::ATTR_TIMEOUT => 3, // Seconds PDO::ATTR_PERSISTENT => true, PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_ASSOC, PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION, PDO::ATTR_EMULATE_PREPARES => true, PDO::ATTR_STRINGIFY_FETCHES => true, ]); $db = new Database(new MySQL($pdo), new Cache(new NoCache())); $db->setNamespace('namespace'); // Limit login attempts to 10 time in 5 minutes time frame $adapter = new TimeLimit('login-attempt-from-{{ip}}', 10, (60 * 5), $db); $adapter->setup(); //setup database as required $adapter->setParam('{{ip}}', '127.0.0.1') ; $abuse = new Abuse($adapter); // Use vars to resolve adapter key if($abuse->check()) { throw new Exception('Service was abused!'); // throw error and return X-Rate limit headers here }
Appwrite TablesDB adapter
<?php require_once __DIR__ . '/../../vendor/autoload.php'; use Utopia\Abuse\Abuse; use Utopia\Abuse\Adapters\TimeLimit\Appwrite\TablesDB as TablesDBAdapter; use Appwrite\Client; $client = (new Client()) ->setEndpoint('[YOUR_ENDPOINT]') ->setProject('[YOUR_PROJECT_ID]') ->setKey('[YOUR_API_KEY]'); $databaseId = 'abuse'; // Limit login attempts to 10 time in 5 minutes time frame $adapter = new TablesDBAdapter('login-attempt-from-{{ip}}', 10, (60 * 5), $client, $databaseId); $adapter->setup(); //setup database as required $adapter->setParam('{{ip}}', '127.0.0.1'); $abuse = new Abuse($adapter); // Use vars to resolve adapter key if($abuse->check()) { throw new Exception('Service was abused!'); // throw error and return X-Rate limit headers here }
ReCaptcha Abuse
The ReCaptcha abuse controller is using Google ReCaptcha service to detect when service is being abused by bots. To use this adapter you need to create an API key from the Google ReCaptcha service admin console.
<?php require_once __DIR__ . '/../../vendor/autoload.php'; use Utopia\Abuse\Abuse; use Utopia\Abuse\Adapters\ReCaptcha; // Limit login attempts to 10 time in 5 minutes time frame $adapter = new ReCaptcha('secret-api-key', $_POST['g-recaptcha-response'], $_SERVER['REMOTE_ADDR']); $abuse = new Abuse($adapter); if($abuse->check()) { throw new Exception('Service was abused!'); // throw error and return X-Rate limit headers here }
Notice: The code above is for example purpose only. It is always recommended to validate user input before using it in your code. If you are using a load balancer or any proxy server you might need to get user IP from the HTTP_X_FORWARDED_FOR header.
System Requirements
Utopia Framework requires PHP 8.0 or later. We recommend using the latest PHP version whenever possible.
Copyright and license
The MIT License (MIT) http://www.opensource.org/licenses/mit-license.php
utopia-php/abuse 适用场景与选型建议
utopia-php/abuse 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 276.28k 次下载、GitHub Stars 达 27, 最近一次更新时间为 2019 年 04 月 29 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「framework」 「php」 「Abuse」 「upf」 「utopia」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 utopia-php/abuse 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 utopia-php/abuse 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 utopia-php/abuse 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
PHP Framework HLEB2 is the foundation of the web application. Provides ease of development and application performance.
Client library for reCAPTCHA with proxy support, a free service that protects websites from spam and abuse.
Official PHP SDK for the IPGeolocation.io IP Location API with single and bulk lookup support.
OpenStack Swift object storage backup plugin for the MyAdmin control panel. Provides authentication, container management, file upload/download, and ACL operations via the Swift API.
Monitoring handling plugin for MyAdmin
Payza payment gateway integration plugin for the MyAdmin billing and hosting management platform. Provides checkout form generation, invoice processing, and IPN handling via the Payza (formerly AlertPay) payment processor.
统计信息
- 总下载量: 276.28k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 27
- 点击次数: 15
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-04-29