mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-24 20:06:09 +08:00
131 lines
3.4 KiB
PHP
131 lines
3.4 KiB
PHP
<?php
|
|
/**
|
|
* @copyright Copyright (c) 2021 深圳市酷瓜软件有限公司
|
|
* @license https://opensource.org/licenses/GPL-2.0
|
|
* @link https://www.koogua.com
|
|
*/
|
|
|
|
namespace App\Services;
|
|
|
|
use Phalcon\Logger\Adapter\File as FileLogger;
|
|
use TencentCloud\Common\Credential;
|
|
use TencentCloud\Common\Exception\TencentCloudSDKException;
|
|
use TencentCloud\Common\Profile\ClientProfile;
|
|
use TencentCloud\Common\Profile\HttpProfile;
|
|
use TencentCloud\Sms\V20210111\Models\SendSmsRequest;
|
|
use TencentCloud\Sms\V20210111\Models\SendStatus;
|
|
use TencentCloud\Sms\V20210111\SmsClient;
|
|
|
|
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)
|
|
{
|
|
$secret = $this->getSettings('secret');
|
|
|
|
$region = $this->settings['region'] ?: 'ap-guangzhou';
|
|
|
|
$templateParams = $this->formatTemplateParams($params);
|
|
|
|
try {
|
|
|
|
$credential = new Credential($secret['secret_id'], $secret['secret_key']);
|
|
|
|
$httpProfile = new HttpProfile();
|
|
|
|
$httpProfile->setEndpoint('sms.tencentcloudapi.com');
|
|
|
|
$clientProfile = new ClientProfile();
|
|
|
|
$clientProfile->setHttpProfile($httpProfile);
|
|
|
|
$client = new SmsClient($credential, $region, $clientProfile);
|
|
|
|
$request = new SendSmsRequest();
|
|
|
|
$params = json_encode([
|
|
'SmsSdkAppId' => $this->settings['app_id'],
|
|
'SignName' => $this->settings['signature'],
|
|
'TemplateId' => $templateId,
|
|
'TemplateParamSet' => $templateParams,
|
|
'PhoneNumberSet' => [$phoneNumber],
|
|
]);
|
|
|
|
$request->fromJsonString($params);
|
|
|
|
$this->logger->debug('Send Message Request ' . $params);
|
|
|
|
$response = $client->SendSms($request);
|
|
|
|
$this->logger->debug('Send Message Response ' . $response->toJsonString());
|
|
|
|
/**
|
|
* @var $sendStatus SendStatus
|
|
*/
|
|
$sendStatus = $response->getSendStatusSet()[0];
|
|
|
|
$result = $sendStatus->getCode() == 'Ok';
|
|
|
|
if (!$result) {
|
|
$this->logger->error('Send Message Failed ' . $response->toJsonString());
|
|
}
|
|
|
|
} catch (TencentCloudSDKException $e) {
|
|
|
|
$this->logger->error('Send Message Exception ' . kg_json_encode([
|
|
'code' => $e->getCode(),
|
|
'message' => $e->getMessage(),
|
|
'requestId' => $e->getRequestId(),
|
|
]));
|
|
|
|
$result = false;
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
|
|
protected function formatTemplateParams($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]['id'] ?? null;
|
|
}
|
|
|
|
}
|