bvtvd / captcha-lumen by bvtvd
forked from Yangbx/captcha-lumen

captcha for lumen
2,568
0
2
Package Data
Maintainer Username: bvtvd
Maintainer Contact: hans01@foxmail.com (hans)
Package Create Date: 2019-01-03
Package Last Update: 2019-01-03
Language: PHP
License: MIT
Last Refreshed: 2024-04-18 15:16:25
Package Statistics
Total Downloads: 2,568
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 2
Total Forks: 0
Total Open Issues: 0

Captcha for Lumen

本項目修改 Captcha for Laravel 5lumen-captcha

Preview

Preview

Install

  • 此 Package 必須開啟 Cache 才能使用,因為驗證碼與綁定驗證碼的 uuid 都是保存在 Cache 的。
composer require bvtvd/captcha-lumen

How to use

bootstrap/app.php中註冊Captcha Service Provider:

    $app->register(bvtvd\CaptchaLumen\CaptchaServiceProvider::class);
    class_alias('bvtvd\CaptchaLumen\Facades\Captcha','Captcha');

Set

bootstrap/app.php中可以設定各種自定義類型的驗證碼屬性,更多詳細設定請查看 Captcha for Laravel 5

/**
 * captcha set
 */
config(['captcha'=>
    [
        'useful_time' => 5, //驗證碼有效時間(分鐘)
        'captcha_characters' => '2346789abcdefghjmnpqrtuxyzABCDEFGHJMNPQRTUXYZ',
        'sensitive' => false, //驗證碼是否判斷大小寫
        'login'   => [ //驗證碼樣式
            'length'    => 4, //驗證碼字數
            'width'     => 120, //圖片寬度
            'height'    => 36, //字體大小和圖片高度
            'angle'     => 10, //字體傾斜度
            'lines'     => 2, //橫線數
            'quality'   => 90, //品質
            'invert'    =>false, //反相
            'bgImage'   =>true, //背景圖
            'bgColor'   =>'#ffffff',
            'fontColors'=>['#339900','#ff3300','#9966ff','#3333ff'],//字體顏色
        ],
    ]
]);

如果不配置設定檔,默認就是default,驗證碼有效時限為5分鐘。

Example

因為 Lumen 都是無狀態的 API,所以驗證碼圖片都會綁上一個 UUID,先獲得驗證碼的 UUID 跟圖片的 URL,驗證時再一併發送驗證碼與 UUID。

Generate

獲得驗證碼:

{Domain}/captchaInfo/{type?}

type就是在 config 中定義的 Type,如果不指定type,默認為default樣式,Response:

{
  "captchaUrl": "http://{Domain}/captcha/default/782fdc90-3406-f2a9-9573-444ea3dc4d5c",
  "captchaUuid": "782fdc90-3406-f2a9-9573-444ea3dc4d5c"
}

captchaUrl為驗證碼圖片的 URL,captchaUuid為綁定驗證碼圖片的uuid。

validate

在發送 Request 時將驗證碼與 UUID 一併送回 Server 端,在接收參數時做驗證即可:

public function checkCaptcha(Request $request, $type = 'default',$captchaUuid)
{
    $this->validate($request,[
        'captcha'=>'required|captcha:'.$captchaUuid
    ]);
    ...
}

Links