123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197 |
- <?php
- // +----------------------------------------------------------------------
- // | framework
- // +----------------------------------------------------------------------
- // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
- // +----------------------------------------------------------------------
- // | 官方网站: http://framework.thinkadmin.top
- // +----------------------------------------------------------------------
- // | 开源协议 ( https://mit-license.org )
- // +----------------------------------------------------------------------
- // | github开源项目:https://github.com/zoujingli/framework
- // +----------------------------------------------------------------------
- namespace app\wechat\controller;
- use app\wechat\service\WechatService;
- use library\Controller;
- use think\Db;
- use think\exception\HttpResponseException;
- /**
- * 回复规则管理
- * Class Keys
- * @package app\wechat\controller
- */
- class Keys extends Controller
- {
- /**
- * 绑定数据表
- * @var string
- */
- protected $table = 'WechatKeys';
- /**
- * 消息类型
- * @var array
- */
- public $types = [
- 'text' => '文字', 'news' => '图文', 'image' => '图片', 'music' => '音乐',
- 'video' => '视频', 'voice' => '语音', 'customservice' => '转客服',
- ];
- /**
- * 回复规则管理
- * @auth true
- * @menu true
- * @throws \think\Exception
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- * @throws \think\exception\PDOException
- */
- public function index()
- {
- // 关键字二维码生成
- if ($this->request->get('action') === 'qrc') {
- try {
- $wechat = WechatService::WeChatQrcode();
- $result = $wechat->create($this->request->get('keys', ''));
- $this->success('生成二维码成功!', "javascript:$.previewImage('{$wechat->url($result['ticket'])}')");
- } catch (HttpResponseException $exception) {
- throw $exception;
- } catch (\Exception $e) {
- $this->error("生成二维码失败,请稍候再试!<br> {$e->getMessage()}");
- }
- }
- // 关键字列表显示
- $this->title = '回复规则管理';
- $query = $this->_query($this->table)->like('keys,type')->equal('status')->dateBetween('create_at');
- $query->whereNotIn('keys', ['subscribe', 'default'])->order('sort desc,id desc')->page();
- }
- /**
- * 列表数据处理
- * @param array $data
- */
- protected function _index_page_filter(&$data)
- {
- foreach ($data as &$vo) {
- $vo['qrc'] = url('@wechat/keys/index') . "?action=qrc&keys={$vo['keys']}";
- $vo['type'] = isset($this->types[$vo['type']]) ? $this->types[$vo['type']] : $vo['type'];
- }
- }
- /**
- * 添加关键字
- * @auth true
- */
- public function add()
- {
- $this->applyCsrfToken();
- $this->title = '添加关键字规则';
- $this->_form($this->table, 'form');
- }
- /**
- * 编辑关键字
- * @auth true
- */
- public function edit()
- {
- $this->applyCsrfToken();
- $this->title = '编辑关键字规则';
- $this->_form($this->table, 'form');
- }
- /**
- * 删除关键字
- * @auth true
- */
- public function remove()
- {
- $this->applyCsrfToken();
- $this->_delete($this->table);
- }
- /**
- * 禁用关键字
- * @auth true
- */
- public function forbid()
- {
- $this->applyCsrfToken();
- $this->_save($this->table, ['status' => '0']);
- }
- /**
- * 启用关键字
- * @auth true
- */
- public function resume()
- {
- $this->applyCsrfToken();
- $this->_save($this->table, ['status' => '1']);
- }
- /**
- * 配置关注回复
- * @auth true
- */
- public function subscribe()
- {
- $this->applyCsrfToken();
- $this->title = '编辑关注回复规则';
- $this->_form($this->table, 'form', 'keys', [], ['keys' => 'subscribe']);
- }
- /**
- * 配置默认回复
- * @auth true
- */
- public function defaults()
- {
- $this->applyCsrfToken();
- $this->title = '编辑默认回复规则';
- $this->_form($this->table, 'form', 'keys', [], ['keys' => 'default']);
- }
- /**
- * 添加数据处理
- * @param array $data
- */
- protected function _form_filter(array &$data)
- {
- if ($this->request->isPost() && isset($data['keys'])) {
- $db = Db::name($this->table)->where('keys', $data['keys']);
- empty($data['id']) || $db->where('id', 'neq', $data['id']);
- if ($db->count() > 0) {
- $this->error('关键字已经存在,请使用其它关键字!');
- }
- }
- if ($this->request->isGet()) {
- $this->msgTypes = $this->types;
- $root = rtrim(dirname(request()->basefile(true)), '\\/');
- $this->defaultImage = "{$root}/static/theme/img/image.png";
- }
- }
- /**
- * 表单结果处理
- * @param boolean $result
- */
- protected function _form_result($result)
- {
- if ($result !== false) {
- list($url, $keys) = ['', $this->request->post('keys')];
- if (!in_array($keys, ['subscribe', 'default'])) {
- $url = url('@admin') . '#' . url('wechat/keys/index') . '?spm=' . $this->request->get('spm');
- }
- $this->success('恭喜, 关键字保存成功!', $url);
- } else {
- $this->error('关键字保存失败, 请稍候再试!');
- }
- }
- }
|