Keys.php 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  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\WechatKeys;
  17. use app\wechat\service\WechatService;
  18. use think\admin\Controller;
  19. use think\admin\helper\QueryHelper;
  20. use think\admin\service\SystemService;
  21. use think\exception\HttpResponseException;
  22. /**
  23. * 回复规则管理
  24. * Class Keys
  25. * @package app\wechat\controller
  26. */
  27. class Keys extends Controller
  28. {
  29. /**
  30. * 消息类型
  31. * @var array
  32. */
  33. public $types = [
  34. 'text' => '文字', 'news' => '图文', 'image' => '图片', 'music' => '音乐',
  35. 'video' => '视频', 'voice' => '语音', 'customservice' => '转客服',
  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. // 关键字二维码生成
  48. if ($this->request->get('action') === 'qrc') try {
  49. $wechat = WechatService::WeChatQrcode();
  50. $result = $wechat->create($this->request->get('keys', ''));
  51. $this->success('生成二维码成功!', "javascript:$.previewImage('{$wechat->url($result['ticket'])}')");
  52. } catch (HttpResponseException $exception) {
  53. throw $exception;
  54. } catch (\Exception $exception) {
  55. $this->error("生成二维码失败,请稍候再试!<br> {$exception->getMessage()}");
  56. }
  57. // 数据列表分页处理
  58. $this->type = input('get.type', 'index');
  59. WechatKeys::mQuery()->layTable(function () {
  60. $this->title = '回复规则管理';
  61. }, function (QueryHelper $query) {
  62. $query->whereNotIn('keys', ['subscribe', 'default']);
  63. $query->like('keys,type#mtype')->dateBetween('create_at');
  64. $query->where(['status' => intval($this->type === 'index')]);
  65. });
  66. }
  67. /**
  68. * 列表数据处理
  69. * @param array $data
  70. */
  71. protected function _index_page_filter(array &$data)
  72. {
  73. foreach ($data as &$vo) {
  74. $vo['type'] = $this->types[$vo['type']] ?? $vo['type'];
  75. $vo['qrc'] = sysuri('wechat/keys/index') . "?action=qrc&keys={$vo['keys']}";
  76. }
  77. }
  78. /**
  79. * 添加回复规则
  80. * @auth false
  81. */
  82. public function add()
  83. {
  84. $this->title = '添加回复规则';
  85. WechatKeys::mForm('form');
  86. }
  87. /**
  88. * 编辑回复规则
  89. * @auth false
  90. */
  91. public function edit()
  92. {
  93. $this->title = '编辑回复规则';
  94. WechatKeys::mForm('form');
  95. }
  96. /**
  97. * 修改规则状态
  98. * @auth false
  99. */
  100. public function state()
  101. {
  102. WechatKeys::mSave($this->_vali([
  103. 'status.in:0,1' => '状态值范围异常!',
  104. 'status.require' => '状态值不能为空!',
  105. ]));
  106. }
  107. /**
  108. * 删除回复规则
  109. * @auth false
  110. */
  111. public function remove()
  112. {
  113. WechatKeys::mDelete();
  114. }
  115. /**
  116. * 配置订阅回复
  117. * @auth false
  118. */
  119. public function subscribe()
  120. {
  121. $this->title = '编辑订阅回复规则';
  122. WechatKeys::mForm('form', 'keys', [], ['keys' => 'subscribe']);
  123. }
  124. /**
  125. * 配置默认回复
  126. * @auth false
  127. */
  128. public function defaults()
  129. {
  130. $this->title = '编辑默认回复规则';
  131. WechatKeys::mForm('form', 'keys', [], ['keys' => 'default']);
  132. }
  133. /**
  134. * 添加数据处理
  135. * @param array $data
  136. * @throws \think\db\exception\DbException
  137. */
  138. protected function _form_filter(array &$data)
  139. {
  140. if ($this->request->isPost()) {
  141. $map = [['keys', '=', $data['keys']], ['id', '<>', $data['id'] ?? 0]];
  142. if (WechatKeys::mk()->where($map)->count() > 0) $this->error('关键字已经存在!');
  143. $data['content'] = strip_tags($data['content'] ?? '', '<a>');
  144. } elseif ($this->request->isGet()) {
  145. $this->defaultImage = SystemService::uri('/static/theme/img/image.png', '__FULL__');
  146. }
  147. }
  148. }