kwidoo/sms-verification 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

kwidoo/sms-verification

Composer 安装命令:

composer require kwidoo/sms-verification

包简介

A flexible SMS verification package supporting multiple providers

README 文档

README

Latest Version on Packagist Total Downloads GitHub Actions

Laravel SMS Verification

A Laravel package for sending and validating SMS-based verification codes through multiple providers (e.g., Twilio, Vonage, or any custom provider**).

Overview

  • Round Robin Support: Optionally cycle through multiple providers.
  • Pluggable Architecture: Implement your own custom verifier(s).
  • Abstracted Interface: A single interface for create() (sending code) and validate() (checking code).

Table of Contents

Installation

  1. Require via Composer:

    composer require kwidoo/sms-verification
  2. Publish Config (Optional):

    This will publish sms-verification.php into your Laravel config directory.

    php artisan vendor:publish --provider="Kwidoo\SmsVerification\SmsVerificationProvider" --tag="sms-verification-config"
  3. Configure Environment Variables:

    In your .env file, make sure to set the appropriate credentials for your desired providers. For example:

    # Twilio
    TWILIO_SID=xxxxxxxxxx
    TWILIO_AUTH_TOKEN=xxxxxxxxxx
    TWILIO_VERIFY_SID=xxxxxxxxxx
    
    # Vonage
    VONAGE_API_KEY=xxxxxxxxxx
    VONAGE_API_SECRET=xxxxxxxxxx
    VONAGE_BRAND="My Awesome App"

Configuration

The default configuration file sms-verification.php looks like this:

return [
    'verifiers' => [
        'twilio' => \Kwidoo\SmsVerification\Verifiers\TwilioVerifier::class,
        'vonage' => \Kwidoo\SmsVerification\Verifiers\VonageVerifier::class,
    ],
    'default' => 'twilio',
    'round_robin' => [
        'verifiers' => ['twilio', 'vonage'],
        'current_verifier_cache_key' => 'round_robin_verifiers_',
        'verifier_for_number_cache_key' => 'round_robin_verifier_for_',
    ],

    'vonage' => [
        'api_key' => env('VONAGE_API_KEY'),
        'api_secret' => env('VONAGE_API_SECRET'),
        'brand' => env('VONAGE_BRAND', 'MyApp'),
    ],
    'twilio' => [
        'sid' => env('TWILIO_SID'),
        'auth_token' => env('TWILIO_AUTH_TOKEN'),
        'verify_sid' => env('TWILIO_VERIFY_SID'),
    ],
];
  • default: Indicates the default SMS provider if one is not explicitly specified.
  • round_robin: An array of provider keys to use in a rotating fashion when RoundRobinVerifier is requested.
  • round_robin_cache_key: Cache key used to persist the index in the round-robin cycle.
  • twilio, vonage: Provider-specific credentials and settings.

Usage

Basic Usage

If you only want to use one provider (e.g., Twilio) for all verifications:

  1. Set 'default' => 'twilio' in sms-verification.php.

  2. In your code, you can do something like:

    use Kwidoo\SmsVerification\VerifierFactory;
    
    class SomeController extends Controller
    {
        public function sendCode(Request $request, VerifierFactory $factory)
        {
            $phoneNumber = $request->input('phone_number');
            $verifier = $factory->make(); // uses default (twilio)
            $verifier->create($phoneNumber);
    
            return response()->json(['status' => 'Verification code sent.']);
        }
    
        public function checkCode(Request $request, VerifierFactory $factory)
        {
            $phoneNumber = $request->input('phone_number');
            $code = $request->input('code');
            $verifier = $factory->make(); // uses default (twilio)
    
            if ($verifier->validate([$phoneNumber, $code])) {
                return response()->json(['status' => 'Code is valid!']);
            }
    
            // If invalid, handle appropriately
            return response()->json(['error' => 'Invalid code'], 422);
        }
    }

Round Robin Usage

If you want to rotate between providers (e.g., Twilio → Vonage → Twilio → Vonage…), you can request the round-robin verifier:

  1. round_robin is an array of strings referencing your verifiers: ['twilio', 'vonage'].

  2. In your code, you might do:

    use Kwidoo\SmsVerification\VerifierFactory;
    
    class SomeController extends Controller
    {
        public function sendCode(Request $request, VerifierFactory $factory)
        {
            $phoneNumber = $request->input('phone_number');
            $verifier = $factory->make('roundRobin');
            $verifier->create($phoneNumber);
    
            return response()->json(['status' => 'Verification code sent.']);
        }
    
        public function checkCode(Request $request, VerifierFactory $factory)
        {
            $phoneNumber = $request->input('phone_number');
            $code = $request->input('code');
            $verifier = $factory->make('roundRobin');
    
            if ($verifier->validate([$phoneNumber, $code])) {
                return response()->json(['status' => 'Code is valid!']);
            }
    
            // If invalid, handle appropriately
            return response()->json(['error' => 'Invalid code'], 422);
        }
    }

The round-robin verifier will:

  • On create(), pick the next provider in a cycle, send the verification code, and remember which provider was used for that phone number.
  • On validate(), retrieve that same provider to check the code.

Custom Verifiers

You can create your own SMS verifier by:

  1. Creating a class that implements VerifierInterface (or extend the base Verifier class).
  2. Register it in the container or simply reference its FQN in sms-verification.verifiers.

Example:

namespace App\Verifiers;

use Kwidoo\SmsVerification\Verifiers\Verifier;

class MyCustomVerifier extends Verifier
{
    public function create(string $phoneNumber): void
    {
        // Implementation to send code
    }

    public function validate(array $credentials): bool
    {
        // Implementation to check code
        return true;
    }
}

Then, in sms-verification.php:

'verifiers' => [
   'twilio' => \Kwidoo\SmsVerification\Verifiers\TwilioVerifier::class,
   'vonage' => \Kwidoo\SmsVerification\Verifiers\VonageVerifier::class,
   'my_custom' => \App\Verifiers\MyCustomVerifier::class,
],

And in code:

$verifier = $factory->make('my_custom');

Console Command

This package includes a console command to generate new custom verifiers from a stub:

php artisan verifier:create-sms-verifier {name?}

If you omit {name}, the command will prompt you to enter the verifier’s class name. It also asks for the client class (namespace) that the verifier should inject.

The newly generated file will be placed in app/Verifiers/{Name}.php. You can customize paths or logic within the command class CreateSmsVerifier.

Example Code

Here’s a quick example to tie it all together:

// routes/api.php

use Illuminate\Support\Facades\Route;
use Kwidoo\SmsVerification\VerifierFactory;

Route::post('/send-code', function(\Illuminate\Http\Request $request, VerifierFactory $factory) {
    $phoneNumber = $request->input('phone_number');

    // If you want round robin, pass 'roundRobin' or whichever config key you want:
    // $verifier = $factory->make('roundRobin');
    $verifier = $factory->make(); // default is 'twilio'

    $verifier->create($phoneNumber);
    return response()->json(['message' => 'Code sent']);
});

Route::post('/verify-code', function(\Illuminate\Http\Request $request, VerifierFactory $factory) {
    $phoneNumber = $request->input('phone_number');
    $code = $request->input('code');

    $verifier = $factory->make(); // or 'roundRobin'
    $isValid = $verifier->validate([$phoneNumber, $code]);

    return response()->json(['valid' => $isValid]);
});

Credits

  • Twilio for their robust Verify service.
  • Vonage (formerly Nexmo) for their Verify APIs.
  • Sinch for their SMS verification service.
  • Telnyx for their Verify API.
  • Plivo for their SMS verification service.
  • seven.io for their SMS verification service.
  • Telesign for their SMS verification service.
  • Laravel community for a great framework to extend.

License

This package is open-sourced software licensed under the MIT license.

TODO

  • Make more round-robin strategies (e.g., Weighted Round Robin, Random, etc.).
  • Implement a “fallback” approach (try one provider; if it fails, try another).
  • Add tests.
  • Add webhook support to better handle fails
  • Add support for other SMS providers:
  • Plivo
  • Sinch
  • seven.io
  • Telesign
  • ClickSend
  • Textmagic
  • SlickText
  • Infobip
  • Routee
  • Telnyx

kwidoo/sms-verification 适用场景与选型建议

kwidoo/sms-verification 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 21 次下载、GitHub Stars 达 0, 最近一次更新时间为 2025 年 03 月 04 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「sms-verification」 「kwidoo」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 kwidoo/sms-verification 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 kwidoo/sms-verification 我们能提供哪些服务?
定制开发 / 二次开发

基于 kwidoo/sms-verification 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 21
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 16
  • 依赖项目数: 2
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-03-04