matthewbdaly/sms-client
Composer 安装命令:
composer require matthewbdaly/sms-client
包简介
A generic SMS client library. Supports multiple swappable drivers.
关键字:
README 文档
README
A generic SMS client library. Supports multiple swappable drivers, so that you're never tied to just one provider.
This library is aimed squarely at sending SMS messages only, and I don't plan to add support for other functionality. The idea is to create one library that should be able to work with any provider that has a driver for the purpose of sending SMS messages.
Drivers
It currently ships with the following drivers:
- Clockwork
- Nexmo
- TextLocal
- Twilio
- AWS SNS (requires installation of
aws/aws-sdk-php) - Mail (for mail-to-SMS gateways)
- O2SK (O2 Slovakia)
In addition, it also has the following drivers for test purposes:
- RequestBin
- Null
- Log
The RequestBin sends the POST request to the specified RequestBin path for debugging. The Null driver does nothing, while the Log driver accepts a PSR3 logger and uses it to log the request.
Example Usage
Null
use GuzzleHttp\Client as GuzzleClient; use GuzzleHttp\Psr7\Response; use Matthewbdaly\SMS\Drivers\Null; use Matthewbdaly\SMS\Client; $guzzle = new GuzzleClient; $resp = new Response; $driver = new Null($guzzle, $resp); $client = new Client($driver); $msg = [ 'to' => '+44 01234 567890', 'content' => 'Just testing', ]; $client->send($msg);
Log
use Matthewbdaly\SMS\Drivers\Log; use Matthewbdaly\SMS\Client; use Psr\Log\LoggerInterface; $driver = new Log($logger); // $logger should be an implementation of Psr\Log\LoggerInterface $client = new Client($driver); $msg = [ 'to' => '+44 01234 567890', 'content' => 'Just testing', ]; $client->send($msg);
RequestBin
use GuzzleHttp\Client as GuzzleClient; use GuzzleHttp\Psr7\Response; use Matthewbdaly\SMS\Drivers\RequestBin; use Matthewbdaly\SMS\Client; $guzzle = new GuzzleClient; $resp = new Response; $driver = new RequestBin($guzzle, $resp, [ 'path' => 'MY_REQUESTBIN_PATH', ]); $client = new Client($driver); $msg = [ 'to' => '+44 01234 567890', 'content' => 'Just testing', ]; $client->send($msg);
Clockwork
use GuzzleHttp\Client as GuzzleClient; use GuzzleHttp\Psr7\Response; use Matthewbdaly\SMS\Drivers\Clockwork; use Matthewbdaly\SMS\Client; $guzzle = new GuzzleClient; $resp = new Response; $driver = new Clockwork($guzzle, $resp, [ 'api_key' => 'MY_CLOCKWORK_API_KEY', ]); $client = new Client($driver); $msg = [ 'to' => '+44 01234 567890', 'content' => 'Just testing', ]; $client->send($msg);
Nexmo
use GuzzleHttp\Client as GuzzleClient; use GuzzleHttp\Psr7\Response; use Matthewbdaly\SMS\Drivers\Nexmo; use Matthewbdaly\SMS\Client; $guzzle = new GuzzleClient; $resp = new Response; $driver = new Nexmo($guzzle, $resp, [ 'api_key' => 'MY_NEXMO_API_KEY', 'api_secret' => 'MY_NEXMO_API_SECRET', ]); $client = new Client($driver); $msg = [ 'to' => '+44 01234 567890', 'from' => 'Test User', 'content' => 'Just testing', ]; $client->send($msg);
AWS SNS
use Matthewbdaly\SMS\Client; use Matthewbdaly\SMS\Drivers\Aws; $config = [ 'api_key' => 'foo', 'api_secret' => 'bar', 'api_region' => 'ap-southeast-2' ]; $driver = new Aws($config); $client = new Client($driver); $msg = [ 'to' => '+44 01234 567890', 'from' => 'Test User', 'content' => 'Just testing', ]; $client->send($msg);
use Matthewbdaly\SMS\Client; use Matthewbdaly\SMS\Drivers\Mail; use Matthewbdaly\SMS\Contracts\Mailer; $config = [ 'domain' => 'my.sms-gateway.com' ]; $driver = new Mail($config); $client = new Client($driver); $msg = [ 'to' => '+44 01234 567890', 'content' => 'Just testing', ]; $client->send($msg);
TextLocal
use GuzzleHttp\Client as GuzzleClient; use GuzzleHttp\Psr7\Response; use Matthewbdaly\SMS\Drivers\TextLocal; use Matthewbdaly\SMS\Client; $guzzle = new GuzzleClient; $resp = new Response; $driver = new TextLocal($guzzle, $resp, [ 'api_key' => 'MY_TEXTLOCAL_API_KEY', ]); $client = new Client($driver); $msg = [ 'to' => '+44 01234 567890', 'from' => 'Test User', 'content' => 'Just testing', ]; $client->send($msg);
Twilio
use GuzzleHttp\Client as GuzzleClient; use GuzzleHttp\Psr7\Response; use Matthewbdaly\SMS\Drivers\Twilio; use Matthewbdaly\SMS\Client; $guzzle = new GuzzleClient; $resp = new Response; $driver = new Twilio($guzzle, $resp, [ 'account_id' => 'MY_TWILIO_ACCOUNT_ID', 'api_token' => 'MY_TWILIO_API_TOKEN', ]); $client = new Client($driver); $msg = [ 'to' => '+44 01234 567890', 'from' => '+44 01234 567890', 'content' => 'Just testing', ]; $client->send($msg);
O2SK
use GuzzleHttp\Client as GuzzleClient; use Matthewbdaly\SMS\Drivers\O2SK; use Matthewbdaly\SMS\Client; $driver = new O2SK(new GuzzleClient, [ 'apiKey' => 'MY_O2SK_API_KEY', ]); $client = new Client($driver); $msg = [ 'message' => 'Testing message', 'sender' => ['text' => 'Tester'], 'recipients' => [ ['phonenr' => '+421911000000'] ] ]; $client->send($msg);
Mail driver
I have implemented a mail driver at Matthewbdaly\SMS\Drivers\Mail, but it's very basic and may not work with a lot of mail-to-SMS gateways out of the box. It accepts an instance of the Matthewbdaly\SMS\Contracts\Mailer interface as the first argument, and the config array as the second.
I've included the class Matthewbdaly\SMS\PHPMailAdapter in the library as a very basic implementation of the mailer interface, but it's deliberately very basic - it's just a very thin wrapper around the PHP mail() function. You will almost certainly want to create your own implementation for your own use case - for instance, if you're using Laravel you might create a wrapper class for the Mail facade.
The mail driver will nearly always be slower and less reliable than the HTTP-based ones, so if you have to integrate with a provider that doesn't yet have a driver, but does have a REST API, you're probably better off creating an API driver for it. If you do need to work with a mail-to-SMS gateway, you're quite likely to find that you need to extend Matthewbdaly\SMS\Drivers\Mail to amend the functionality.
Laravel and Lumen integration
Using Laravel or Lumen? You probably want to use my integration package rather than this one, since that includes a service provider, as well as the SMS facade and easier configuration.
Creating your own driver
It's easy to create your own driver - just implement the Matthewbdaly\SMS\Contracts\Driver interface. You can use whatever method is most appropriate for sending the SMS - for instance, if your provider has a mail-to-SMS gateway, you can happily use Swiftmailer or PHPMailer in your driver to send emails, or if they have a REST API you can use Guzzle.
You can pass any configuration options required in the config array in the constructor of the driver. Please ensure that your driver has tests using PHPSpec (see the existing drivers for examples), and that it meets the coding standard (the package includes a PHP Codesniffer configuration for that reason).
If you've created a new driver, feel free to submit a pull request and I'll consider including it.
TODO
I have plans for a 2.0 release which include:
- More drivers! If you're using an SMS provider that isn't on the list and you'd like to see support for it in this library, go ahead and create your own driver and submit a pull request for it.
- Remove dependency on Guzzle and replace it with HTTPlug so it doesn't need a specific implementation.
- Add a factory for resolving the drivers automatically.
matthewbdaly/sms-client 适用场景与选型建议
matthewbdaly/sms-client 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 93.76k 次下载、GitHub Stars 达 22, 最近一次更新时间为 2017 年 09 月 23 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「sms」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 matthewbdaly/sms-client 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 matthewbdaly/sms-client 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 matthewbdaly/sms-client 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
SDK for payment gateway PlatbaMobilom.sk for PHP7.0
Extensible library for building notifications and sending them via different delivery channels.
yii2-sms expand
A fork of simplesoftwareio/simple-sms with Verimor driver.
Aakash Sms Provider Api Wrapper
PHP-based SMPP client lib
统计信息
- 总下载量: 93.76k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 22
- 点击次数: 0
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-09-23