alexgeno/phone-verification
Composer 安装命令:
composer require alexgeno/phone-verification
包简介
An extensible and configurable php library for phone verification
关键字:
README 文档
README
Signing in or signing up on a modern website or mobile app typically follows these steps:
- A user initiates verification by submitting a phone number
- The user receives an SMS or a call with a one-time password (OTP)
- The user completes verification by submitting the OTP
This extensible and configurable library allows to set this up just with a few lines of code
Requirements
- Supported PHP versions: 7.4, 8.0, 8.1, 8.2
- Composer
- Any of the supported sender SDKs: twilio/sdk, messagebird/php-rest-api, vonage/client
- Any of the supported storage clients: predis/predis, mongodb/mongo-php-library
Installation
composer require alexgeno/phone-verification
Note: All supported storage clients and sender SDKs are in require-dev section. In a production environment you must manually install only what you use.
Basic Usage
Instantiation
Predis as a storage and Twilio as a sender are used for the demonstration
use AlexGeno\PhoneVerification\Storage\Redis; use AlexGeno\PhoneVerification\Sender\Twilio; use AlexGeno\PhoneVerification\Manager; $storage = new Redis(new \Predis\Client('tcp://127.0.0.1:6379')); $sender = new Twilio(new \Twilio\Rest\Client('ACXXXXXX', 'YYYYYY'), ['from' => '+442077206312']); $manager = new Manager($storage);
There are two stages in the verification process
Initiation - a storage and a sender are required for this stage. A user submits a phone and as a result receives an otp
$manager->sender($sender)->initiate('+15417543010');
Completion - only a storage is required for this stage. The user submits the otp to verify the phone
$manager->complete('+15417543010', 1234);
That's basically it. More advanced usage including otp length customization, rate limiters, messages customization you can derive from the following sections.
Demo
Initiation
php example/initiate.php --storage redis --sender messageBird --to +15417543010
Completion
php example/complete.php --storage redis --to +15417543010 --otp 1111
Note: See DEVELOPMENT.md as an option for how to set up a development environment
Extending
To add a new sender just create a new class
namespace AlexGeno\PhoneVerification\Sender; class Plivo implements I { //... }
To add a new storage just create a new class
namespace AlexGeno\PhoneVerification\Storage; class DynamoDb implements I { //... }
Advanced usage
Rate limit params and otp params might be customized
Initiation
use AlexGeno\PhoneVerification\Storage\Redis; use AlexGeno\PhoneVerification\Sender\Twilio; use AlexGeno\PhoneVerification\Manager; use AlexGeno\PhoneVerification\Exception\RateLimit; $config = [ 'rate_limits' => [ 'initiate' => [ 'period_secs' => 86400, 'count' => 10, 'message' => fn($phone, $periodSecs, $count) => sprintf('You can send only %d sms in %d hours.', $count, $periodSecs / 60 / 60) ] ], 'otp' => [ 'length' => 4, // 1000..9999 'message' => fn($otp) => sprintf('Your code is %d', $otp) // The text a user receives ] ]; $storage = new Redis(new \Predis\Client('tcp://127.0.0.1:6379')); $sender = new Twilio(new \Twilio\Rest\Client('ACXXXXXX', 'YYYYYY'), ['from' => '+442077206312']); try { (new Manager($storage, $config))->sender($sender)->initiate('+15417543010'); } catch (RateLimit $e) { echo $e->getMessage(); // 'You can send only 10 sms in 24 hours' }
Completion
use AlexGeno\PhoneVerification\Storage\Redis; use AlexGeno\PhoneVerification\Manager; use AlexGeno\PhoneVerification\Exception\RateLimit; use AlexGeno\PhoneVerification\Exception\Otp; $config = [ 'rate_limits' => [ 'complete' => [ 'period_secs' => 300, 'count' => 5, 'message' => fn($phone, $periodSecs, $count) => sprintf('You are trying to use an incorrect code %d times in %d minutes', $count, $periodSecs / 60) ] ], 'otp' => [ 'message_expired' => fn($periodSecs, $otp) => sprintf('Code is expired. You have only %d minutes to use it.', $periodSecs / 60), 'message_incorrect' => fn($otp) => 'Code is incorrect' ] ]; $storage = new Redis(new \Predis\Client('tcp://127.0.0.1:6379')); try { (new Manager($storage, $config))->complete('+15417543010', 1234); } catch (RateLimit | Otp $e) { // 'Code is incorrect' || // 'Code is expired. You have only 5 minutes to use it.' || // 'You are trying to use an incorrect code 5 times in 5 minutes' echo $e->getMessage(); }
Note: Of course, you can define all $config options and instantiate all classes at the same place in your code.
It is split here just to make it more clear what belongs to the initiation stage and what to the completion stage
Note: Each $config option has a default value. You should redefine only what you need.
MongoDb indexes
If you use MongoDb as a storage you may have noticed that the expiration functionality is based on indexes. They can be created automatically. It's recommended though to use this option only in a non-production environment. It's disabled by default.
use AlexGeno\PhoneVerification\Storage\MongoDb; $storage = new MongoDb(new \MongoDB\Client('mongodb://127.0.0.1:27017'), ['indexes'=> true]);
Contributing
See CONTRIBUTING.md
Development
See DEVELOPMENT.md as an option for how to set up a development environment
Licence
The code for Phone Verification is distributed under the terms of the MIT license.
alexgeno/phone-verification 适用场景与选型建议
alexgeno/phone-verification 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 6.02k 次下载、GitHub Stars 达 6, 最近一次更新时间为 2023 年 04 月 26 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「redis」 「Authentication」 「sms」 「mongo」 「phone」 「twilio」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 alexgeno/phone-verification 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 alexgeno/phone-verification 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 alexgeno/phone-verification 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Microservice RPC through message queues.
Automatically logs-in users if they are already authenticated by a remote source. (e.g. environment variable REMOTE_USER)
GraphQL authentication for your headless Craft CMS applications.
The CodeIgniter Redis package
贝嘟分布式缓存扩展
Laravel middleware to restrict a site or specific routes using HTTP basic authentication
统计信息
- 总下载量: 6.02k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 7
- 点击次数: 35
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-04-26