123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- <?php
- namespace ln\services\template\storage;
- use app\common\repositories\wechat\TemplateMessageRepository;
- use ln\basic\BaseMessage;
- use ln\services\WechatService;
- use think\facade\Log;
- class Wechat extends BaseMessage
- {
- /**
- * @var WechatService
- */
- protected $service;
- /**
- * 初始化
- * @param array $config
- * @return mixed|void
- */
- protected function initialize(array $config)
- {
- parent::initialize($config); // TODO: Change the autogenerated stub
- $this->service = WechatService::create();
- }
- /**
- * @param string $templateId
- * @return mixed
- */
- public function getTempId(string $templateId)
- {
- return app()->make(TemplateMessageRepository::class)->getTempId($templateId, 1);
- }
- /**
- * 发送消息
- * @param string $templateId
- * @param array $data
- * @return bool|mixed
- */
- public function send(string $templateId, array $data = [])
- {
- $templateId = $this->getTemplateCode($templateId);
- if (!$templateId) {
- return ;
- //return $this->setError('Template number does not exist');
- }
- $tempid = $this->getTempId($templateId);
- if (!$tempid) {
- return ;
- //return $this->setError('Template ID does not exist');
- }
- if (!$this->openId) {
- return ;
- //return $this->setError('Openid does not exist');
- }
- try {
- $res = $this->service->sendTemplate($this->openId, $tempid, $data, $this->toUrl, $this->color);
- $this->clear();
- return $res;
- } catch (\Exception $e) {
- $this->isLog() && Log::error('发送给openid为:' . $this->openId . '微信模板消息失败,模板id为:' . $tempid . ';错误原因为:' . $e->getMessage());
- return $this->setError($e->getMessage());
- }
- }
- /**
- * 获取所有模板
- * @return \EasyWeChat\Support\Collection|mixed
- */
- public function list()
- {
- return $this->service->noticeService()->getPrivateTemplates();
- }
- /**
- * 添加模板消息
- * @param string $shortId
- * @return \EasyWeChat\Support\Collection|mixed
- */
- public function add(string $shortId)
- {
- return $this->service->noticeService()->addTemplate($shortId);
- }
- /**
- * 删除模板消息
- * @param string $templateId
- * @return \EasyWeChat\Support\Collection|mixed
- */
- public function delete(string $templateId)
- {
- return $this->service->noticeService()->deletePrivateTemplate($templateId);
- }
- /**
- * 返回所有支持的行业列表
- * @return \EasyWeChat\Support\Collection
- */
- public function getIndustry()
- {
- return $this->service->noticeService()->getIndustry();
- }
- }
|