Laravel 贴合实际需求同时满足多种通道的短信发送组件
基于业务需求在 overtrue/easy-sms 基础进行扩展开发,主要实现如下目标:
composer require ibrand/laravel-sms:~1.0 -vvv
低于 Laravel5.5 版本
config/app.php
文件中 'providers' 添加
iBrand\Sms\ServiceProvider::class
config/app.php
文件中 'aliases' 添加
'Sms'=> iBrand\Sms\Facade::class
'route' => [
'prefix' => 'sms',
'middleware' => ['web'],
],
or
'route' => [
'prefix' => 'sms',
'middleware' => ['api'],
],
POST请求 http://your.domain/sms/verify-code
参数:mobile
备注:为了开发调试方便,在 debug 模式下不会验证手机的有效性。
返回参数:
{
"status": true,
"message": "短信发送成功"
}
use iBrand\Sms\Facade as Sms;
Sms::send(request('mobile'));
由于使用多网关发送,所以一条短信要支持多平台发送,每家的发送方式不一样,但是我们抽象定义了以下公用属性:
content
文字内容,使用在像云片类似的以文字内容发送的平台template
模板 ID,使用在以模板ID来发送短信的平台data
模板变量,使用在以模板ID来发送短信的平台use iBrand\Sms\Facade as Sms;
Sms::send(request('mobile'), [
'content' => '您的验证码为: 83115',
'template' => 'SMS_001',
'data' => [
'code' => 83115
],
]);
默认使用 default
中的设置来发送,如果某一条短信你想要覆盖默认的设置。在 send
方法中使用第三个参数即可:
use iBrand\Sms\Facade as Sms;
Sms::send((request('mobile'), [
'content' => '您的验证码为: 83115',
'template' => 'SMS_001',
'data' => [
'code' => 83115
],
], ['aliyun']); // 这里的网关配置将会覆盖全局默认
已容联云通讯为例:你可以根据发送场景的不同,定义不同的短信类,通过继承 Overtrue\EasySms\Message
来定义短信模型:
<?php
use Overtrue\EasySms\Message;
use Overtrue\EasySms\Contracts\GatewayInterface;
class CustomMessage extends Message
{
protected $code;
protected $gateways = ['yuntongxun']; //在sms.php配置文件中添加gateways选项: yuntongxun
//...
public function __construct($code)
{
$this->code = $code;
}
// 定义直接使用内容发送平台的内容
public function getContent(GatewayInterface $gateway = null)
{
}
// 定义使用模板发送方式平台所需要的模板 ID
public function getTemplate(GatewayInterface $gateway = null)
{
return 'templateId';
}
// 模板参数
public function getData(GatewayInterface $gateway = null)
{
return [
$this->code,
//...
];
}
}
使用,具体请参考iBrand\Sms\Test\CustomMessage
:
use iBrand\Sms\Facade as Sms;
$code = Sms::getNewCode(request('mobile'));
$message = new CustomMessage($code->code);
Sms::send(request('mobile'), $message, ['yuntongxun']);
use iBrand\Sms\Facade as Sms;
if (!Sms::checkCode(\request('mobile'), \request('code'))) {
//Add you code.
}
在 config/ibrand/sms.php
的 gateways
参数可以直接添加 code_template_id
来配置模板 id
// 可用的网关配置
'gateways' => [
'errorlog' => [
'file' => '/tmp/easy-sms.log',
],
'yunpian' => [
'api_key' => '824f0ff2f71cab52936axxxxxxxxxx',
],
'aliyun' => [
'access_key_id' => 'dalvTXXX',
'access_key_secret' => 'XXXX',
'sign_name' => '阿里云短信测试专用',
'code_template_id' => 'SMS_80215252'
],
'alidayu' =>
//...
],
],
非模板类通道,可以通过 config/ibrand/sms.php 自定义短信内容
'content' => '【your signature】亲爱的用户,您的验证码是%s。有效期为%s分钟,请尽快验证。'
在实际开发中会存在并不用真实发出验证码的情况,因此在 debug 模式下,可以通过
http://your.domain/api/sms/info?mobile=1898888XXXX
来直接只看某个手机号当前有效验证码信息。
目前已经支持把发送记录保存到数据库,执行 php artisan migrate
生成 laravel_sms_log
表。
同时在 config/ibrand/sms.php
把 dblog
设置为 true
'dblog' => true,
全网真正免费的IT课程平台
专注于综合IT技术的在线课程,致力于打造优质、高效的IT在线教育平台
课程方向包含Python、Java、前端、大数据、数据分析、人工智能等热门IT课程
300+免费课程任你选择