You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
zhishifufei_php/extend/service/sms/storage/Sms.php

261 lines
6.4 KiB

10 months ago
<?php
// +----------------------------------------------------------------------
// | 天诚科技 [ 刘海东 17600099397赋能开发者,助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2020 https://www.tczxkj.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed 该系统并不是自由软件,未经许可不能去掉相关版权
// +----------------------------------------------------------------------
// | Author:甘肃天诚志信电子商务有限公司 刘海东 联系电话维系17600099397
// +----------------------------------------------------------------------
namespace service\sms\storage;
use basic\BaseSms;
use service\AccessTokenServeService;
use think\exception\ValidateException;
use think\Config;
use service\SystemConfigService;
/**
* Class Copy
* @package crmeb\services\product\storage
*/
class Sms extends BaseSms
{
/**
* 开通
*/
const SMS_OPEN = 'sms_v2/open';
/**
* 修改签名
*/
const SMS_MODIFY = 'sms_v2/modify';
/**
* 用户信息
*/
const SMS_INFO = 'sms_v2/info';
/**
* 发送短信
*/
const SMS_SEND = 'sms_v2/send';
/**
* 短信模板
*/
const SMS_TEMPS = 'sms_v2/temps';
/**
* 申请模板
*/
const SMS_APPLY = 'sms_v2/apply';
/**
* 模板记录
*/
const SMS_APPLYS = 'sms_v2/applys';
/**
* 发送记录
*/
const SMS_RECORD = 'sms_v2/record';
/**
* 短信签名
* @var string
*/
protected $sign = '';
/**
* 短信签名
* @var string
*/
protected $templateId = '518076';
/**
* 模板id
* @var array
*/
protected $templateIds = [];
public function __construct()
{
$this->accessToken = $this->getAccessToken();
$this->templateIds = Config::get('sms.stores.sms.template_id', []);
}
protected function getAccessToken()
{
$this->account = SystemConfigService::get('sms_account');
$this->sercet = SystemConfigService::get('sms_token');
return new AccessTokenServeService($this->account, $this->sercet);
}
/** 初始化
* @param array $config
*/
protected function _initialize(array $config = [])
{
parent::_initialize($config);
}
/**
* 提取模板code
* @param string $templateId
* @return null
*/
protected function getTemplateCode($templateId)
{
return $this->templateIds[$templateId] ? $this->templateIds[$templateId] : null;
}
/**
* 设置签名
* @param $sign
* @return $this
*/
public function setSign($sign)
{
$this->sign = $sign;
return $this;
}
/**
* 开通服务
* @return array|bool|mixed
*/
public function open()
{
$param = [
'sign' => $this->sign
];
return $this->accessToken->httpRequest(self::SMS_OPEN, $param);
}
/**
* 修改签名
* @param $sign
* @return array|bool|mixed
*/
public function modify($sign = '', $phone = '', $verify_code = '')
{
$param = [
'sign' => $sign,
'phone' => $phone,
'verify_code' => $verify_code
];
return $this->accessToken->httpRequest(self::SMS_MODIFY, $param);
}
/**
* 获取用户信息
* @return array|bool|mixed
*/
public function info()
{
return $this->accessToken->httpRequest(self::SMS_INFO, []);
}
/**
* 短信模版
* @param int $page
* @param int $limit
* @param $temp_type
* @return array|bool|mixed
*/
public function temps($page = 1, $limit = 10, $temp_type = '')
{
$param = [
'page' => $page,
'limit' => $limit,
'temp_type' => $temp_type
];
return $this->accessToken->httpRequest(self::SMS_TEMPS, $param);
}
/**
* 申请模版
* @param $title
* @param $content
* @param $type
* @return array|bool|mixed
*/
public function apply($title, $content, $type)
{
$param = [
'title' => $title,
'content' => $content,
'type' => $type
];
return $this->accessToken->httpRequest(self::SMS_APPLY, $param);
}
/**
* 申请记录
* @param $temp_type
* @param int $page
* @param int $limit
* @return array|bool|mixed
*/
public function applys($temp_type, $page, $limit)
{
$param = [
'temp_type' => $temp_type,
'page' => $page,
'limit' => $limit
];
return $this->accessToken->httpRequest(self::SMS_APPLYS, $param);
}
/**返回结果
* @param string $code
* @param string $data
* @param string $message
* @return array
*/
public function returnData($code = 'OK', $data = '', $message = '')
{
return [
'data' => $data,
'Code' => $code,
'Message' => $message
];
}
/**
* 发送短信
* @param $phone
* @param $template
* @param $param
* @return bool|string
*/
public function send($phone, $templateId = '', $data = [])
{
if (!$phone) {
return $this->returnData('手机号不能为空', 'err', '手机号不能为空');
}
$param = [
'phone' => $phone
];
$param['temp_id'] = $templateId;
// $param['temp_id'] = $this->templateId;
if (is_null($param['temp_id']) || $param['temp_id'] == '') {
return $this->returnData('模版ID不存在', 'err', '模版ID不存在');
}
$param['param'] = json_encode($data);
$data = $this->accessToken->httpRequest(self::SMS_SEND, $param);
if (!isset($data['status']) || $data['status'] != 200) {
return $this->returnData('err', $data['msg'], $data['msg']);
} else {
return $this->returnData('OK', $data['data']['id'], '发送成功');
}
}
/**
* 发送记录
* @param $record_id
* @return array|bool|mixed
*/
public function record($record_id)
{
$param = [
'record_id' => $record_id
];
return $this->accessToken->httpRequest(self::SMS_RECORD, $param);
}
}