WechatMenusRepository.php 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CatchAdmin [Just Like ~ ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2017~2020 http://catchadmin.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
  8. // +----------------------------------------------------------------------
  9. // | Author: JaguarJack [ njphper@gmail.com ]
  10. // +----------------------------------------------------------------------
  11. namespace catchAdmin\wechat\repository;
  12. use catchAdmin\permissions\middleware\PermissionsMiddleware;
  13. use catchAdmin\wechat\model\WechatMenus;
  14. use catcher\base\CatchRepository;
  15. use catcher\exceptions\FailedException;
  16. use catcher\library\WeChat;
  17. use catcher\Tree;
  18. use catcher\Utils;
  19. class WechatMenusRepository extends CatchRepository
  20. {
  21. protected $menus;
  22. public function __construct(WechatMenus $menus)
  23. {
  24. $this->menus = $menus;
  25. }
  26. protected function model()
  27. {
  28. return $this->menus;
  29. }
  30. public function all()
  31. {
  32. $menus = $this->menus->select();
  33. return Tree::done($menus->toArray());
  34. }
  35. /**
  36. * 新增
  37. *
  38. * @time 2020年06月26日
  39. * @param array $data
  40. * @return mixed
  41. * @throws \think\db\exception\DbException
  42. * @throws \think\db\exception\ModelNotFoundException
  43. * @throws \think\db\exception\DataNotFoundException
  44. */
  45. public function storeBy(array $data)
  46. {
  47. $parentId = $data['parent_id'] ?? 0;
  48. $this->checkMenuNum($parentId);
  49. $data['parent_id'] = $parentId;
  50. $data['key'] = $data['type'] . '_' . rand(10000, 999999);
  51. $data['created_at'] = $data['updated_at'] = time();
  52. if (parent::storeBy($data)) {
  53. return $this->syncToWechat();
  54. }// TODO: Change the autogenerated stub
  55. throw new FailedException('新增失败');
  56. }
  57. /**
  58. * 更新
  59. *
  60. * @time 2020年06月26日
  61. * @param int $id
  62. * @param array $data
  63. * @throws \think\db\exception\DataNotFoundException
  64. * @throws \think\db\exception\DbException
  65. * @throws \think\db\exception\ModelNotFoundException
  66. * @return bool
  67. */
  68. public function updateBy(int $id, array $data)
  69. {
  70. $data['updated_at'] = time();
  71. if (parent::updateBy($id, $data)) {
  72. return $this->syncToWechat();
  73. }
  74. throw new FailedException('更新失败');
  75. }
  76. /**
  77. * 删除失败
  78. *
  79. * @time 2020年06月26日
  80. * @param int $id
  81. * @throws \think\db\exception\DataNotFoundException
  82. * @throws \think\db\exception\DbException
  83. * @throws \think\db\exception\ModelNotFoundException
  84. * @return bool
  85. */
  86. public function deleteBy(int $id)
  87. {
  88. $menu = $this->findBy($id);
  89. // 父级菜单
  90. if (!$menu->parent_id) {
  91. if ($this->menus->where('parent_id', $id)->count()) {
  92. throw new FailedException('请先删除子级菜单');
  93. }
  94. }
  95. if (parent::deleteBy($id)) {
  96. return $this->syncToWechat();
  97. }
  98. throw new FailedException('删除失败');
  99. }
  100. /**
  101. * 同步
  102. *
  103. * @time 2020年06月26日
  104. * @throws \Exception
  105. * @return bool
  106. */
  107. public function sync()
  108. {
  109. // 同步前先删除
  110. $this->menus->where('id', '>', 0)->delete();
  111. $menus = WeChat::officialAccount()->menu->list()['menu']['button'];
  112. foreach ($menus as $menu) {
  113. $id = $this->menus->createBy($this->menuToLocal($menu));
  114. if (!empty($menu['sub_button'])) {
  115. foreach ($menu['sub_button'] as $button) {
  116. $button['parent_id'] = $id;
  117. $this->menus->createBy($this->menuToLocal($button));
  118. }
  119. }
  120. }
  121. return true;
  122. }
  123. /**
  124. * 同步到表
  125. *
  126. * @time 2020年06月26日
  127. * @param $menu
  128. * @return array
  129. */
  130. protected function menuToLocal($menu)
  131. {
  132. $data = [
  133. 'parent_id' => $menu['parent_id'] ?? 0,
  134. 'type' => $menu['type'] ?? '',
  135. 'name' => $menu['name'],
  136. 'key' => $menu['key'] ?? '',
  137. 'created_at' => \time(),
  138. 'updated_at' => \time(),
  139. ];
  140. if (isset($menu['type'])) {
  141. if ($menu['type'] == 'view') {
  142. $data['url'] = $menu['url'];
  143. return $data;
  144. } elseif ($menu['type'] == 'miniprogram') {
  145. $data['url'] = $menu['url'] ?? '';
  146. $data['appid'] = $menu['appid'];
  147. $data['pagepath'] = $menu['pagepath'];
  148. return $data;
  149. }
  150. }
  151. return $data;
  152. }
  153. /**
  154. * 同步到微信
  155. *
  156. * @time 2020年06月26日
  157. * @throws \think\db\exception\DataNotFoundException
  158. * @throws \think\db\exception\DbException
  159. * @throws \think\db\exception\ModelNotFoundException
  160. * @return bool
  161. */
  162. protected function syncToWechat()
  163. {
  164. $menus = $this->menus->field([
  165. 'id', 'parent_id', 'key', 'name', 'type', 'url', 'appid', 'pagepath', 'media_id'
  166. ])->select()->toArray();
  167. foreach ($menus as &$menu) {
  168. if ($menu['type'] == 'view') {
  169. unset($menu['appid'], $menu['media_id'], $menu['pagepath']);
  170. } elseif ($menu['type'] == 'miniprogram') {
  171. unset($menu['media_id']);
  172. } else {
  173. unset($menu['url'], $menu['appid'], $menu['pagepath'], $menu['media_id']);
  174. }
  175. }
  176. $wechatMenus = Tree::done($menus, 0, 'parent_id', 'sub_button');
  177. WeChat::throw(WeChat::officialAccount()->menu->create($wechatMenus));
  178. return true;
  179. }
  180. /**
  181. * check menus number
  182. *
  183. * @time 2020年06月26日
  184. * @param $parentId
  185. * @return void
  186. */
  187. protected function checkMenuNum($parentId)
  188. {
  189. // 父级别分类
  190. if (!$parentId) {
  191. if ($this->menus->where('parent_id', 0)->count() >= 3) {
  192. throw new FailedException('只支持三个一级菜单');
  193. }
  194. } else {
  195. if ($this->menus->where('parent_id', $parentId)->count() >= 5) {
  196. throw new FailedException('只支持五个二级菜单');
  197. }
  198. }
  199. }
  200. }