route.php 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?php
  2. /**
  3. * @filename route.php
  4. * @date 2020/6/7
  5. * @project https://github.com/yanwenwu/catch-admin
  6. * @document http://doc.catchadmin.com
  7. * @author JaguarJack <njphper@gmail.com>
  8. * @copyright By CatchAdmin
  9. * @license https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt
  10. */
  11. $router->group('wechat', function () use ($router){
  12. // 公众号粉丝
  13. $router->group('official/users', function () use ($router){
  14. $router->get('', '\catchAdmin\wechat\controller\Users@index');
  15. $router->put('remark/<id>/<remark>', '\catchAdmin\wechat\controller\Users@remark');
  16. $router->put('block/<id>', '\catchAdmin\wechat\controller\Users@block');
  17. $router->put('tag/<id>', '\catchAdmin\wechat\controller\Users@tag');
  18. $router->get('sync', '\catchAdmin\wechat\controller\Users@sync');
  19. });
  20. // 粉丝标签
  21. $router->group('official/tags', function () use ($router){
  22. $router->resource('', '\catchAdmin\wechat\controller\Tags');
  23. $router->get('sync', '\catchAdmin\wechat\controller\Tags@sync');
  24. });
  25. // 微信菜单
  26. $router->group('official/menus', function () use ($router){
  27. $router->resource('', '\catchAdmin\wechat\controller\Menus');
  28. $router->post('sync', '\catchAdmin\wechat\controller\Menus@sync');
  29. });
  30. // 图文管理
  31. $router->group('official/graphic', function () use ($router){
  32. $router->resource('', '\catchAdmin\wechat\controller\Graphic');
  33. });
  34. // 微信回复管理
  35. $router->group('official/reply', function () use ($router){
  36. $router->resource('', '\catchAdmin\wechat\controller\Reply');
  37. $router->put('enable/<id>', '\catchAdmin\wechat\controller\Reply@disOrEnable');
  38. });
  39. // 微信上传
  40. $router->group('official/upload', function () use ($router){
  41. $router->post('/image', '\catchAdmin\wechat\controller\Upload@image');
  42. $router->post('/file', '\catchAdmin\wechat\controller\Upload@file');
  43. });
  44. // 消息
  45. $router->rule('wechat', '\catchAdmin\wechat\controller\Message@done', 'GET|POST');
  46. // banner路由
  47. $router->resource('banner', '\catchAdmin\wechat\controller\Banner');
  48. // notice路由
  49. $router->resource('notice', '\catchAdmin\wechat\controller\Notice');
  50. })->middleware('auth');