Menu.php 6.3 KB

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