PHP 手機簡訊驗證碼 laravel 實現流程
阿新 • • 發佈:2019-02-09
本人在自己部落格(Laravel)的註冊部分 使用手機號註冊,需要傳送簡訊驗證碼。
使用雲片(https://www.yunpian.com/)的 簡訊服務提供商,當然具體簡訊服務提供商大家可以自由選擇。
1,實現流程
輸入手機號,點選獲取驗證碼
提交正確的簡訊驗證碼後,註冊完成
2,實現思路圖
3,註冊 雲片,以及開發資訊認證,模板設定,這裡就不詳細展開了
4, 安裝 easy-sms,easy-sms 是安正超寫的一個簡訊傳送元件,利用這個元件,我們可以快速的實現簡訊傳送功能。
composer require "overtrue/easy-sms"
//新建配置檔案
touch config/easysms.php
然後在 easysms.php 檔案內 新增以下內容:
<?php
return [
'timeout'=>5.0,
'default'=>[
// 閘道器呼叫策略,預設:順序呼叫
'strategy' => \Overtrue\EasySms\Strategies\OrderStrategy::class,
// 預設可用的傳送閘道器
'gateways' => [
'yunpian ',
],
],
// 可用的閘道器配置
'gateways' => [
'errorlog' => [
'file' => '/tmp/easy-sms.log',
],
'yunpian' => [
'api_key' => env('YUNPIAN_API_KEY'),
],
],
];
然後建立一個 ServiceProvider
php artisan make:provider EasySmsServiceProvider
修改檔案
app/providers/EasySmsServiceProvider.php
<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
use Overtrue\EasySms\EasySms;
class EasySmsServiceProvider extends ServiceProvider
{
/**
* Bootstrap services.
*
* @return void
*/
public function boot()
{
//
}
/**
* Register services.
*
* @return void
*/
public function register()
{
$this->app->singleton(EasySms::class,function ($app){
return new EasySms(config('easysms'));
});
$this->app->alias(EasySms::class,'easysms');
}
}
最後 開啟config/app.php 在 providers 中增加 App\Providers\EasySmsServiceProvider::class,
5,獲取雲片的API_KEY
在 .env中配置 YUNPIAN_API_KEY,注意下面需要替換為你自己的 key
6,控制器程式碼 獲取驗證碼(將code 以及key存入快取)
public function getVerificationCode($request)
{
if(FALSE === $this->validateApiRequest($request->all(),
['mobile' => 'required|regex:/^1[34578]\d{9}$/|unique:users'],[
'mobile.required'=>'請輸入手機號',
'mobile.regex'=>'手機號格式不正確',
'mobile.unique'=>'手機號已存在'
])){
return false;
}
$mobile = trim($request->get('mobile'));
$code = str_pad(random_int(1,9999),4,0,STR_PAD_LEFT);
try{
$easySms->send($mobile,
['content'=>"【UKNOW】您的驗證碼是{$code}。如非本人操作,請忽略本簡訊"] );
}catch(\GuzzleHttp\Exception\ClientException $exception){
$response = $exception->getResponse();
$result =json_decode($response->getBody()->getContents(),true);
$this->setMsg($result['msg']?? '簡訊傳送異常');
return false;
}
$key = 'verificationCode'.str_random(15);
$expiredAt = now()->addMinutes(1);
Cache::put($key,['mobile'=>$mobile,'code'=>$code],$expiredAt);
return [
'verification_key'=>$key,
'expiredAt'=>$expiredAt->toDateTimeString(),
'verification_code'=>$code
];
}
7,對比驗證碼
public function userStore($mobile, $verification_key,$code,$password,$password_confirmation)
{
$params = [
'mobile'=>$mobile,
'verification_key'=>$verification_key,
'code'=>$code,
'password'=>$password,
'password_confirmation'=>$password_confirmation
];
//引數判斷
if (
FALSE === $this->validateApiRequest($params, [
'mobile' => 'required|regex:/^1[34578]\d{9}$/|unique:users',
'code' => 'required',
'verification_key'=>'required',
'password' => 'required|min:6|confirmed',
'password_confirmation' => 'required',
], [
'mobile.required' => '請輸入手機號',
'mobile.regex' => '手機號格式不正確',
'mobile.unique' => '手機號已存在',
'code.required' => '請輸入簡訊驗證碼',
'password.required' => '請輸入密碼',
'password.min' => '密碼不得小於6位',
'password.confirmed' => '密碼前後不一致',
'password_confirmation.required'=>'請再次輸入密碼',
'verification_key.required'=>'請輸入簡訊驗證碼'
])
) {
return false;
}
$verifyData = Cache::get($verification_key);
if( !$verifyData){
$this->setMsg('驗證碼已失效');
return false;
}
if(!hash_equals($code,(string)$verifyData['code'])){
$this->setMsg('驗證碼錯誤');
return false;
}
Cache::forget($verification_key);
$user = User::create([
'mobile'=>$mobile,
'password'=>bcrypt($password)
]);
if(!$user){
$this->setMsg('註冊失敗');
return false;
}
return true;
}
以上流程就是 手機驗證碼 基本步驟。。。。