Auto.php 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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\model\WechatAuto;
  17. use think\admin\Controller;
  18. use think\admin\extend\CodeExtend;
  19. use think\admin\helper\QueryHelper;
  20. use think\admin\service\SystemService;
  21. /**
  22. * 关注自动回复
  23. * Class Auto
  24. * @package app\wechat\controller
  25. */
  26. class Auto extends Controller
  27. {
  28. /**
  29. * 消息类型
  30. * @var array
  31. */
  32. public $types = [
  33. 'text' => '文字', 'news' => '图文',
  34. 'image' => '图片', 'music' => '音乐',
  35. 'video' => '视频', 'voice' => '语音',
  36. ];
  37. /**
  38. * 关注自动回复
  39. * @auth false
  40. * @menu false
  41. * @throws \think\db\exception\DataNotFoundException
  42. * @throws \think\db\exception\DbException
  43. * @throws \think\db\exception\ModelNotFoundException
  44. */
  45. public function index()
  46. {
  47. $this->type = input('get.type', 'index');
  48. WechatAuto::mQuery()->layTable(function () {
  49. $this->title = '关注自动回复';
  50. }, function (QueryHelper $query) {
  51. $query->like('code,type#mtype')->dateBetween('create_at');
  52. $query->where(['status' => intval($this->type === 'index')]);
  53. });
  54. }
  55. /**
  56. * 列表数据处理
  57. * @param array $data
  58. */
  59. protected function _index_page_filter(array &$data)
  60. {
  61. foreach ($data as &$vo) {
  62. $vo['type'] = $this->types[$vo['type']] ?? $vo['type'];
  63. }
  64. }
  65. /**
  66. * 添加自动回复
  67. * @auth false
  68. */
  69. public function add()
  70. {
  71. $this->title = '添加自动回复';
  72. WechatAuto::mForm('form');
  73. }
  74. /**
  75. * 编辑自动回复
  76. * @auth false
  77. */
  78. public function edit()
  79. {
  80. $this->title = '编辑自动回复';
  81. WechatAuto::mForm('form');
  82. }
  83. /**
  84. * 添加数据处理
  85. * @param array $data
  86. */
  87. protected function _form_filter(array &$data)
  88. {
  89. if (empty($data['code'])) {
  90. $data['code'] = CodeExtend::uniqidNumber(18, 'AM');
  91. }
  92. if ($this->request->isGet()) {
  93. $this->defaultImage = SystemService::uri('/static/theme/img/image.png', '__FULL__');
  94. } else {
  95. $data['content'] = strip_tags($data['content'] ?? '', '<a>');
  96. }
  97. }
  98. /**
  99. * 修改规则状态
  100. * @auth false
  101. */
  102. public function state()
  103. {
  104. WechatAuto::mSave($this->_vali([
  105. 'status.in:0,1' => '状态值范围异常!',
  106. 'status.require' => '状态值不能为空!',
  107. ]));
  108. }
  109. /**
  110. * 删除自动回复
  111. * @auth false
  112. */
  113. public function remove()
  114. {
  115. WechatAuto::mDelete();
  116. }
  117. }