Keys.php 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  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 Keys
  21. * @package app\wechat\controller
  22. */
  23. class Keys extends Controller
  24. {
  25. /**
  26. * 绑定数据表
  27. * @var string
  28. */
  29. protected $table = 'WechatKeys';
  30. /**
  31. * 消息类型
  32. * @var array
  33. */
  34. public $types = [
  35. 'text' => '文字', 'news' => '图文', 'image' => '图片', 'music' => '音乐',
  36. 'video' => '视频', 'voice' => '语音', 'customservice' => '转客服',
  37. ];
  38. /**
  39. * 回复规则管理
  40. * @auth true
  41. * @menu true
  42. * @throws \think\Exception
  43. * @throws \think\db\exception\DataNotFoundException
  44. * @throws \think\db\exception\ModelNotFoundException
  45. * @throws \think\exception\DbException
  46. * @throws \think\exception\PDOException
  47. */
  48. public function index()
  49. {
  50. // 关键字二维码生成
  51. if ($this->request->get('action') === 'qrc') {
  52. try {
  53. $wechat = WechatService::WeChatQrcode();
  54. $result = $wechat->create($this->request->get('keys', ''));
  55. $this->success('生成二维码成功!', "javascript:$.previewImage('{$wechat->url($result['ticket'])}')");
  56. } catch (HttpResponseException $exception) {
  57. throw $exception;
  58. } catch (\Exception $e) {
  59. $this->error("生成二维码失败,请稍候再试!<br> {$e->getMessage()}");
  60. }
  61. }
  62. // 关键字列表显示
  63. $this->title = '回复规则管理';
  64. $query = $this->_query($this->table)->like('keys,type')->equal('status')->dateBetween('create_at');
  65. $query->whereNotIn('keys', ['subscribe', 'default'])->order('sort desc,id desc')->page();
  66. }
  67. /**
  68. * 列表数据处理
  69. * @param array $data
  70. */
  71. protected function _index_page_filter(&$data)
  72. {
  73. foreach ($data as &$vo) {
  74. $vo['qrc'] = url('@wechat/keys/index') . "?action=qrc&keys={$vo['keys']}";
  75. $vo['type'] = isset($this->types[$vo['type']]) ? $this->types[$vo['type']] : $vo['type'];
  76. }
  77. }
  78. /**
  79. * 添加关键字
  80. * @auth true
  81. */
  82. public function add()
  83. {
  84. $this->applyCsrfToken();
  85. $this->title = '添加关键字规则';
  86. $this->_form($this->table, 'form');
  87. }
  88. /**
  89. * 编辑关键字
  90. * @auth true
  91. */
  92. public function edit()
  93. {
  94. $this->applyCsrfToken();
  95. $this->title = '编辑关键字规则';
  96. $this->_form($this->table, 'form');
  97. }
  98. /**
  99. * 删除关键字
  100. * @auth true
  101. */
  102. public function remove()
  103. {
  104. $this->applyCsrfToken();
  105. $this->_delete($this->table);
  106. }
  107. /**
  108. * 禁用关键字
  109. * @auth true
  110. */
  111. public function forbid()
  112. {
  113. $this->applyCsrfToken();
  114. $this->_save($this->table, ['status' => '0']);
  115. }
  116. /**
  117. * 启用关键字
  118. * @auth true
  119. */
  120. public function resume()
  121. {
  122. $this->applyCsrfToken();
  123. $this->_save($this->table, ['status' => '1']);
  124. }
  125. /**
  126. * 配置关注回复
  127. * @auth true
  128. */
  129. public function subscribe()
  130. {
  131. $this->applyCsrfToken();
  132. $this->title = '编辑关注回复规则';
  133. $this->_form($this->table, 'form', 'keys', [], ['keys' => 'subscribe']);
  134. }
  135. /**
  136. * 配置默认回复
  137. * @auth true
  138. */
  139. public function defaults()
  140. {
  141. $this->applyCsrfToken();
  142. $this->title = '编辑默认回复规则';
  143. $this->_form($this->table, 'form', 'keys', [], ['keys' => 'default']);
  144. }
  145. /**
  146. * 添加数据处理
  147. * @param array $data
  148. */
  149. protected function _form_filter(array &$data)
  150. {
  151. if ($this->request->isPost() && isset($data['keys'])) {
  152. $db = Db::name($this->table)->where('keys', $data['keys']);
  153. empty($data['id']) || $db->where('id', 'neq', $data['id']);
  154. if ($db->count() > 0) {
  155. $this->error('关键字已经存在,请使用其它关键字!');
  156. }
  157. }
  158. if ($this->request->isGet()) {
  159. $this->msgTypes = $this->types;
  160. $root = rtrim(dirname(request()->basefile(true)), '\\/');
  161. $this->defaultImage = "{$root}/static/theme/img/image.png";
  162. }
  163. }
  164. /**
  165. * 表单结果处理
  166. * @param boolean $result
  167. */
  168. protected function _form_result($result)
  169. {
  170. if ($result !== false) {
  171. list($url, $keys) = ['', $this->request->post('keys')];
  172. if (!in_array($keys, ['subscribe', 'default'])) {
  173. $url = url('@admin') . '#' . url('wechat/keys/index') . '?spm=' . $this->request->get('spm');
  174. }
  175. $this->success('恭喜, 关键字保存成功!', $url);
  176. } else {
  177. $this->error('关键字保存失败, 请稍候再试!');
  178. }
  179. }
  180. }