Menu.php 6.4 KB

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