123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <?php
- namespace crmeb\services\template\storage;
- use crmeb\basic\BaseMessage;
- use crmeb\services\MiniProgramService;
- use think\facade\Log;
- use think\facade\Db;
- /**
- * 订阅消息
- * Class Subscribe
- * @package crmeb\services\template\storage
- */
- class Subscribe extends BaseMessage
- {
- protected function initialize(array $config)
- {
- parent::initialize($config); // TODO: Change the autogenerated stub
- }
- /**
- * 发送订阅消息
- * @param string $templateId
- * @param array $data
- * @return bool|\EasyWeChat\Support\Collection|mixed|null
- */
- public function send(string $templateId, array $data = [])
- {
- $templateId = $this->getTemplateCode($templateId);
- if (!$templateId) {
- return $this->setError('Template number does not exist');
- }
- $tempid = Db::name('template_message')->where(['type' => 0, 'tempkey' => $templateId, 'status' => 1])->value('tempid');
- if (!$tempid) {
- return $this->setError('Template ID does not exist');
- }
- if (!$this->openId) {
- return $this->setError('Openid does not exist');
- }
- try {
- $res = MiniProgramService::sendSubscribeTemlate($this->openId, $tempid, $data, $this->toUrl);
- $this->clear();
- return $res;
- } catch (\Throwable $e) {
- $this->isLog() && Log::error('发送给openid为:' . $this->openId . '小程序订阅消息失败,模板id为:' . $tempid . ';错误原因为:' . $e->getMessage());
- return $this->setError($e->getMessage());
- }
- }
- public function delete(string $templateId)
- {
- // TODO: Implement delete() method.
- }
- public function add(string $shortId)
- {
- // TODO: Implement add() method.
- }
- public function list()
- {
- // TODO: Implement list() method.
- }
- }
|