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.
64 lines
2.2 KiB
64 lines
2.2 KiB
<?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);
|
|
}
|
|
}
|
|
|