12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- namespace app\adminapi\controller\v1\application\wechat;
- use app\adminapi\controller\AuthController;
- use app\jobs\notice\SyncMessageJob;
- use app\services\message\SystemNotificationServices;
- use crmeb\exceptions\AdminException;
- use crmeb\services\app\WechatService;
- use think\facade\App;
- /**
- * 微信模板消息
- * Class WechatTemplate
- * @package app\adminapi\controller\v1\application\wechat
- */
- class WechatTemplate extends AuthController
- {
- /**
- * 构造方法
- * WechatTemplate constructor.
- * @param App $app
- * @param SystemNotificationServices $services
- */
- public function __construct(App $app, SystemNotificationServices $services)
- {
- parent::__construct($app);
- $this->services = $services;
- }
- /**
- * 同步微信模版消息
- * @return mixed
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function syncSubscribe()
- {
- if (!sys_config('wechat_appid') || !sys_config('wechat_appsecret')) {
- throw new AdminException(400248);
- }
- $tempIds = $this->services->getTempId('wechat');
- foreach ($tempIds as $v) {
- WechatService::deleleTemplate($v);
- }
- $tempKeys = $this->services->getTempKey('wechat');
- foreach ($tempKeys as $key => $content) {
- SyncMessageJob::dispatch('SyncWechat', [$key, $content['wechat_content']]);
- }
- return app('json')->success(100038);
- }
- }
|