Nenhuma descrição
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

Notice.php 18KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. namespace app\admin\controller;
  14. use think\Db;
  15. use think\Page;
  16. use think\Cache;
  17. class Notice extends Base
  18. {
  19. private $notice_applets_tpl = [];
  20. private $notice_wechat_tpl = [];
  21. public function _initialize() {
  22. parent::_initialize();
  23. $this->notice_applets_tpl = [
  24. 7 => ['id' => 855, 'keywords' => [1, 2, 4, 5, 7]], // 订单发货通知
  25. ];
  26. $this->notice_wechat_tpl = [
  27. 9 => ['id' => 'OPENTM417958215'], // 订单支付成功通知
  28. ];
  29. $this->assign('admin_id', session('admin_id'));
  30. }
  31. // 基础通知 - 买家通知
  32. public function buyer_notice()
  33. {
  34. // 短信消息模板
  35. $sms_type = tpCache('sms.sms_type');
  36. $sms_tplist = Db::name('sms_template')->where(['sms_type'=>$sms_type, 'lang'=>$this->admin_lang])->order('send_scene asc')->select();
  37. $this->assign('sms_tplist', $sms_tplist);
  38. // 邮箱消息模板
  39. $smtp_tplist = Db::name('smtp_tpl')->where(['lang'=>$this->admin_lang])->order('send_scene asc')->select();
  40. $this->assign('smtp_tplist', $smtp_tplist);
  41. // 微信小程序消息模板
  42. $applets_tplist = Db::name('applets_template')->where(['lang'=>$this->admin_lang])->order('send_scene asc')->select();
  43. $this->assign('applets_tplist', $applets_tplist);
  44. // 微信小程序消息模板
  45. $wechat_tplist = Db::name('wechat_template')->where(['lang'=>$this->admin_lang])->order('send_scene asc')->select();
  46. $this->assign('wechat_tplist', $wechat_tplist);
  47. // 站内信消息模板
  48. $notice_tplist = Db::name('users_notice_tpl')->where(['lang'=>$this->admin_lang])->order('send_scene asc')->select();
  49. $this->assign('notice_tplist', $notice_tplist);
  50. return $this->fetch();
  51. }
  52. public function notice_details_bar()
  53. {
  54. // 查询发送类型
  55. $send_type = input('param.send_type/d', 1);
  56. $this->assign('send_type', $send_type);
  57. // 查询指定的短信模板是否存在
  58. $sms_type = tpCache('sms.sms_type');
  59. $sms_where = [
  60. 'sms_type' => $sms_type,
  61. 'lang' => $this->admin_lang,
  62. 'send_scene' => $this->getSmsTplSendSecneID()
  63. ];
  64. $notice_sms_tpl = Db::name('sms_template')->where($sms_where)->count();
  65. $this->assign('notice_sms_tpl', $notice_sms_tpl);
  66. // 查询指定的邮箱模板是否存在
  67. $smtp_where = [
  68. 'lang' => $this->admin_lang,
  69. 'send_scene' => $this->getSmtpTplSendSecneID()
  70. ];
  71. $notice_smtp_tpl = Db::name('smtp_tpl')->where($smtp_where)->count();
  72. $this->assign('notice_smtp_tpl', $notice_smtp_tpl);
  73. // 查询指定的微信小程序模板是否存在
  74. $applets_where = [
  75. 'lang' => $this->admin_lang,
  76. 'send_scene' => $send_type
  77. ];
  78. $notice_applets_tpl = Db::name('applets_template')->where($applets_where)->count();
  79. $this->assign('notice_applets_tpl', $notice_applets_tpl);
  80. // 查询指定的微信公众号模板是否存在
  81. $applets_where = [
  82. 'lang' => $this->admin_lang,
  83. 'send_scene' => $send_type
  84. ];
  85. $notice_wechat_tpl = Db::name('wechat_template')->where($applets_where)->count();
  86. $this->assign('notice_wechat_tpl', $notice_wechat_tpl);
  87. // 查询指定的站内信模板是否存在
  88. $notice_where = [
  89. 'lang' => $this->admin_lang,
  90. 'send_scene' => $this->getNoticeTplSendSecneID()
  91. ];
  92. $notice_notice_tpl = Db::name('users_notice_tpl')->where($notice_where)->count();
  93. $this->assign('notice_notice_tpl', $notice_notice_tpl);
  94. }
  95. // 短信通知详情
  96. public function notice_details_sms()
  97. {
  98. if (IS_POST) {
  99. // 是否填写短信配置
  100. if (1 == $this->globalConfig['sms_type'] && (empty($this->globalConfig['sms_appkey']) || empty($this->globalConfig['sms_secretkey']))) {
  101. $this->error("请先完善<font color='red'>[基本信息]-[接口API]-[云短信]</font>配置");
  102. }
  103. // 是否填写短信配置
  104. if (2 == $this->globalConfig['sms_type'] && (empty($this->globalConfig['sms_appid_tx']) || empty($this->globalConfig['sms_appkey_tx']))) {
  105. $this->error("请先完善<font color='red'>[基本信息]-[接口API]-[云短信]</font>配置");
  106. }
  107. $post = input('post.');
  108. $data = [
  109. 'tpl_content' => filter_line_return($post['tpl_content']),
  110. 'update_time' => getTime(),
  111. ];
  112. $data = array_merge($post, $data);
  113. $r = Db::name('sms_template')->where(['tpl_id'=>intval($post['tpl_id'])])->update($data);
  114. if ($r !== false) {
  115. $this->success('操作成功');
  116. }
  117. $this->error('操作失败');
  118. }
  119. $sms_type = tpCache('sms.sms_type');
  120. $send_scene = $this->getSmsTplSendSecneID();
  121. $where = [
  122. 'sms_type' => $sms_type,
  123. 'send_scene' => $send_scene,
  124. 'lang' => $this->admin_lang
  125. ];
  126. $info = Db::name('sms_template')->where($where)->find();
  127. if (empty($info)) $this->error('数据不存在,请联系管理员!');
  128. $info['tpl_content_demo'] = '【<签名名称>】' . $info['tpl_content'];
  129. $info['tpl_content_demo'] = str_replace(['${code}','{1}'], '<订单号>', $info['tpl_content_demo']);
  130. $info['tpl_content_demo'] = str_replace(['${content}','{1}'], '<订单号>', $info['tpl_content_demo']);
  131. $this->assign('info', $info);
  132. $this->notice_details_bar();
  133. return $this->fetch();
  134. }
  135. // 邮件通知详情
  136. public function notice_details_smtp()
  137. {
  138. if (IS_POST) {
  139. $post = input('post.');
  140. // 是否填写短信配置
  141. if (empty($post['tpl_title'])) $this->error("请先完善<font color='red'>[基本信息]-[接口API]-[云短信]</font>配置");
  142. $data = [
  143. 'tpl_title' => filter_line_return($post['tpl_title']),
  144. 'update_time' => getTime(),
  145. ];
  146. $data = array_merge($post, $data);
  147. $r = Db::name('smtp_tpl')->where(['tpl_id'=>intval($post['tpl_id'])])->update($data);
  148. if ($r !== false) {
  149. $this->success('操作成功');
  150. }
  151. $this->error('操作失败');
  152. }
  153. $send_scene = $this->getSmtpTplSendSecneID();
  154. $where = [
  155. 'send_scene' => $send_scene,
  156. 'lang' => $this->admin_lang
  157. ];
  158. $info = Db::name('smtp_tpl')->where($where)->find();
  159. if (empty($info)) $this->error('数据不存在,请联系管理员!');
  160. $this->assign('info', $info);
  161. $this->notice_details_bar();
  162. return $this->fetch();
  163. }
  164. // 微信小程序消息详情
  165. public function notice_details_applets()
  166. {
  167. // 查询指定的微信小程序模板是否存在
  168. $send_scene = input('param.send_scene/d') ? input('param.send_scene/d') : input('param.send_type/d');
  169. $where = [
  170. 'lang' => $this->admin_lang,
  171. 'send_scene' => $send_scene
  172. ];
  173. $info = Db::name('applets_template')->where($where)->find();
  174. if (empty($info)) $this->error('数据不存在,请联系管理员!');
  175. $info['tpl_data'] = !empty($info['tpl_data']) ? json_decode($info['tpl_data'], true) : [];
  176. if (IS_POST) {
  177. // 是否填写微信小程序配置
  178. $wechat_data = tpSetting("OpenMinicode.conf_weixin");
  179. $wechat_data = !empty($wechat_data) ? json_decode($wechat_data, true) : [];
  180. if (empty($wechat_data['appid'])) {
  181. $this->error("请先完善<font color='red'>[基本信息]-[接口API]-[小程序API]-[微信小程序]</font>配置");
  182. }
  183. if (empty($info['template_code']) || $this->notice_applets_tpl[$send_scene]['id'] != $info['template_code']) {
  184. $tokenData = get_weixin_access_token(true);
  185. if (!empty($tokenData['code'])) {
  186. // 添加消息模板
  187. $url = "https://api.weixin.qq.com/wxaapi/newtmpl/addtemplate?access_token=".$tokenData['access_token'];
  188. $post_data = array(
  189. "tid" => $this->notice_applets_tpl[$send_scene]['id'],
  190. "kidList" => $this->notice_applets_tpl[$send_scene]['keywords'],
  191. "sceneDesc" => !empty($info['tpl_title']) ? $info['tpl_title'] : '用户操作行为通知',
  192. );
  193. $response = httpRequest($url, 'POST', $post_data);
  194. $params = json_decode($response, true);
  195. if (!empty($params['priTmplId'])) {
  196. $update = [
  197. 'template_code' => $this->notice_applets_tpl[$send_scene]['id'],
  198. 'template_id' => $params['priTmplId'],
  199. ];
  200. $result = Db::name('applets_template')->where(['send_scene'=>$send_scene])->update($update);
  201. if (empty($result)) $this->error('保存失败');
  202. // 删除旧的消息模板
  203. $url = "https://api.weixin.qq.com/wxaapi/newtmpl/deltemplate?access_token=".$tokenData['access_token'];
  204. $post_data = array(
  205. "priTmplId" => $info['template_id'],
  206. );
  207. httpRequest($url, 'POST', $post_data);
  208. } else {
  209. $msg = !empty($params['errmsg']) ? $params['errmsg'] : '保存失败';
  210. $this->error($msg);
  211. }
  212. } else {
  213. $this->error($tokenData['msg']);
  214. }
  215. }
  216. $post = input('post.');
  217. $update = [
  218. 'is_open' => intval($post['is_open']),
  219. 'update_time' => getTime(),
  220. ];
  221. $result = Db::name('applets_template')->where(['tpl_id'=>intval($post['tpl_id'])])->update($update);
  222. if (!empty($result)) $this->success('操作成功');
  223. $this->error('操作失败');
  224. }
  225. $this->assign('info', $info);
  226. $this->notice_details_bar();
  227. return $this->fetch();
  228. }
  229. // 微信公众号消息详情
  230. public function notice_details_wechat()
  231. {
  232. // 查询指定的微信小程序模板是否存在
  233. $send_scene = input('param.send_scene/d') ? input('param.send_scene/d') : input('param.send_type/d');
  234. $where = [
  235. 'lang' => $this->admin_lang,
  236. 'send_scene' => $send_scene
  237. ];
  238. $info = Db::name('wechat_template')->where($where)->find();
  239. if (empty($info)) $this->error('数据不存在,请联系管理员!');
  240. $info['tpl_data'] = !empty($info['tpl_data']) ? json_decode($info['tpl_data'], true) : [];
  241. if (IS_POST) {
  242. // 是否填写微信公众号配置
  243. $wechat_data = tpSetting("OpenMinicode.conf_wechat");
  244. $wechat_data = !empty($wechat_data) ? json_decode($wechat_data, true) : [];
  245. if (empty($wechat_data['appid'])) {
  246. $this->error("请先完善<font color='red'>[基本信息]-[接口API]-[微信公众号]</font>配置");
  247. }
  248. if (empty($info['template_code']) || $this->notice_wechat_tpl[$send_scene]['id'] != $info['template_code']) {
  249. $tokenData = get_wechat_access_token();
  250. if (!empty($tokenData['code'])) {
  251. // 添加消息模板
  252. $url = "https://api.weixin.qq.com/cgi-bin/template/api_add_template?access_token=".$tokenData['access_token'];
  253. $post_data = array(
  254. 'template_id_short' => $this->notice_wechat_tpl[$send_scene]['id'],
  255. );
  256. $response = httpRequest($url, 'POST', json_encode($post_data, JSON_UNESCAPED_UNICODE));
  257. $params = json_decode($response, true);
  258. if (!empty($params['template_id'])) {
  259. $update = [
  260. 'template_code' => $this->notice_wechat_tpl[$send_scene]['id'],
  261. 'template_id' => $params['template_id'],
  262. ];
  263. $result = Db::name('wechat_template')->where(['send_scene'=>$send_scene])->update($update);
  264. if (empty($result)) $this->error('保存失败');
  265. // 删除旧的消息模板
  266. $url = "https://api.weixin.qq.com/cgi-bin/template/del_private_template?access_token=".$tokenData['access_token'];
  267. $post_data = array(
  268. "template_id" => $info['template_id'],
  269. );
  270. httpRequest($url, 'POST', $post_data);
  271. } else {
  272. $msg = !empty($params['errmsg']) ? $params['errmsg'] : '保存失败';
  273. $this->error($msg);
  274. }
  275. } else {
  276. $this->error($tokenData['msg']);
  277. }
  278. }
  279. $post = input('post.');
  280. $update = [
  281. 'is_open' => intval($post['is_open']),
  282. 'update_time' => getTime(),
  283. ];
  284. $result = Db::name('wechat_template')->where(['tpl_id'=>intval($post['tpl_id'])])->update($update);
  285. if (!empty($result)) $this->success('操作成功');
  286. $this->error('操作失败');
  287. }
  288. $this->assign('info', $info);
  289. $this->notice_details_bar();
  290. return $this->fetch();
  291. }
  292. public function notice_details_notice()
  293. {
  294. if (IS_POST) {
  295. $post = input('post.');
  296. // 是否填写短信配置
  297. if (empty($post['tpl_title'])) $this->error("站内信标题不能为空!");
  298. $data = [
  299. 'tpl_title' => filter_line_return($post['tpl_title']),
  300. 'update_time' => getTime(),
  301. ];
  302. $data = array_merge($post, $data);
  303. $r = Db::name('users_notice_tpl')->where(['tpl_id'=>intval($post['tpl_id'])])->update($data);
  304. if ($r !== false) {
  305. $this->success('操作成功');
  306. }
  307. $this->error('操作失败');
  308. }
  309. $send_scene = $this->getNoticeTplSendSecneID();
  310. $where = [
  311. 'send_scene' => $send_scene,
  312. 'lang' => $this->admin_lang
  313. ];
  314. $info = Db::name('users_notice_tpl')->where($where)->find();
  315. if (empty($info)) $this->error('数据不存在,请联系管理员!');
  316. $this->assign('info', $info);
  317. $this->notice_details_bar();
  318. return $this->fetch();
  319. }
  320. // 获取短信模板发送场景ID
  321. private function getSmsTplSendSecneID()
  322. {
  323. // 查询发送类型
  324. $send_scene = -1;
  325. $send_type = input('param.send_type/d', 1);
  326. switch ($send_type) {
  327. // 账号注册
  328. case '1':
  329. $send_scene = 0;
  330. break;
  331. // 账号登录
  332. case '2':
  333. $send_scene = 2;
  334. break;
  335. // 手机绑定
  336. case '4':
  337. $send_scene = 1;
  338. break;
  339. // 找回密码
  340. case '5':
  341. $send_scene = 4;
  342. break;
  343. // 留言验证
  344. case '6':
  345. $send_scene = 7;
  346. break;
  347. // 订单发货
  348. case '7':
  349. $send_scene = 6;
  350. break;
  351. // 留言表单
  352. case '8':
  353. $send_scene = 11;
  354. break;
  355. // 订单付款
  356. case '9':
  357. $send_scene = 5;
  358. break;
  359. }
  360. return $send_scene;
  361. }
  362. // 获取邮件模板发送场景ID
  363. private function getSmtpTplSendSecneID()
  364. {
  365. // 查询发送类型
  366. $send_scene = -1;
  367. $send_type = input('param.send_type/d', 1);
  368. switch ($send_type) {
  369. // 账号注册
  370. case '1':
  371. $send_scene = 2;
  372. break;
  373. // 邮箱绑定
  374. case '3':
  375. $send_scene = 3;
  376. break;
  377. // 找回密码
  378. case '5':
  379. $send_scene = 4;
  380. break;
  381. // 订单发货
  382. case '7':
  383. $send_scene = 6;
  384. break;
  385. // 留言表单
  386. case '8':
  387. $send_scene = 1;
  388. break;
  389. // 订单付款
  390. case '9':
  391. $send_scene = 5;
  392. break;
  393. }
  394. return $send_scene;
  395. }
  396. // 获取站内信模板发送场景ID
  397. private function getNoticeTplSendSecneID()
  398. {
  399. // 查询发送类型
  400. $send_scene = -1;
  401. $send_type = input('param.send_type/d', 1);
  402. switch ($send_type) {
  403. // 订单发货
  404. case '7':
  405. $send_scene = 6;
  406. break;
  407. // 留言表单
  408. case '8':
  409. $send_scene = 1;
  410. break;
  411. // 订单付款
  412. case '9':
  413. $send_scene = 5;
  414. break;
  415. }
  416. return $send_scene;
  417. }
  418. }