mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-22 03:32:47 +08:00
100 lines
2.1 KiB
PHP
100 lines
2.1 KiB
PHP
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
use Phalcon\Logger\Adapter\File as FileLogger;
|
|
use Qcloud\Sms\SmsSingleSender;
|
|
|
|
Abstract class Smser extends Service
|
|
{
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
protected $settings;
|
|
|
|
/**
|
|
* @var FileLogger
|
|
*/
|
|
protected $logger;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->settings = $this->getSettings('sms');
|
|
|
|
$this->logger = $this->getLogger('sms');
|
|
}
|
|
|
|
/**
|
|
* 发送短信
|
|
*
|
|
* @param string $phoneNumber
|
|
* @param string $templateId
|
|
* @param array $params
|
|
* @return bool
|
|
*/
|
|
public function send($phoneNumber, $templateId, $params)
|
|
{
|
|
$sender = $this->createSingleSender();
|
|
|
|
$params = $this->formatParams($params);
|
|
|
|
$signature = $this->getSignature();
|
|
|
|
try {
|
|
|
|
$response = $sender->sendWithParam('86', $phoneNumber, $templateId, $params, $signature);
|
|
|
|
$this->logger->debug('Send Message Response ' . $response);
|
|
|
|
$content = json_decode($response, true);
|
|
|
|
$result = $content['result'] == 0;
|
|
|
|
if ($result == false) {
|
|
$this->logger->error('Send Message Failed ' . $response);
|
|
}
|
|
|
|
} catch (\Exception $e) {
|
|
|
|
$this->logger->error('Send Message Exception ' . kg_json_encode([
|
|
'code' => $e->getCode(),
|
|
'message' => $e->getMessage(),
|
|
]));
|
|
|
|
$result = false;
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
|
|
protected function createSingleSender()
|
|
{
|
|
return new SmsSingleSender($this->settings['app_id'], $this->settings['app_key']);
|
|
}
|
|
|
|
protected function formatParams($params)
|
|
{
|
|
if (!empty($params)) {
|
|
$params = array_map(function ($value) {
|
|
return strval($value);
|
|
}, $params);
|
|
}
|
|
|
|
return $params;
|
|
}
|
|
|
|
protected function getTemplateId($code)
|
|
{
|
|
$template = json_decode($this->settings['template'], true);
|
|
|
|
return $template[$code] ?? null;
|
|
}
|
|
|
|
protected function getSignature()
|
|
{
|
|
return $this->settings['signature'];
|
|
}
|
|
|
|
}
|