Menu.php 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2022 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: https://thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // | 免费声明 ( https://thinkadmin.top/disclaimer )
  11. // +----------------------------------------------------------------------
  12. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  13. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  14. // +----------------------------------------------------------------------
  15. namespace app\wechat\controller;
  16. use app\wechat\service\WechatService;
  17. use think\admin\Controller;
  18. use think\exception\HttpResponseException;
  19. /**
  20. * 微信菜单管理
  21. * Class Menu
  22. * @package app\wechat\controller
  23. */
  24. class Menu extends Controller
  25. {
  26. /**
  27. * 存储数据名称
  28. * @var string
  29. */
  30. protected $ckey = 'wechat_menu_data';
  31. /**
  32. * 微信菜单的类型
  33. * @var array
  34. */
  35. protected $menuTypes = [
  36. 'click' => '匹配规则',
  37. 'view' => '跳转网页',
  38. 'miniprogram' => '打开小程序',
  39. 'customservice' => '转多客服',
  40. 'scancode_push' => '扫码推事件',
  41. 'scancode_waitmsg' => '扫码推事件且弹出“消息接收中”提示框',
  42. 'pic_sysphoto' => '弹出系统拍照发图',
  43. 'pic_photo_or_album' => '弹出拍照或者相册发图',
  44. 'pic_weixin' => '弹出微信相册发图器',
  45. 'location_select' => '弹出地理位置选择器',
  46. ];
  47. /**
  48. * 微信菜单管理
  49. * @auth false
  50. * @menu false
  51. * @throws \think\db\exception\DataNotFoundException
  52. * @throws \think\db\exception\DbException
  53. * @throws \think\db\exception\ModelNotFoundException
  54. */
  55. public function index()
  56. {
  57. if ($this->request->get('output') === 'json') {
  58. $map = [['keys', 'notin', ['subscribe', 'default']], ['status', '=', 1]];
  59. $result = $this->app->db->name('WechatKeys')->where($map)->order('sort desc,id desc')->select();
  60. $this->success('获取数据成功!', ['menudata' => sysdata($this->ckey), 'keysdata' => $result->toArray()]);
  61. } else {
  62. $this->title = '微信菜单定制';
  63. $this->fetch();
  64. }
  65. }
  66. /**
  67. * 取消微信菜单
  68. * @auth false
  69. */
  70. public function cancel()
  71. {
  72. try {
  73. WechatService::WeChatMenu()->delete();
  74. $this->success('菜单取消成功,重新订阅可立即生效!');
  75. } catch (HttpResponseException $exception) {
  76. sysoplog('微信管理', '取消微信菜单成功');
  77. throw $exception;
  78. } catch (\Exception $exception) {
  79. $this->error("菜单取消失败,请稍候再试!<br> {$exception->getMessage()}");
  80. }
  81. }
  82. /**
  83. * 编辑微信菜单
  84. * @auth false
  85. */
  86. public function push()
  87. {
  88. if ($this->request->isPost()) {
  89. $data = $this->request->post('data');
  90. if (empty($data)) try {
  91. WechatService::WeChatMenu()->delete();
  92. sysoplog('微信菜单管理', '删除微信菜单成功');
  93. $this->success('删除微信菜单成功!', '');
  94. } catch (HttpResponseException $exception) {
  95. throw $exception;
  96. } catch (\Exception $exception) {
  97. sysoplog('微信菜单管理', "删除微信菜单失败:{$exception->getMessage()}");
  98. $this->error("删除微信菜单失败,请稍候再试!<br>{$exception->getMessage()}");
  99. } else try {
  100. sysdata($this->ckey, $this->_buildMenuData(json_decode($data, true)));
  101. WechatService::WeChatMenu()->create(['button' => sysdata($this->ckey)]);
  102. sysoplog('微信菜单管理', '发布微信菜单成功');
  103. $this->success('保存发布菜单成功!', '');
  104. } catch (HttpResponseException $exception) {
  105. throw $exception;
  106. } catch (\Exception $exception) {
  107. sysoplog('微信菜单管理', "发布微信菜单失败:{$exception->getMessage()}");
  108. $this->error("微信菜单发布失败,请稍候再试!<br> {$exception->getMessage()}");
  109. }
  110. }
  111. }
  112. /**
  113. * 菜单数据处理
  114. * @param array $list
  115. * @return array
  116. */
  117. private function _buildMenuData(array $list): array
  118. {
  119. foreach ($list as &$item) {
  120. if (empty($item['sub_button'])) {
  121. $item = $this->_buildMenuDataItem($item);
  122. } else {
  123. $button = ['name' => $item['name'], 'sub_button' => []];
  124. foreach ($item['sub_button'] as &$sub) {
  125. $button['sub_button'][] = $this->_buildMenuDataItem($sub);
  126. }
  127. $item = $button;
  128. }
  129. }
  130. return $list;
  131. }
  132. /**
  133. * 单个微信菜单数据处理
  134. * @param array $item
  135. * @return array
  136. */
  137. private function _buildMenuDataItem(array $item): array
  138. {
  139. switch (strtolower($item['type'])) {
  140. case 'pic_weixin':
  141. case 'pic_sysphoto':
  142. case 'scancode_push':
  143. case 'location_select':
  144. case 'scancode_waitmsg':
  145. case 'pic_photo_or_album':
  146. return ['name' => $item['name'], 'type' => $item['type'], 'key' => $item['key'] ?? $item['type']];
  147. case 'click':
  148. if (empty($item['key'])) $this->error('匹配规则存在空的选项');
  149. return ['name' => $item['name'], 'type' => $item['type'], 'key' => $item['key']];
  150. case 'view':
  151. return ['name' => $item['name'], 'type' => $item['type'], 'url' => $item['url']];
  152. case 'miniprogram':
  153. return ['name' => $item['name'], 'type' => $item['type'], 'url' => $item['url'], 'appid' => $item['appid'], 'pagepath' => $item['pagepath']];
  154. default:
  155. return [];
  156. }
  157. }
  158. }