songxingwei 3 年之前
父節點
當前提交
5193949b39
共有 47 個文件被更改,包括 0 次插入4671 次删除
  1. 0 134
      application/wechat/command/Fans.php
  2. 0 35
      application/wechat/command/fans/FansAll.php
  3. 0 35
      application/wechat/command/fans/FansBlack.php
  4. 0 36
      application/wechat/command/fans/FansList.php
  5. 0 35
      application/wechat/command/fans/FansTags.php
  6. 0 107
      application/wechat/controller/Config.php
  7. 0 140
      application/wechat/controller/Fans.php
  8. 0 60
      application/wechat/controller/Index.php
  9. 0 224
      application/wechat/controller/Keys.php
  10. 0 170
      application/wechat/controller/Menu.php
  11. 0 180
      application/wechat/controller/News.php
  12. 0 60
      application/wechat/controller/api/Js.php
  13. 0 338
      application/wechat/controller/api/Push.php
  14. 0 108
      application/wechat/controller/api/Review.php
  15. 0 254
      application/wechat/controller/api/Tools.php
  16. 0 79
      application/wechat/queue/WechatQueue.php
  17. 0 62
      application/wechat/service/FansService.php
  18. 0 88
      application/wechat/service/MediaService.php
  19. 0 244
      application/wechat/service/WechatService.php
  20. 0 28
      application/wechat/sys.php
  21. 0 17
      application/wechat/view/api/review/image.html
  22. 0 19
      application/wechat/view/api/review/main.html
  23. 0 36
      application/wechat/view/api/review/music.html
  24. 0 43
      application/wechat/view/api/review/news.html
  25. 0 9
      application/wechat/view/api/review/text.html
  26. 0 21
      application/wechat/view/api/review/video.html
  27. 0 33
      application/wechat/view/api/review/view.html
  28. 0 30
      application/wechat/view/api/review/voice.html
  29. 0 42
      application/wechat/view/api/tools/jssdk.html
  30. 0 64
      application/wechat/view/api/tools/oauth.html
  31. 0 43
      application/wechat/view/config/options.html
  32. 0 65
      application/wechat/view/config/options_api.html
  33. 0 42
      application/wechat/view/config/options_help.html
  34. 0 68
      application/wechat/view/config/options_thr.html
  35. 0 84
      application/wechat/view/config/payment.html
  36. 0 98
      application/wechat/view/fans/index.html
  37. 0 59
      application/wechat/view/fans/index_search.html
  38. 0 127
      application/wechat/view/index/index.html
  39. 0 271
      application/wechat/view/keys/form.html
  40. 0 180
      application/wechat/view/keys/index.html
  41. 0 54
      application/wechat/view/keys/index_search.html
  42. 0 203
      application/wechat/view/menu/index.html
  43. 0 84
      application/wechat/view/news/form-style.html
  44. 0 215
      application/wechat/view/news/form.html
  45. 0 158
      application/wechat/view/news/index.html
  46. 0 112
      application/wechat/view/news/push.html
  47. 0 77
      application/wechat/view/news/select.html

+ 0 - 134
application/wechat/command/Fans.php

@@ -1,134 +0,0 @@
-<?php
-
-// +----------------------------------------------------------------------
-// | ThinkAdmin
-// +----------------------------------------------------------------------
-// | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
-// +----------------------------------------------------------------------
-// | 官方网站: http://demo.thinkadmin.top
-// +----------------------------------------------------------------------
-// | 开源协议 ( https://mit-license.org )
-// +----------------------------------------------------------------------
-// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
-// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
-// +----------------------------------------------------------------------
-
-namespace app\wechat\command;
-
-use app\wechat\service\WechatService;
-use think\console\Command;
-use think\console\Input;
-use think\console\Output;
-use think\Db;
-
-/**
- * 微信粉丝管理
- * Class Fans
- * @package app\wechat\command
- */
-class Fans extends Command
-{
-
-    /**
-     * 需要处理的模块
-     * @var array
-     */
-    protected $module = ['list', 'tags', 'black'];
-
-    /**
-     * 执行指令
-     * @param Input $input
-     * @param Output $output
-     * @return int|void|null
-     */
-    protected function execute(Input $input, Output $output)
-    {
-        foreach ($this->module as $m) {
-            if (method_exists($this, $fun = "_{$m}")) $this->$fun();
-        }
-    }
-
-
-    /**
-     * 同步微信粉丝列表
-     * @param string $next
-     * @param integer $done
-     * @throws \WeChat\Exceptions\InvalidResponseException
-     * @throws \WeChat\Exceptions\LocalCacheException
-     * @throws \think\Exception
-     * @throws \think\exception\PDOException
-     */
-    protected function _list($next = '', $done = 0)
-    {
-        $appid = WechatService::getAppid();
-        $wechat = WechatService::WeChatUser();
-        $this->output->comment('开始同步微信粉丝数据 ...');
-        while (!is_null($next) && is_array($result = $wechat->getUserList($next)) && !empty($result['data']['openid'])) {
-            foreach (array_chunk($result['data']['openid'], 100) as $chunk) {
-                if (is_array($list = $wechat->getBatchUserInfo($chunk)) && !empty($list['user_info_list'])) {
-                    foreach ($list['user_info_list'] as $user) {
-                        $indexString = str_pad(++$done, strlen($result['total']), '0', STR_PAD_LEFT);
-                        $this->output->writeln("({$indexString}/{$result['total']}) 正在更新粉丝 {$user['openid']} {$user['nickname']}");
-                        \app\wechat\service\FansService::set($user, $appid);
-                    }
-                }
-            }
-            $next = $result['total'] > $done ? $result['next_openid'] : null;
-        }
-        $this->output->comment('微信粉丝数据同步完成');
-        $this->output->newLine();
-    }
-
-    /**
-     * 同步粉丝黑名单列表
-     * @param string $next
-     * @param integer $done
-     * @throws \WeChat\Exceptions\InvalidResponseException
-     * @throws \WeChat\Exceptions\LocalCacheException
-     * @throws \think\Exception
-     * @throws \think\exception\PDOException
-     */
-    public function _black($next = '', $done = 0)
-    {
-        $wechat = WechatService::WeChatUser();
-        $this->output->comment('开始同步微信黑名单数据 ...');
-        while (!is_null($next) && is_array($result = $wechat->getBlackList($next)) && !empty($result['data']['openid'])) {
-            $done += $result['count'];
-            foreach (array_chunk($result['data']['openid'], 100) as $chunk) {
-                Db::name('WechatFans')->where(['is_black' => '0'])->whereIn('openid', $chunk)->update(['is_black' => '1']);
-            }
-            $this->output->writeln("--> 共计同步微信黑名单{$result['total']}人");
-            $next = $result['total'] > $done ? $result['next_openid'] : null;
-        }
-        $this->output->comment('微信黑名单数据同步完成');
-        $this->output->newLine();
-    }
-
-    /**
-     * 同步粉丝标签列表
-     * @param integer $index
-     * @throws \WeChat\Exceptions\InvalidResponseException
-     * @throws \WeChat\Exceptions\LocalCacheException
-     * @throws \think\Exception
-     * @throws \think\exception\PDOException
-     */
-    public function _tags($index = 0)
-    {
-        $appid = WechatService::getAppid();
-        $wechat = WechatService::WeChatTags();
-        $this->output->comment('同步微信粉丝标签数据...');
-        if (is_array($list = $wechat->getTags()) && !empty($list['tags'])) {
-            $count = count($list['tags']);
-            foreach ($list['tags'] as &$tag) {
-                $tag['appid'] = $appid;
-                $indexString = str_pad(++$index, strlen($count), '0', STR_PAD_LEFT);
-                $this->output->writeln("({$indexString}/{$count}) 更新粉丝标签 {$tag['name']}");
-            }
-            Db::name('WechatFansTags')->where(['appid' => $appid])->delete();
-            Db::name('WechatFansTags')->insertAll($list['tags']);
-        }
-        $this->output->comment('微信粉丝标签数据同步完成');
-        $this->output->newLine();
-    }
-
-}

+ 0 - 35
application/wechat/command/fans/FansAll.php

@@ -1,35 +0,0 @@
-<?php
-
-// +----------------------------------------------------------------------
-// | ThinkAdmin
-// +----------------------------------------------------------------------
-// | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
-// +----------------------------------------------------------------------
-// | 官方网站: http://demo.thinkadmin.top
-// +----------------------------------------------------------------------
-// | 开源协议 ( https://mit-license.org )
-// +----------------------------------------------------------------------
-// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
-// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
-// +----------------------------------------------------------------------
-
-namespace app\wechat\command\fans;
-
-use app\wechat\command\Fans;
-
-/**
- * 同步全部粉丝指令
- * Class FansBlack
- * @package app\wechat\command\fans
- */
-class FansAll extends Fans
-{
-    /**
-     * 配置入口
-     */
-    protected function configure()
-    {
-        $this->module = ['list', 'black', 'tags'];
-        $this->setName('xfans:all')->setDescription('[同步]所有微信粉丝的数据');
-    }
-}

+ 0 - 35
application/wechat/command/fans/FansBlack.php

@@ -1,35 +0,0 @@
-<?php
-
-// +----------------------------------------------------------------------
-// | ThinkAdmin
-// +----------------------------------------------------------------------
-// | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
-// +----------------------------------------------------------------------
-// | 官方网站: http://demo.thinkadmin.top
-// +----------------------------------------------------------------------
-// | 开源协议 ( https://mit-license.org )
-// +----------------------------------------------------------------------
-// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
-// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
-// +----------------------------------------------------------------------
-
-namespace app\wechat\command\fans;
-
-use app\wechat\command\Fans;
-
-/**
- * 粉丝黑名单指令
- * Class FansBlack
- * @package app\wechat\command\fans
- */
-class FansBlack extends Fans
-{
-    /**
-     * 配置入口
-     */
-    protected function configure()
-    {
-        $this->module = ['black'];
-        $this->setName('xfans:black')->setDescription('[同步]微信黑名单粉丝数据');
-    }
-}

+ 0 - 36
application/wechat/command/fans/FansList.php

@@ -1,36 +0,0 @@
-<?php
-
-// +----------------------------------------------------------------------
-// | ThinkAdmin
-// +----------------------------------------------------------------------
-// | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
-// +----------------------------------------------------------------------
-// | 官方网站: http://demo.thinkadmin.top
-// +----------------------------------------------------------------------
-// | 开源协议 ( https://mit-license.org )
-// +----------------------------------------------------------------------
-// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
-// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
-// +----------------------------------------------------------------------
-
-namespace app\wechat\command\fans;
-
-use app\wechat\command\Fans;
-
-/**
- * 粉丝列表指令管理
- * Class FansList
- * @package app\wechat\command\fans
- */
-class FansList extends Fans
-{
-    /**
-     * 配置入口
-     */
-    protected function configure()
-    {
-        $this->module = ['list'];
-        $this->setName('xfans:list')->setDescription('[同步]微信粉丝的资料数据');
-    }
-
-}

+ 0 - 35
application/wechat/command/fans/FansTags.php

@@ -1,35 +0,0 @@
-<?php
-
-// +----------------------------------------------------------------------
-// | ThinkAdmin
-// +----------------------------------------------------------------------
-// | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
-// +----------------------------------------------------------------------
-// | 官方网站: http://demo.thinkadmin.top
-// +----------------------------------------------------------------------
-// | 开源协议 ( https://mit-license.org )
-// +----------------------------------------------------------------------
-// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
-// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
-// +----------------------------------------------------------------------
-
-namespace app\wechat\command\fans;
-
-use app\wechat\command\Fans;
-
-/**
- * 粉丝标签指令
- * Class FansTags
- * @package app\wechat\command\fans
- */
-class FansTags extends Fans
-{
-    /**
-     * 配置入口
-     */
-    protected function configure()
-    {
-        $this->module = ['tags'];
-        $this->setName('xfans:tags')->setDescription('[同步]粉丝的标签记录数据');
-    }
-}

+ 0 - 107
application/wechat/controller/Config.php

@@ -1,107 +0,0 @@
-<?php
-
-// +----------------------------------------------------------------------
-// | ThinkAdmin
-// +----------------------------------------------------------------------
-// | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
-// +----------------------------------------------------------------------
-// | 官方网站: http://demo.thinkadmin.top
-// +----------------------------------------------------------------------
-// | 开源协议 ( https://mit-license.org )
-// +----------------------------------------------------------------------
-// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
-// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
-// +----------------------------------------------------------------------
-
-namespace app\wechat\controller;
-
-use app\wechat\service\WechatService;
-use library\Controller;
-use library\File;
-
-/**
- * 微信授权绑定
- * Class Config
- * @package app\wechat\controller
- */
-class Config extends Controller
-{
-    /**
-     * 微信授权绑定
-     * @auth true
-     * @menu true
-     * @throws \think\Exception
-     * @throws \think\exception\PDOException
-     */
-    public function options()
-    {
-        $this->applyCsrfToken();
-        $this->thrNotify = url('@wechat/api.push', '', false, true);
-        if ($this->request->isGet()) {
-            $this->title = '微信授权绑定';
-            if (!($this->geoip = cache('mygeoip'))) {
-                cache('mygeoip', $this->geoip = gethostbyname($this->request->host()), 360);
-            }
-            $code = encode(url('@admin', '', true, true) . '#' . $this->request->url());
-            $this->authurl = config('wechat.service_url') . "/service/api.push/auth/{$code}";
-            if (input('?appid') && input('?appkey')) {
-                sysconf('wechat_type', 'thr');
-                sysconf('wechat_thr_appid', input('appid'));
-                sysconf('wechat_thr_appkey', input('appkey'));
-                WechatService::wechat()->setApiNotifyUri($this->thrNotify);
-            }
-            try {
-                $this->wechat = WechatService::wechat()->getConfig();
-            } catch (\Exception $e) {
-                $this->wechat = [];
-            }
-            $this->fetch();
-        } else {
-            foreach ($this->request->post() as $k => $v) sysconf($k, $v);
-            if ($this->request->post('wechat_type') === 'thr') {
-                WechatService::wechat()->setApiNotifyUri($this->thrNotify);
-            }
-            sysoplog('微信管理', '修改微信授权配置成功');
-            $uri = url('wechat/config/options');
-            $this->success('微信参数修改成功!', url('@admin') . "#{$uri}");
-        }
-    }
-
-    /**
-     * 微信支付配置
-     * @auth true
-     * @menu true
-     * @throws \OSS\Core\OssException
-     * @throws \think\Exception
-     * @throws \think\exception\PDOException
-     */
-    public function payment()
-    {
-        $this->applyCsrfToken();
-        if ($this->request->isGet()) {
-            $this->title = '微信支付配置';
-            $file = File::instance('local');
-            $this->wechat_mch_ssl_cer = sysconf('wechat_mch_ssl_cer');
-            $this->wechat_mch_ssl_key = sysconf('wechat_mch_ssl_key');
-            $this->wechat_mch_ssl_p12 = sysconf('wechat_mch_ssl_p12');
-            if (!$file->has($this->wechat_mch_ssl_cer, true)) $this->wechat_mch_ssl_cer = '';
-            if (!$file->has($this->wechat_mch_ssl_key, true)) $this->wechat_mch_ssl_key = '';
-            if (!$file->has($this->wechat_mch_ssl_p12, true)) $this->wechat_mch_ssl_p12 = '';
-            $this->fetch();
-        } else {
-            if ($this->request->post('wechat_mch_ssl_type') === 'p12') {
-                if (!($sslp12 = $this->request->post('wechat_mch_ssl_p12'))) {
-                    $mchid = $this->request->post('wechat_mch_id');
-                    $content = File::instance('local')->get($sslp12, true);
-                    if (!openssl_pkcs12_read($content, $certs, $mchid)) {
-                        $this->error('商户MCH_ID与支付P12证书不匹配!');
-                    }
-                }
-            }
-            foreach ($this->request->post() as $k => $v) sysconf($k, $v);
-            sysoplog('微信管理', '修改微信支付配置成功');
-            $this->success('微信支付配置成功!');
-        }
-    }
-
-}

+ 0 - 140
application/wechat/controller/Fans.php

@@ -1,140 +0,0 @@
-<?php
-
-// +----------------------------------------------------------------------
-// | ThinkAdmin
-// +----------------------------------------------------------------------
-// | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
-// +----------------------------------------------------------------------
-// | 官方网站: http://demo.thinkadmin.top
-// +----------------------------------------------------------------------
-// | 开源协议 ( https://mit-license.org )
-// +----------------------------------------------------------------------
-// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
-// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
-// +----------------------------------------------------------------------
-
-namespace app\wechat\controller;
-
-use app\wechat\queue\WechatQueue;
-use app\wechat\service\WechatService;
-use library\Controller;
-use think\Db;
-use think\exception\HttpResponseException;
-
-/**
- * 微信粉丝管理
- * Class Fans
- * @package app\wechat\controller
- */
-class Fans extends Controller
-{
-    /**
-     * 绑定数据表
-     * @var string
-     */
-    protected $table = 'WechatFans';
-
-    /**
-     * 微信粉丝管理
-     * @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()
-    {
-        $this->title = '微信粉丝管理';
-        $this->where = ['appid' => WechatService::getAppid()];
-        $query = $this->_query($this->table)->like('nickname')->equal('subscribe,is_black');
-        $query->dateBetween('subscribe_at')->where($this->where)->order('subscribe_time desc')->page();
-    }
-
-    /**
-     * 列表数据处理
-     * @param array $data
-     */
-    protected function _index_page_filter(array &$data)
-    {
-        $tags = Db::name('WechatFansTags')->column('id,name');
-        foreach ($data as &$user) {
-            $user['tags'] = [];
-            foreach (explode(',', $user['tagid_list']) as $tagid) {
-                if (isset($tags[$tagid])) $user['tags'][] = $tags[$tagid];
-            }
-        }
-    }
-
-    /**
-     * 批量拉黑粉丝
-     * @auth true
-     */
-    public function setBlack()
-    {
-        try {
-            $this->applyCsrfToken();
-            foreach (array_chunk(explode(',', $this->request->post('openid')), 20) as $openids) {
-                WechatService::WeChatUser()->batchBlackList($openids);
-                Db::name('WechatFans')->whereIn('openid', $openids)->update(['is_black' => '1']);
-            }
-            $this->success('拉黑粉丝信息成功!');
-        } catch (HttpResponseException $exception) {
-            throw  $exception;
-        } catch (\Exception $e) {
-            $this->error("拉黑粉丝信息失败,请稍候再试!{$e->getMessage()}");
-        }
-    }
-
-    /**
-     * 取消拉黑粉丝
-     * @auth true
-     */
-    public function delBlack()
-    {
-        try {
-            $this->applyCsrfToken();
-            foreach (array_chunk(explode(',', $this->request->post('openid')), 20) as $openids) {
-                WechatService::WeChatUser()->batchUnblackList($openids);
-                Db::name('WechatFans')->whereIn('openid', $openids)->update(['is_black' => '0']);
-            }
-            $this->success('取消拉黑粉丝信息成功!');
-        } catch (HttpResponseException $exception) {
-            throw  $exception;
-        } catch (\Exception $e) {
-            $this->error("取消拉黑粉丝信息失败,请稍候再试!{$e->getMessage()}");
-        }
-    }
-
-    /**
-     * 同步粉丝列表
-     * @auth true
-     */
-    public function sync()
-    {
-        try {
-            $this->appid = WechatService::getAppid();
-            sysoplog('微信管理', "创建微信[{$this->appid}]粉丝同步任务");
-            sysqueue("同步[{$this->appid}]粉丝列表", WechatQueue::URI, 0, ['appid' => $this->appid], 0);
-            $this->success('创建同步粉丝任务成功,需要时间来完成。<br>请到 系统管理 > 任务管理 查看执行进度!');
-        } catch (HttpResponseException $exception) {
-            throw $exception;
-        } catch (\Exception $e) {
-            $this->error("创建同步粉丝任务失败,请稍候再试!<br> {$e->getMessage()}");
-        }
-    }
-
-    /**
-     * 删除粉丝信息
-     * @auth true
-     * @throws \think\Exception
-     * @throws \think\exception\PDOException
-     */
-    public function remove()
-    {
-        $this->applyCsrfToken();
-        $this->_delete($this->table);
-    }
-
-}

+ 0 - 60
application/wechat/controller/Index.php

@@ -1,60 +0,0 @@
-<?php
-
-// +----------------------------------------------------------------------
-// | ThinkAdmin
-// +----------------------------------------------------------------------
-// | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
-// +----------------------------------------------------------------------
-// | 官方网站: http://demo.thinkadmin.top
-// +----------------------------------------------------------------------
-// | 开源协议 ( https://mit-license.org )
-// +----------------------------------------------------------------------
-// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
-// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
-// +----------------------------------------------------------------------
-
-namespace app\wechat\controller;
-
-use app\wechat\service\WechatService;
-use library\Controller;
-use think\Db;
-
-/**
- * 微信数据统计
- * Class Index
- * @package app\wechat\controller
- */
-class Index extends Controller
-{
-    /**
-     * 微信数据统计
-     * @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()
-    {
-        $map = ['appid' => WechatService::getAppid()];
-        $this->totalJson = ['xs' => [], 'ys' => []];
-        for ($i = 5; $i >= 0; $i--) {
-            $time = strtotime("-{$i} months");
-            $where = [['subscribe_at', '<=', date('Y-m-t 23:59:59', $time)]];
-            $this->totalJson['xs'][] = date('Y年m月', $time);
-            $item = ['_0' => 0, '_1' => 0];
-            $list = Db::name('WechatFans')->field('count(1) count,is_black black')->where($map)->where($where)->group('is_black')->select();
-            foreach ($list as $vo) $item["_{$vo['black']}"] = $vo['count'];
-            $this->totalJson['ys']['_0'][] = $item['_0'];
-            $this->totalJson['ys']['_1'][] = $item['_1'];
-        }
-        $this->totalFans = Db::name('WechatFans')->where(['is_black' => '0'])->where($map)->count();
-        $this->totalBlack = Db::name('WechatFans')->where(['is_black' => '1'])->where($map)->count();
-        $this->totalNews = Db::name('WechatNews')->where(['is_deleted' => '0'])->count();
-        $this->totalRule = Db::name('WechatKeys')->count();
-        $this->fetch();
-    }
-
-}

+ 0 - 224
application/wechat/controller/Keys.php

@@ -1,224 +0,0 @@
-<?php
-
-// +----------------------------------------------------------------------
-// | ThinkAdmin
-// +----------------------------------------------------------------------
-// | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
-// +----------------------------------------------------------------------
-// | 官方网站: http://demo.thinkadmin.top
-// +----------------------------------------------------------------------
-// | 开源协议 ( https://mit-license.org )
-// +----------------------------------------------------------------------
-// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
-// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
-// +----------------------------------------------------------------------
-
-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
-     * @throws \think\Exception
-     * @throws \think\db\exception\DataNotFoundException
-     * @throws \think\db\exception\ModelNotFoundException
-     * @throws \think\exception\DbException
-     * @throws \think\exception\PDOException
-     */
-    public function add()
-    {
-        $this->applyCsrfToken();
-        $this->title = '添加关键字规则';
-        $this->_form($this->table, 'form');
-    }
-
-    /**
-     * 编辑关键字
-     * @auth true
-     * @throws \think\Exception
-     * @throws \think\db\exception\DataNotFoundException
-     * @throws \think\db\exception\ModelNotFoundException
-     * @throws \think\exception\DbException
-     * @throws \think\exception\PDOException
-     */
-    public function edit()
-    {
-        $this->applyCsrfToken();
-        $this->title = '编辑关键字规则';
-        $this->_form($this->table, 'form');
-    }
-
-    /**
-     * 删除关键字
-     * @auth true
-     * @throws \think\Exception
-     * @throws \think\exception\PDOException
-     */
-    public function remove()
-    {
-        $this->applyCsrfToken();
-        $this->_delete($this->table);
-    }
-
-    /**
-     * 禁用关键字
-     * @auth true
-     * @throws \think\Exception
-     * @throws \think\exception\PDOException
-     */
-    public function forbid()
-    {
-        $this->applyCsrfToken();
-        $this->_save($this->table, ['status' => '0']);
-    }
-
-    /**
-     * 启用关键字
-     * @auth true
-     * @throws \think\Exception
-     * @throws \think\exception\PDOException
-     */
-    public function resume()
-    {
-        $this->applyCsrfToken();
-        $this->_save($this->table, ['status' => '1']);
-    }
-
-    /**
-     * 配置关注回复
-     * @auth true
-     * @throws \think\Exception
-     * @throws \think\db\exception\DataNotFoundException
-     * @throws \think\db\exception\ModelNotFoundException
-     * @throws \think\exception\DbException
-     * @throws \think\exception\PDOException
-     */
-    public function subscribe()
-    {
-        $this->applyCsrfToken();
-        $this->title = '编辑关注回复规则';
-        $this->_form($this->table, 'form', 'keys', [], ['keys' => 'subscribe']);
-    }
-
-    /**
-     * 配置默认回复
-     * @auth true
-     * @throws \think\Exception
-     * @throws \think\db\exception\DataNotFoundException
-     * @throws \think\db\exception\ModelNotFoundException
-     * @throws \think\exception\DbException
-     * @throws \think\exception\PDOException
-     */
-    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('关键字保存失败, 请稍候再试!');
-        }
-    }
-
-}

+ 0 - 170
application/wechat/controller/Menu.php

@@ -1,170 +0,0 @@
-<?php
-
-// +----------------------------------------------------------------------
-// | ThinkAdmin
-// +----------------------------------------------------------------------
-// | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
-// +----------------------------------------------------------------------
-// | 官方网站: http://demo.thinkadmin.top
-// +----------------------------------------------------------------------
-// | 开源协议 ( https://mit-license.org )
-// +----------------------------------------------------------------------
-// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
-// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
-// +----------------------------------------------------------------------
-
-namespace app\wechat\controller;
-
-use app\wechat\service\WechatService;
-use library\Controller;
-use think\Db;
-use think\exception\HttpResponseException;
-
-/**
- * 微信菜单管理
- * Class Menu
- * @package app\wechat\controller
- */
-class Menu extends Controller
-{
-    /**
-     * 微信菜单的类型
-     * @var array
-     */
-    protected $menuType = [
-        'click'              => '匹配规则',
-        'view'               => '跳转网页',
-        'miniprogram'        => '打开小程序',
-        // 'customservice'      => '转多客服',
-        'scancode_push'      => '扫码推事件',
-        'scancode_waitmsg'   => '扫码推事件且弹出“消息接收中”提示框',
-        'pic_sysphoto'       => '弹出系统拍照发图',
-        'pic_photo_or_album' => '弹出拍照或者相册发图',
-        'pic_weixin'         => '弹出微信相册发图器',
-        'location_select'    => '弹出地理位置选择器',
-    ];
-
-    /**
-     * 微信菜单管理
-     * @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('output') === 'json') {
-            $where = [['keys', 'notin', ['subscribe', 'default']], ['status', 'eq', '1']];
-            $keys = Db::name('WechatKeys')->where($where)->order('sort desc,id desc')->select();
-            $this->success('获取数据成功!', ['menudata' => sysdata('menudata'), 'keysdata' => $keys]);
-        } else {
-            $this->title = '微信菜单定制';
-            $this->menuTypes = $this->menuType;
-            $this->fetch();
-        }
-    }
-
-    /**
-     * 编辑微信菜单
-     * @auth true
-     */
-    public function edit()
-    {
-        if ($this->request->isPost()) {
-            $data = $this->request->post('data');
-            if (empty($data)) { // 删除菜单
-                try {
-                    WechatService::WeChatMenu()->delete();
-                    sysoplog('微信管理', '删除微信菜单成功');
-                    $this->success('删除微信菜单成功!', '');
-                } catch (HttpResponseException $exception) {
-                    throw $exception;
-                } catch (\Exception $e) {
-                    sysoplog('微信管理', "删除微信菜单失败:{$e->getMessage()}");
-                    $this->error('删除微信菜单失败,请稍候再试!' . $e->getMessage());
-                }
-            } else {
-                try {
-                    sysdata('menudata', $this->_buildMenuData($menudata = json_decode($data, true)));
-                    WechatService::WeChatMenu()->create(['button' => sysdata('menudata')]);
-                    sysoplog('微信管理', '发布微信菜单成功');
-                    $this->success('保存发布菜单成功!', '');
-                } catch (HttpResponseException $exception) {
-                    throw $exception;
-                } catch (\Exception $e) {
-                    sysoplog('微信管理', "发布微信菜单失败:{$e->getMessage()}");
-                    $this->error("微信菜单发布失败,请稍候再试!<br> {$e->getMessage()}");
-                }
-            }
-        }
-    }
-
-    /**
-     * 菜单数据处理
-     * @param array $list
-     * @return array
-     */
-    private function _buildMenuData(array $list)
-    {
-        foreach ($list as &$vo) {
-            unset($vo['active'], $vo['show']);
-            if (empty($vo['sub_button'])) {
-                $vo = $this->_buildMenuItemData($vo);
-            } else {
-                $item = ['name' => $vo['name'], 'sub_button' => []];
-                foreach ($vo['sub_button'] as &$sub) {
-                    unset($sub['active'], $sub['show']);
-                    array_push($item['sub_button'], $this->_buildMenuItemData($sub));
-                }
-                $vo = $item;
-            }
-        }
-        return $list;
-    }
-
-    /**
-     * 单个微信菜单数据处理
-     * @param array $item
-     * @return array
-     */
-    private function _buildMenuItemData(array $item)
-    {
-        switch (strtolower($item['type'])) {
-            case 'pic_weixin':
-            case 'pic_sysphoto':
-            case 'scancode_push':
-            case 'location_select':
-            case 'scancode_waitmsg':
-            case 'pic_photo_or_album':
-                return ['name' => $item['name'], 'type' => $item['type'], 'key' => isset($item['key']) ? $item['key'] : $item['type']];
-            case 'click':
-                if (empty($item['key'])) $this->error('匹配规则存在空的选项');
-                return ['name' => $item['name'], 'type' => $item['type'], 'key' => $item['key']];
-            case 'view':
-                return ['name' => $item['name'], 'type' => $item['type'], 'url' => $item['url']];
-            case 'miniprogram':
-                return ['name' => $item['name'], 'type' => $item['type'], 'url' => $item['url'], 'appid' => $item['appid'], 'pagepath' => $item['pagepath']];
-        }
-    }
-
-    /**
-     * 取消微信菜单
-     * @auth true
-     */
-    public function cancel()
-    {
-        try {
-            WechatService::WeChatMenu()->delete();
-            $this->success('菜单取消成功,重新关注可立即生效!', '');
-        } catch (HttpResponseException $exception) {
-            sysoplog('微信管理', '取消微信菜单成功');
-            throw $exception;
-        } catch (\Exception $e) {
-            $this->error("菜单取消失败,请稍候再试!<br> {$e->getMessage()}");
-        }
-    }
-
-}

+ 0 - 180
application/wechat/controller/News.php

@@ -1,180 +0,0 @@
-<?php
-
-// +----------------------------------------------------------------------
-// | ThinkAdmin
-// +----------------------------------------------------------------------
-// | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
-// +----------------------------------------------------------------------
-// | 官方网站: http://demo.thinkadmin.top
-// +----------------------------------------------------------------------
-// | 开源协议 ( https://mit-license.org )
-// +----------------------------------------------------------------------
-// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
-// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
-// +----------------------------------------------------------------------
-
-namespace app\wechat\controller;
-
-use app\wechat\service\MediaService;
-use library\Controller;
-use think\Db;
-
-/**
- * 微信图文管理
- * Class News
- * @package app\wechat\controller
- */
-class News extends Controller
-{
-
-    /**
-     * 设置默认操作表
-     * @var string
-     */
-    protected $table = 'WechatNews';
-
-    /**
-     * 微信图文管理
-     * @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()
-    {
-        $this->title = '微信图文列表';
-        $this->_query($this->table)->where(['is_deleted' => '0'])->order('id desc')->page();
-    }
-
-    /**
-     * 图文列表数据处理
-     * @param array $data
-     * @throws \think\db\exception\DataNotFoundException
-     * @throws \think\db\exception\ModelNotFoundException
-     * @throws \think\exception\DbException
-     */
-    protected function _index_page_filter(&$data)
-    {
-        foreach ($data as &$vo) $vo = MediaService::news($vo['id']);
-    }
-
-    /**
-     * 图文选择器
-     * @return string
-     * @auth true
-     * @throws \think\Exception
-     * @throws \think\db\exception\DataNotFoundException
-     * @throws \think\db\exception\ModelNotFoundException
-     * @throws \think\exception\DbException
-     * @throws \think\exception\PDOException
-     */
-    public function select()
-    {
-        $this->index();
-    }
-
-    /**
-     * 图文列表数据处理
-     * @param array $data
-     * @throws \think\db\exception\DataNotFoundException
-     * @throws \think\db\exception\ModelNotFoundException
-     * @throws \think\exception\DbException
-     */
-    protected function _select_page_filter(&$data)
-    {
-        foreach ($data as &$vo) $vo = MediaService::news($vo['id']);
-    }
-
-    /**
-     * 添加微信图文
-     * @auth true
-     * @throws \think\Exception
-     * @throws \think\exception\PDOException
-     */
-    public function add()
-    {
-        if ($this->request->isGet()) {
-            $this->title = '新建图文';
-            $this->fetch('form');
-        } else {
-            $data = $this->request->post();
-            if (($ids = $this->_apply_news_article($data['data'])) && !empty($ids)) {
-                if (data_save($this->table, ['article_id' => $ids, 'create_by' => session('user.id')], 'id') !== false) {
-                    $url = url('@admin') . '#' . url('@wechat/news/index') . '?spm=' . $this->request->get('spm');
-                    $this->success('图文添加成功!', $url);
-                }
-            }
-            $this->error('图文添加失败,请稍候再试!');
-        }
-    }
-
-    /**
-     * 编辑微信图文
-     * @auth true
-     * @throws \think\Exception
-     * @throws \think\exception\PDOException
-     */
-    public function edit()
-    {
-        if (($this->id = $this->request->get('id')) < 1) {
-            $this->error('参数错误,请稍候再试!');
-        }
-        if ($this->request->isGet()) {
-            if ($this->request->get('output') === 'json') {
-                $this->success('获取数据成功!', MediaService::news($this->id));
-            } else {
-                $this->fetch('form', ['title' => '编辑图文']);
-            }
-        } else {
-            $post = $this->request->post();
-            if (isset($post['data']) && ($ids = $this->_apply_news_article($post['data']))) {
-                if (data_save('wechat_news', ['id' => $this->id, 'article_id' => $ids], 'id')) {
-                    $this->success('图文更新成功!', url('@admin') . '#' . url('@wechat/news/index'));
-                }
-            }
-            $this->error('图文更新失败,请稍候再试!');
-        }
-    }
-
-    /**
-     * 图文更新操作
-     * @param array $data
-     * @param array $ids
-     * @return string
-     * @throws \think\Exception
-     * @throws \think\exception\PDOException
-     */
-    private function _apply_news_article($data, $ids = [])
-    {
-        foreach ($data as &$vo) {
-            if (empty($vo['digest'])) {
-                $vo['digest'] = mb_substr(strip_tags(str_replace(["\s", ' '], '', $vo['content'])), 0, 120);
-            }
-            $vo['create_at'] = date('Y-m-d H:i:s');
-            if (empty($vo['id'])) {
-                $result = $id = Db::name('WechatNewsArticle')->insertGetId($vo);
-            } else {
-                $id = intval($vo['id']);
-                $result = Db::name('WechatNewsArticle')->where('id', $id)->update($vo);
-            }
-            if ($result !== false) {
-                array_push($ids, $id);
-            }
-        }
-        return join(',', $ids);
-    }
-
-    /**
-     * 删除微信图文
-     * @throws \think\Exception
-     * @throws \think\exception\PDOException
-     */
-    public function remove()
-    {
-        $this->_delete($this->table);
-    }
-
-}

+ 0 - 60
application/wechat/controller/api/Js.php

@@ -1,60 +0,0 @@
-<?php
-
-// +----------------------------------------------------------------------
-// | ThinkAdmin
-// +----------------------------------------------------------------------
-// | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
-// +----------------------------------------------------------------------
-// | 官方网站: http://demo.thinkadmin.top
-// +----------------------------------------------------------------------
-// | 开源协议 ( https://mit-license.org )
-// +----------------------------------------------------------------------
-// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
-// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
-// +----------------------------------------------------------------------
-
-namespace app\wechat\controller\api;
-
-use app\wechat\service\WechatService;
-use library\Controller;
-use think\facade\Response;
-
-/**
- * 前端JS获取控制器
- * Class Js
- * @package app\wechat\controller\api
- */
-class Js extends Controller
-{
-    /**
-     * 返回生成的JS内容
-     * @return \think\Response
-     * @throws \WeChat\Exceptions\InvalidResponseException
-     * @throws \WeChat\Exceptions\LocalCacheException
-     * @throws \think\Exception
-     * @throws \think\exception\PDOException
-     */
-    public function index()
-    {
-        $url = $this->request->server('http_referer', $this->request->url(true), null);
-        $wechat = WechatService::getWebOauthInfo($url, $this->request->get('mode', 1), false);
-        $openid = isset($wechat['openid']) ? $wechat['openid'] : '';
-        $unionid = empty($wechat['fansinfo']['unionid']) ? '' : $wechat['fansinfo']['unionid'];
-        $configJson = json_encode(WechatService::getWebJssdkSign($url), JSON_UNESCAPED_UNICODE);
-        $fansinfoJson = json_encode(isset($wechat['fansinfo']) ? $wechat['fansinfo'] : [], JSON_UNESCAPED_UNICODE);
-        $html = <<<EOF
-if(typeof wx === 'object'){
-    wx.openid="{$openid}";
-    wx.unionid="{$unionid}";
-    wx.config({$configJson});
-    wx.fansinfo={$fansinfoJson};
-    wx.ready(function(){
-        wx.hideOptionMenu();
-        wx.hideAllNonBaseMenuItem();
-    });
-}
-EOF;
-        return Response::create($html)->contentType('application/x-javascript');
-    }
-
-}

+ 0 - 338
application/wechat/controller/api/Push.php

@@ -1,338 +0,0 @@
-<?php
-
-// +----------------------------------------------------------------------
-// | ThinkAdmin
-// +----------------------------------------------------------------------
-// | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
-// +----------------------------------------------------------------------
-// | 官方网站: http://demo.thinkadmin.top
-// +----------------------------------------------------------------------
-// | 开源协议 ( https://mit-license.org )
-// +----------------------------------------------------------------------
-// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
-// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
-// +----------------------------------------------------------------------
-
-namespace app\wechat\controller\api;
-
-use app\wechat\service\FansService;
-use app\wechat\service\MediaService;
-use app\wechat\service\WechatService;
-use library\Controller;
-use think\Db;
-use think\facade\Log;
-
-/**
- * 微信消息推送处理
- * Class Push
- * @package app\wechat\controller\api
- */
-class Push extends Controller
-{
-
-    /**
-     * 微信APPID
-     * @var string
-     */
-    protected $appid;
-
-    /**
-     * 微信用户OPENID
-     * @var string
-     */
-    protected $openid;
-
-    /**
-     * 消息是否加密码
-     * @var boolean
-     */
-    protected $encrypt;
-
-
-    /**
-     * 微信OPENID
-     * @var string
-     */
-    protected $fromOpenid;
-
-    /**
-     * 微信消息对象
-     * @var array
-     */
-    protected $receive;
-
-    /**
-     * 微信实例对象
-     * @var \WeChat\Receive
-     */
-    protected $wechat;
-
-    /**
-     * 强制返回JSON消息
-     * @var boolean
-     */
-    protected $forceJson = false;
-
-    /**
-     * 强制客服消息回复
-     * @var boolean
-     */
-    protected $forceCustom = false;
-
-    /**
-     * 获取网络出口IP
-     * @return mixed
-     */
-    public function geoip()
-    {
-        return $this->request->ip();
-    }
-
-    /**
-     * 消息推送处理接口
-     * @return string
-     */
-    public function index()
-    {
-        try {
-            if ($this->request->has('receive', 'post') && WechatService::getType() === 'thr') {
-                $this->forceJson = true; // 强制返回JSON到Service转发
-                $this->forceCustom = false; // 强制使用客服消息模式推送
-                $this->appid = $this->request->post('appid', '', null);
-                $this->openid = $this->request->post('openid', '', null);
-                $this->encrypt = boolval($this->request->post('encrypt', 0));
-                $this->receive = $this->toLower(unserialize($this->request->post('receive', '', null)));
-                if (empty($this->appid) || empty($this->openid) || empty($this->receive)) {
-                    throw new \think\Exception('微信API实例缺失必要参数[appid,openid,receive]');
-                }
-            } else {
-                $this->forceJson = false; // 暂停返回JSON消息对象
-                $this->forceCustom = false; // 暂停使用客户消息模式
-                $this->wechat = WechatService::WeChatReceive();
-                $this->appid = WechatService::getAppid();
-                $this->openid = $this->wechat->getOpenid();
-                $this->encrypt = $this->wechat->isEncrypt();
-                $this->receive = $this->toLower($this->wechat->getReceive());
-            }
-            $this->fromOpenid = $this->receive['tousername'];
-            // text, event, image, location
-            if (method_exists($this, ($method = $this->receive['msgtype']))) {
-                if (is_string(($result = $this->$method()))) return $result;
-            }
-        } catch (\Exception $e) {
-            Log::error("{$e->getFile()}:{$e->getLine()} [{$e->getCode()}] {$e->getMessage()}");
-        }
-        return 'success';
-    }
-
-    /**
-     * 数组KEY全部转小写
-     * @param array $data
-     * @return array
-     */
-    private function toLower(array $data)
-    {
-        $data = array_change_key_case($data, CASE_LOWER);
-        foreach ($data as $key => $vo) if (is_array($vo)) {
-            $data[$key] = $this->toLower($vo);
-        }
-        return $data;
-    }
-
-    /**
-     * 文件消息处理
-     * @return boolean
-     * @throws \WeChat\Exceptions\InvalidDecryptException
-     * @throws \WeChat\Exceptions\InvalidResponseException
-     * @throws \WeChat\Exceptions\LocalCacheException
-     * @throws \think\Exception
-     * @throws \think\db\exception\DataNotFoundException
-     * @throws \think\db\exception\ModelNotFoundException
-     * @throws \think\exception\DbException
-     * @throws \think\exception\PDOException
-     */
-    protected function text()
-    {
-        return $this->keys("wechat_keys#keys#{$this->receive['content']}", false, $this->forceCustom);
-    }
-
-    /**
-     * 事件消息处理
-     * @return boolean|string
-     * @throws \WeChat\Exceptions\InvalidDecryptException
-     * @throws \WeChat\Exceptions\InvalidResponseException
-     * @throws \WeChat\Exceptions\LocalCacheException
-     * @throws \think\Exception
-     * @throws \think\db\exception\DataNotFoundException
-     * @throws \think\db\exception\ModelNotFoundException
-     * @throws \think\exception\DbException
-     * @throws \think\exception\PDOException
-     */
-    protected function event()
-    {
-        switch (strtolower($this->receive['event'])) {
-            case 'subscribe':
-                $this->updateFansinfo(true);
-                if (isset($this->receive['eventkey']) && is_string($this->receive['eventkey'])) {
-                    if (($key = preg_replace('/^qrscene_/i', '', $this->receive['eventkey']))) {
-                        return $this->keys("wechat_keys#keys#{$key}", false, true);
-                    }
-                }
-                return $this->keys('wechat_keys#keys#subscribe', true, $this->forceCustom);
-            case 'unsubscribe':
-                return $this->updateFansinfo(false);
-            case 'click':
-                return $this->keys("wechat_keys#keys#{$this->receive['eventkey']}", false, $this->forceCustom);
-            case 'scancode_push':
-            case 'scancode_waitmsg':
-                if (empty($this->receive['scancodeinfo'])) return false;
-                if (empty($this->receive['scancodeinfo']['scanresult'])) return false;
-                return $this->keys("wechat_keys#keys#{$this->receive['scancodeinfo']['scanresult']}", false, $this->forceCustom);
-            case 'scan':
-                if (empty($this->receive['eventkey'])) return false;
-                return $this->keys("wechat_keys#keys#{$this->receive['eventkey']}", false, $this->forceCustom);
-            default:
-                return false;
-        }
-    }
-
-    /**
-     * 关键字处理
-     * @param string $rule 关键字规则
-     * @param boolean $isLast 重复回复消息处理
-     * @param boolean $isCustom 是否使用客服消息发送
-     * @return boolean|string
-     * @throws \WeChat\Exceptions\InvalidDecryptException
-     * @throws \WeChat\Exceptions\InvalidResponseException
-     * @throws \WeChat\Exceptions\LocalCacheException
-     * @throws \think\Exception
-     * @throws \think\db\exception\DataNotFoundException
-     * @throws \think\db\exception\ModelNotFoundException
-     * @throws \think\exception\DbException
-     * @throws \think\exception\PDOException
-     */
-    private function keys($rule, $isLast = false, $isCustom = false)
-    {
-        list($table, $field, $value) = explode('#', $rule . '##');
-        $data = Db::name($table)->where([$field => $value])->find();
-        if (empty($data['type']) || (array_key_exists('status', $data) && empty($data['status']))) {
-            return $isLast ? false : $this->keys('wechat_keys#keys#default', true, $isCustom);
-        }
-        switch (strtolower($data['type'])) {
-            case 'keys':
-                $content = empty($data['content']) ? $data['name'] : $data['content'];
-                return $this->keys("wechat_keys#keys#{$content}", $isLast, $isCustom);
-            case 'text':
-                return $this->sendMessage('text', ['content' => $data['content']], $isCustom);
-            case 'customservice':
-                return $this->sendMessage('customservice', ['content' => $data['content']], false);
-            case 'voice':
-                if (empty($data['voice_url']) || !($mediaId = MediaService::upload($data['voice_url'], 'voice'))) return false;
-                return $this->sendMessage('voice', ['media_id' => $mediaId], $isCustom);
-            case 'image':
-                if (empty($data['image_url']) || !($mediaId = MediaService::upload($data['image_url'], 'image'))) return false;
-                return $this->sendMessage('image', ['media_id' => $mediaId], $isCustom);
-            case 'news':
-                list($news, $articles) = [MediaService::news($data['news_id']), []];
-                if (empty($news['articles'])) return false;
-                foreach ($news['articles'] as $vo) array_push($articles, [
-                    'url'   => url("@wechat/api.review/view", '', false, true) . "?id={$vo['id']}",
-                    'title' => $vo['title'], 'picurl' => $vo['local_url'], 'description' => $vo['digest'],
-                ]);
-                return $this->sendMessage('news', ['articles' => $articles], $isCustom);
-            case 'music':
-                if (empty($data['music_url']) || empty($data['music_title']) || empty($data['music_desc'])) return false;
-                return $this->sendMessage('music', [
-                    'thumb_media_id' => empty($data['music_image']) ? '' : MediaService::upload($data['music_image'], 'image'),
-                    'description'    => $data['music_desc'], 'title' => $data['music_title'],
-                    'hqmusicurl'     => $data['music_url'], 'musicurl' => $data['music_url'],
-                ], $isCustom);
-            case 'video':
-                if (empty($data['video_url']) || empty($data['video_desc']) || empty($data['video_title'])) return false;
-                $videoData = ['title' => $data['video_title'], 'introduction' => $data['video_desc']];
-                if (!($mediaId = MediaService::upload($data['video_url'], 'video', $videoData))) return false;
-                return $this->sendMessage('video', ['media_id' => $mediaId, 'title' => $data['video_title'], 'description' => $data['video_desc']], $isCustom);
-            default:
-                return false;
-        }
-    }
-
-    /**
-     * 发送消息到微信
-     * @param string $type 消息类型(text|image|voice|video|music|news|mpnews|wxcard)
-     * @param array $data 消息内容数据对象
-     * @param boolean $isCustom 是否使用客服消息发送
-     * @return array|boolean
-     * @throws \WeChat\Exceptions\InvalidDecryptException
-     * @throws \WeChat\Exceptions\InvalidResponseException
-     * @throws \WeChat\Exceptions\LocalCacheException
-     * @throws \think\Exception
-     * @throws \think\exception\PDOException
-     */
-    private function sendMessage($type, $data, $isCustom = false)
-    {
-        if ($isCustom) {
-            WechatService::WeChatCustom()->send(['touser' => $this->openid, 'msgtype' => $type, "{$type}" => $data]);
-        } else switch (strtolower($type)) {
-            case 'text': // 发送文本消息
-                $reply = ['CreateTime' => time(), 'MsgType' => 'text', 'ToUserName' => $this->openid, 'FromUserName' => $this->fromOpenid, 'Content' => $data['content']];
-                return $this->forceJson ? json_encode($reply, JSON_UNESCAPED_UNICODE) : WechatService::WeChatReceive()->reply($reply, true, $this->encrypt);
-            case 'image': // 发送图片消息
-                return $this->buildMessage($type, ['MediaId' => $data['media_id']]);
-            case 'voice': // 发送语言消息
-                return $this->buildMessage($type, ['MediaId' => $data['media_id']]);
-            case 'video': // 发送视频消息
-                return $this->buildMessage($type, ['Title' => $data['title'], 'MediaId' => $data['media_id'], 'Description' => $data['description']]);
-            case 'music': // 发送音乐消息
-                return $this->buildMessage($type, ['Title' => $data['title'], 'Description' => $data['description'], 'MusicUrl' => $data['musicurl'], 'HQMusicUrl' => $data['musicurl'], 'ThumbMediaId' => $data['thumb_media_id']]);
-            case 'customservice': // 转交客服消息
-                if ($data['content']) $this->sendMessage('text', $data, true);
-                return $this->buildMessage('transfer_customer_service');
-            case 'news': // 发送图文消息
-                $articles = [];
-                foreach ($data['articles'] as $article) array_push($articles, ['PicUrl' => $article['picurl'], 'Title' => $article['title'], 'Description' => $article['description'], 'Url' => $article['url']]);
-                $reply = ['CreateTime' => time(), 'MsgType' => 'news', 'ToUserName' => $this->openid, 'FromUserName' => $this->fromOpenid, 'Articles' => $articles, 'ArticleCount' => count($articles)];
-                return $this->forceJson ? json_encode($reply, JSON_UNESCAPED_UNICODE) : WechatService::WeChatReceive()->reply($reply, true, $this->encrypt);
-            default:
-                return 'success';
-        }
-    }
-
-    /**
-     * 消息数据生成
-     * @param string $type 消息类型
-     * @param string|array $data 消息数据
-     * @return string
-     * @throws \WeChat\Exceptions\InvalidDecryptException
-     */
-    private function buildMessage($type, $data = [])
-    {
-        $reply = ['CreateTime' => time(), 'MsgType' => strtolower($type), 'ToUserName' => $this->openid, 'FromUserName' => $this->fromOpenid];
-        if (!empty($data)) $reply[ucfirst(strtolower($type))] = $data;
-        return $this->forceJson ? json_encode($reply, JSON_UNESCAPED_UNICODE) : WechatService::WeChatReceive()->reply($reply, true, $this->encrypt);
-    }
-
-    /**
-     * 同步粉丝状态
-     * @param boolean $subscribe 关注状态
-     * @return boolean
-     * @throws \think\Exception
-     * @throws \think\exception\PDOException
-     */
-    private function updateFansinfo($subscribe = true)
-    {
-        if ($subscribe) {
-            try {
-                $user = WechatService::WeChatUser()->getUserInfo($this->openid);
-                return FansService::set(array_merge($user, ['subscribe' => '1', 'appid' => $this->appid]));
-            } catch (\Exception $e) {
-                Log::error(__METHOD__ . " {$this->openid} get userinfo faild. {$e->getMessage()}");
-                return false;
-            }
-        } else {
-            $user = ['subscribe' => '0', 'openid' => $this->openid, 'appid' => $this->appid];
-            return data_save('WechatFans', $user, 'openid', ['appid' => $this->appid]);
-        }
-    }
-
-}

+ 0 - 108
application/wechat/controller/api/Review.php

@@ -1,108 +0,0 @@
-<?php
-
-// +----------------------------------------------------------------------
-// | ThinkAdmin
-// +----------------------------------------------------------------------
-// | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
-// +----------------------------------------------------------------------
-// | 官方网站: http://demo.thinkadmin.top
-// +----------------------------------------------------------------------
-// | 开源协议 ( https://mit-license.org )
-// +----------------------------------------------------------------------
-// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
-// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
-// +----------------------------------------------------------------------
-
-namespace app\wechat\controller\api;
-
-use app\wechat\service\MediaService;
-use library\Controller;
-use think\Db;
-
-/**
- * Class Review
- * @package app\wechat\controller\api
- */
-class Review extends Controller
-{
-
-    /**
-     * 图文展示
-     * @param integer $id 图文ID
-     * @throws \think\db\exception\DataNotFoundException
-     * @throws \think\db\exception\ModelNotFoundException
-     * @throws \think\exception\DbException
-     */
-    public function news($id = 0)
-    {
-        $this->id = empty($id) ? input('id') : $id;
-        $this->news = MediaService::news($this->id);
-        $this->fetch();
-    }
-
-    /**
-     * 文章展示
-     * @param integer $id 文章ID
-     * @throws \think\Exception
-     * @throws \think\db\exception\DataNotFoundException
-     * @throws \think\db\exception\ModelNotFoundException
-     * @throws \think\exception\DbException
-     * @throws \think\exception\PDOException
-     */
-    public function view($id = 0)
-    {
-        $where = ['id' => empty($id) ? input('id') : $id];
-        Db::name('WechatNewsArticle')->where($where)->update(['read_num' => Db::raw('read_num+1')]);
-        $this->info = Db::name('WechatNewsArticle')->where($where)->find();
-        $this->fetch();
-    }
-
-    /**
-     * 文本展示
-     */
-    public function text()
-    {
-        $this->content = strip_tags(input('content', ''), '<a><img>');
-        $this->fetch();
-    }
-
-    /**
-     * 图片展示
-     */
-    public function image()
-    {
-        $this->content = strip_tags(input('content', ''), '<a><img>');
-        $this->fetch();
-    }
-
-    /**
-     * 视频展示
-     */
-    public function video()
-    {
-        $this->url = strip_tags(input('url', ''), '<a><img>');
-        $this->title = strip_tags(input('title', ''), '<a><img>');
-        $this->fetch();
-    }
-
-    /**
-     * 语音展示
-     */
-    public function voice()
-    {
-        $this->url = strip_tags(input('url', ''), '<a><img>');
-        $this->fetch();
-    }
-
-    /**
-     * 音乐展示
-     */
-    public function music()
-    {
-        $this->url = strip_tags(input('url', ''), '<a><img>');
-        $this->desc = strip_tags(input('desc', ''), '<a><img>');
-        $this->title = strip_tags(input('title', ''), '<a><img>');
-        $this->fetch();
-    }
-
-}

+ 0 - 254
application/wechat/controller/api/Tools.php

@@ -1,254 +0,0 @@
-<?php
-
-// +----------------------------------------------------------------------
-// | ThinkAdmin
-// +----------------------------------------------------------------------
-// | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
-// +----------------------------------------------------------------------
-// | 官方网站: http://demo.thinkadmin.top
-// +----------------------------------------------------------------------
-// | 开源协议 ( https://mit-license.org )
-// +----------------------------------------------------------------------
-// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
-// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
-// +----------------------------------------------------------------------
-
-namespace app\wechat\controller\api;
-
-use app\wechat\service\WechatService;
-use library\Controller;
-
-/**
- * 微信测试工具
- * Class Tools
- * @package app\wechat\controller\api
- */
-class Tools extends Controller
-{
-    /**
-     * 网页授权测试
-     * @return string
-     * @throws \WeChat\Exceptions\InvalidResponseException
-     * @throws \WeChat\Exceptions\LocalCacheException
-     * @throws \think\Exception
-     * @throws \think\exception\PDOException
-     */
-    public function oauth()
-    {
-        $this->url = $this->request->url(true);
-        $this->fans = WechatService::getWebOauthInfo($this->url, 1);
-        $this->fetch();
-    }
-
-    /**
-     * 显示网页授权二维码
-     * @return \think\Response
-     * @throws \Endroid\QrCode\Exceptions\ImageFunctionFailedException
-     * @throws \Endroid\QrCode\Exceptions\ImageFunctionUnknownException
-     * @throws \Endroid\QrCode\Exceptions\ImageTypeInvalidException
-     */
-    public function oauth_qrc()
-    {
-        $url = url('@wechat/api.tools/oauth', '', true, true);
-        return $this->showQrc($url);
-    }
-
-    /**
-     * JSSDK测试
-     * @return string
-     * @throws \WeChat\Exceptions\InvalidResponseException
-     * @throws \WeChat\Exceptions\LocalCacheException
-     * @throws \think\Exception
-     * @throws \think\exception\PDOException
-     */
-    public function jssdk()
-    {
-        $this->options = WechatService::getWebJssdkSign();
-        $this->fetch();
-    }
-
-    /**
-     * 显示网页授权二维码
-     * @throws \Endroid\QrCode\Exceptions\ImageFunctionFailedException
-     * @throws \Endroid\QrCode\Exceptions\ImageFunctionUnknownException
-     * @throws \Endroid\QrCode\Exceptions\ImageTypeInvalidException
-     */
-    public function jssdk_qrc()
-    {
-        $this->url = url('@wechat/api.tools/jssdk', '', true, true);
-        return $this->showQrc($this->url);
-    }
-
-    /**
-     * 微信扫码支付模式一二维码显示
-     * @throws \Endroid\QrCode\Exceptions\ImageFunctionFailedException
-     * @throws \Endroid\QrCode\Exceptions\ImageFunctionUnknownException
-     * @throws \Endroid\QrCode\Exceptions\ImageTypeInvalidException
-     */
-    public function scanOneQrc()
-    {
-        $pay = WechatService::WePayOrder();
-        $result = $pay->qrcParams('8888888');
-        $this->showQrc($result);
-    }
-
-    /**
-     * 微信扫码支付模式一通知处理
-     * -- 注意,需要在微信商户配置支付通知地址
-     * @return string
-     * @throws \WeChat\Exceptions\InvalidResponseException
-     * @throws \WeChat\Exceptions\LocalCacheException
-     */
-    public function scanOneNotify()
-    {
-        $pay = WechatService::WePayOrder();
-        $notify = $pay->getNotify();
-        p('======= 来自扫码支付1的数据 ======');
-        p($notify);
-        // 产品ID 你的业务代码,并实现下面的统一下单操作
-        $product_id = $notify['product_id'];
-        // 微信统一下单处理
-        $options = [
-            'body'             => '测试商品,产品ID:' . $product_id,
-            'out_trade_no'     => time(),
-            'total_fee'        => '1',
-            'trade_type'       => 'NATIVE',
-            'notify_url'       => url('@wechat/api.tools/notify', '', true, true),
-            'spbill_create_ip' => request()->ip(),
-        ];
-        $order = $pay->create($options);
-        p('======= 来自扫码支付1统一下单结果 ======');
-        p($order);
-        // 回复XML文本
-        $result = [
-            'return_code' => 'SUCCESS',
-            'return_msg'  => '处理成功',
-            'appid'       => $notify['appid'],
-            'mch_id'      => $notify['mch_id'],
-            'nonce_str'   => \WeChat\Contracts\Tools::createNoncestr(),
-            'prepay_id'   => $order['prepay_id'],
-            'result_code' => 'SUCCESS',
-        ];
-        $result['sign'] = $pay->getPaySign($result);
-        p('======= 来自扫码支付1返回的结果 ======');
-        p($result);
-        return \WeChat\Contracts\Tools::arr2xml($result);
-    }
-
-    /**
-     * 扫码支付模式二测试二维码
-     * @throws \Endroid\QrCode\Exceptions\ImageFunctionFailedException
-     * @throws \Endroid\QrCode\Exceptions\ImageFunctionUnknownException
-     * @throws \Endroid\QrCode\Exceptions\ImageTypeInvalidException
-     * @throws \WeChat\Exceptions\InvalidResponseException
-     * @throws \WeChat\Exceptions\LocalCacheException
-     */
-    public function scanQrc()
-    {
-        $pay = WechatService::WePayOrder();
-        $result = $pay->create([
-            'body'             => '测试商品',
-            'out_trade_no'     => time(),
-            'total_fee'        => '1',
-            'trade_type'       => 'NATIVE',
-            'notify_url'       => url('@wechat/api.tools/notify', '', true, true),
-            'spbill_create_ip' => request()->ip(),
-        ]);
-        $this->showQrc($result['code_url']);
-    }
-
-
-    /**
-     * 微信JSAPI支付二维码
-     * @return \think\Response
-     * @throws \Endroid\QrCode\Exceptions\ImageFunctionFailedException
-     * @throws \Endroid\QrCode\Exceptions\ImageFunctionUnknownException
-     * @throws \Endroid\QrCode\Exceptions\ImageTypeInvalidException
-     */
-    public function jsapiQrc()
-    {
-        $this->url = url('@wechat/api.tools/jsapi', '', true, true);
-        return $this->showQrc($this->url);
-    }
-
-    /**
-     * 微信JSAPI支付测试
-     * @throws \WeChat\Exceptions\InvalidResponseException
-     * @throws \WeChat\Exceptions\LocalCacheException
-     * @throws \think\Exception
-     * @throws \think\exception\PDOException
-     * @link wx-demo-jsapi
-     */
-    public function jsapi()
-    {
-        $pay = WechatService::WePayOrder();
-        $openid = WechatService::getWebOauthInfo(request()->url(true), 0)['openid'];
-        $options = [
-            'body'             => '测试商品',
-            'out_trade_no'     => time(),
-            'total_fee'        => '1',
-            'openid'           => $openid,
-            'trade_type'       => 'JSAPI',
-            'notify_url'       => url('@wechat/api.tools/notify', '', true, true),
-            'spbill_create_ip' => request()->ip(),
-        ];
-        // 生成预支付码
-        $result = $pay->create($options);
-        // 创建JSAPI参数签名
-        $options = $pay->jsapiParams($result['prepay_id']);
-        $optionJSON = json_encode($options, JSON_UNESCAPED_UNICODE);
-        // JSSDK 签名配置
-        $configJSON = json_encode(WechatService::getWebJssdkSign(), JSON_UNESCAPED_UNICODE);
-
-        echo '<pre>';
-        echo "当前用户OPENID: {$openid}";
-        echo "\n--- 创建预支付码 ---\n";
-        var_export($result);
-        echo '</pre>';
-
-        echo '<pre>';
-        echo "\n\n--- JSAPI 及 H5 参数 ---\n";
-        var_export($options);
-        echo '</pre>';
-        echo "<button id='paytest' type='button'>JSAPI支付测试</button>";
-        echo "
-        <script src='//res.wx.qq.com/open/js/jweixin-1.2.0.js'></script>
-        <script>
-            wx.config($configJSON);
-            document.getElementById('paytest').onclick = function(){
-                var options = $optionJSON;
-                options.success = function(){
-                    alert('支付成功');
-                }
-                wx.chooseWXPay(options);
-            }
-        </script>";
-    }
-
-    /**
-     * 支付通知接收处理
-     * @return string
-     * @throws \WeChat\Exceptions\InvalidResponseException
-     */
-    public function notify()
-    {
-        $wechat = WechatService::WePayOrder();
-        p($wechat->getNotify());
-        return 'SUCCESS';
-    }
-
-    /**
-     * 创建二维码响应对应
-     * @param string $url 二维码内容
-     * @throws \Endroid\QrCode\Exceptions\ImageFunctionFailedException
-     * @throws \Endroid\QrCode\Exceptions\ImageFunctionUnknownException
-     * @throws \Endroid\QrCode\Exceptions\ImageTypeInvalidException
-     */
-    protected function showQrc($url)
-    {
-        $qrCode = new \Endroid\QrCode\QrCode();
-        $qrCode->setText($url)->setSize(300)->setPadding(20)->setImageType('png');
-        response($qrCode->get(), 200, ['Content-Type' => 'image/png'])->send();
-    }
-
-}

+ 0 - 79
application/wechat/queue/WechatQueue.php

@@ -1,79 +0,0 @@
-<?php
-
-// +----------------------------------------------------------------------
-// | ThinkAdmin
-// +----------------------------------------------------------------------
-// | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
-// +----------------------------------------------------------------------
-// | 官方网站: http://demo.thinkadmin.top
-// +----------------------------------------------------------------------
-// | 开源协议 ( https://mit-license.org )
-// +----------------------------------------------------------------------
-// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
-// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
-// +----------------------------------------------------------------------
-
-namespace app\wechat\queue;
-
-use app\wechat\service\FansService;
-use app\wechat\service\WechatService;
-use think\console\Input;
-use think\console\Output;
-use think\Db;
-
-/**
- * Class Jobs
- * @package app\wechat
- */
-class WechatQueue
-{
-
-    /**
-     * 当前类名
-     * @var string
-     */
-    const URI = self::class;
-
-    /**
-     * 执行任务
-     * @param Input $input
-     * @param Output $output
-     * @param array $data
-     * @throws \WeChat\Exceptions\InvalidResponseException
-     * @throws \WeChat\Exceptions\LocalCacheException
-     * @throws \think\Exception
-     * @throws \think\exception\PDOException
-     */
-    public function execute(Input $input, Output $output, array $data = [])
-    {
-        $appid = WechatService::getAppid();
-        $wechat = WechatService::WeChatUser();
-        // 获取远程粉丝
-        list($next, $done) = ['', 0];
-        while (!is_null($next) && is_array($result = $wechat->getUserList($next)) && !empty($result['data']['openid'])) {
-            $done += $result['count'];
-            foreach (array_chunk($result['data']['openid'], 100) as $chunk) {
-                if (is_array($list = $wechat->getBatchUserInfo($chunk)) && !empty($list['user_info_list'])) {
-                    foreach ($list['user_info_list'] as $user) FansService::set($user, $appid);
-                }
-            }
-            $next = $result['total'] > $done ? $result['next_openid'] : null;
-        }
-        // 同步粉丝黑名单
-        list($next, $done) = ['', 0];
-        while (!is_null($next) && is_array($result = $wechat->getBlackList($next)) && !empty($result['data']['openid'])) {
-            $done += $result['count'];
-            foreach (array_chunk($result['data']['openid'], 100) as $chunk) {
-                Db::name('WechatFans')->where(['is_black' => '0'])->whereIn('openid', $chunk)->update(['is_black' => '1']);
-            }
-            $next = $result['total'] > $done ? $result['next_openid'] : null;
-        }
-        // 同步粉丝标签
-        if (is_array($list = WechatService::WeChatTags()->getTags()) && !empty($list['tags'])) {
-            foreach ($list['tags'] as &$tag) $tag['appid'] = $appid;
-            Db::name('WechatFansTags')->where('1=1')->delete();
-            Db::name('WechatFansTags')->insertAll($list['tags']);
-        }
-    }
-
-}

+ 0 - 62
application/wechat/service/FansService.php

@@ -1,62 +0,0 @@
-<?php
-
-// +----------------------------------------------------------------------
-// | ThinkAdmin
-// +----------------------------------------------------------------------
-// | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
-// +----------------------------------------------------------------------
-// | 官方网站: http://demo.thinkadmin.top
-// +----------------------------------------------------------------------
-// | 开源协议 ( https://mit-license.org )
-// +----------------------------------------------------------------------
-// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
-// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
-// +----------------------------------------------------------------------
-
-namespace app\wechat\service;
-
-use think\Db;
-
-/**
- * 微信粉丝信息
- * Class FansService
- * @package app\wechat\service
- */
-class FansService
-{
-
-    /**
-     * 增加或更新粉丝信息
-     * @param array $user 粉丝信息
-     * @param string $appid 微信APPID
-     * @return boolean
-     * @throws \think\Exception
-     * @throws \think\exception\PDOException
-     */
-    public static function set(array $user, $appid = '')
-    {
-        if (!empty($user['subscribe_time'])) {
-            $user['subscribe_at'] = date('Y-m-d H:i:s', $user['subscribe_time']);
-        }
-        if (isset($user['tagid_list']) && is_array($user['tagid_list'])) {
-            $user['tagid_list'] = is_array($user['tagid_list']) ? join(',', $user['tagid_list']) : '';
-        }
-        if ($appid !== '') $user['appid'] = $appid;
-        unset($user['privilege'], $user['groupid']);
-        return data_save('WechatFans', $user, 'openid');
-    }
-
-    /**
-     * 获取粉丝信息
-     * @param string $openid
-     * @return array|null
-     * @throws \think\db\exception\DataNotFoundException
-     * @throws \think\db\exception\ModelNotFoundException
-     * @throws \think\exception\DbException
-     */
-    public static function get($openid)
-    {
-        return Db::name('WechatFans')->where(['openid' => $openid])->find();
-    }
-
-}

+ 0 - 88
application/wechat/service/MediaService.php

@@ -1,88 +0,0 @@
-<?php
-
-// +----------------------------------------------------------------------
-// | ThinkAdmin
-// +----------------------------------------------------------------------
-// | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
-// +----------------------------------------------------------------------
-// | 官方网站: http://demo.thinkadmin.top
-// +----------------------------------------------------------------------
-// | 开源协议 ( https://mit-license.org )
-// +----------------------------------------------------------------------
-// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
-// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
-// +----------------------------------------------------------------------
-
-namespace app\wechat\service;
-
-use library\File;
-use think\Db;
-use WeChat\Contracts\MyCurlFile;
-
-/**
- * 微信素材管理
- * Class MediaService
- * @package app\wechat\service
- */
-class MediaService
-{
-    /**
-     * 通过图文ID读取图文信息
-     * @param integer $id 本地图文ID
-     * @param array $where 额外的查询条件
-     * @return array
-     * @throws \think\db\exception\DataNotFoundException
-     * @throws \think\db\exception\ModelNotFoundException
-     * @throws \think\exception\DbException
-     */
-    public static function news($id, $where = [])
-    {
-        $data = Db::name('WechatNews')->where(['id' => $id])->where($where)->find();
-        if (empty($data)) return [];
-        list($data['articles'], $articleIds) = [[], explode(',', $data['article_id'])];
-        $articles = Db::name('WechatNewsArticle')->whereIn('id', $articleIds)->select();
-        foreach ($articleIds as $article_id) foreach ($articles as $article) {
-            if (intval($article['id']) === intval($article_id)) array_push($data['articles'], $article);
-            unset($article['create_by'], $article['create_at']);
-        }
-        return $data;
-    }
-
-    /**
-     * 上传图片永久素材,返回素材media_id
-     * @param string $url 文件URL地址
-     * @param string $type 文件类型
-     * @param array $videoInfo 视频信息
-     * @return string|null
-     * @throws \WeChat\Exceptions\InvalidResponseException
-     * @throws \WeChat\Exceptions\LocalCacheException
-     * @throws \think\Exception
-     * @throws \think\exception\PDOException
-     */
-    public static function upload($url, $type = 'image', $videoInfo = [])
-    {
-        $where = ['md5' => md5($url), 'appid' => WechatService::getAppid()];
-        if (($mediaId = Db::name('WechatMedia')->where($where)->value('media_id'))) return $mediaId;
-        $result = WechatService::WeChatMedia()->addMaterial(self::getServerPath($url), $type, $videoInfo);
-        data_save('WechatMedia', [
-            'local_url' => $url, 'md5' => $where['md5'], 'appid' => WechatService::getAppid(), 'type' => $type,
-            'media_url' => isset($result['url']) ? $result['url'] : '', 'media_id' => $result['media_id'],
-        ], 'type', $where);
-        return $result['media_id'];
-    }
-
-    /**
-     * 文件位置处理
-     * @param string $local
-     * @return string
-     * @throws \WeChat\Exceptions\LocalCacheException
-     */
-    private static function getServerPath($local)
-    {
-        if (file_exists($local)) {
-            return new MyCurlFile($local);
-        } else {
-            return new MyCurlFile(File::down($local)['file']);
-        }
-    }
-}

+ 0 - 244
application/wechat/service/WechatService.php

@@ -1,244 +0,0 @@
-<?php
-
-// +----------------------------------------------------------------------
-// | ThinkAdmin
-// +----------------------------------------------------------------------
-// | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
-// +----------------------------------------------------------------------
-// | 官方网站: http://demo.thinkadmin.top
-// +----------------------------------------------------------------------
-// | 开源协议 ( https://mit-license.org )
-// +----------------------------------------------------------------------
-// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
-// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
-// +----------------------------------------------------------------------
-
-namespace app\wechat\service;
-
-use library\tools\JsonRpcClient;
-
-/**
- * 微信处理管理
- * Class WechatService
- * @package app\wechat\service
- *
- * ----- WeOpen for Open -----
- * @method \WeOpen\Login login() static 第三方微信登录
- * @method \WeOpen\Service service() static 第三方服务
- *
- * ----- WeMini for Open -----
- * @method \WeMini\Code WeMiniCode() static 小程序代码管理
- * @method \WeMini\User WeMiniUser() static 小程序帐号管理
- * @method \WeMini\Basic WeMiniBasic() static 小程序基础信息
- * @method \WeMini\Domain WeMiniDomain() static 小程序域名管理
- * @method \WeMini\Tester WeMiniTester() static 小程序成员管理
- * @method \WeMini\Account WeMiniAccount() static 小程序账号管理
- *
- * ----- ThinkService -----
- * @method mixed wechat() static 第三方微信工具
- */
-class WechatService extends \We
-{
-
-    /**
-     * 获取微信支付配置
-     * @param array|null $options
-     * @return array
-     * @throws \think\Exception
-     * @throws \think\exception\PDOException
-     */
-    public static function config($options = null)
-    {
-        if (empty($options)) $options = [
-            // 微信功能必需参数
-            'appid'          => self::getAppid(),
-            'token'          => sysconf('wechat_token'),
-            'appsecret'      => sysconf('wechat_appsecret'),
-            'encodingaeskey' => sysconf('wechat_encodingaeskey'),
-            // 微信支付必要参数
-            'mch_id'         => sysconf('wechat_mch_id'),
-            'mch_key'        => sysconf('wechat_mch_key'),
-            'cache_path'     => env('runtime_path') . 'wechat' . DIRECTORY_SEPARATOR,
-        ];
-        if (sysconf('wechat_mch_ssl_type') === 'p12') {
-            $options['ssl_p12'] = self::_parseCertPath(sysconf('wechat_mch_ssl_p12'));
-        } else {
-            $options['ssl_key'] = self::_parseCertPath(sysconf('wechat_mch_ssl_key'));
-            $options['ssl_cer'] = self::_parseCertPath(sysconf('wechat_mch_ssl_cer'));
-        }
-        return parent::config($options);
-    }
-
-    /**
-     * 解析证书路径
-     * @param string $path
-     * @return mixed
-     * @throws \think\Exception
-     */
-    private static function _parseCertPath($path)
-    {
-        if (preg_match('|^[a-z0-9]{16,16}\/[a-z0-9]{16,16}\.|i', $path)) {
-            return \library\File::instance('local')->path($path, true);
-        }
-        return $path;
-    }
-
-    /**
-     * 静态魔术加载方法
-     * @param string $name 静态类名
-     * @param array $arguments 参数集合
-     * @return mixed
-     * @throws \think\Exception
-     * @throws \think\exception\PDOException
-     */
-    public static function __callStatic($name, $arguments)
-    {
-        $config = [];
-        if (is_array($arguments) && count($arguments) > 0) {
-            $option = array_shift($arguments);
-            $config = is_array($option) ? $option : self::config();
-        }
-        if (in_array($name, ['wechat'])) {
-            return self::instance(trim($name, '_'), 'WeChat', $config);
-        } elseif (substr($name, 0, 6) === 'WeChat') {
-            return self::instance(substr($name, 6), 'WeChat', $config);
-        } elseif (substr($name, 0, 6) === 'WeMini') {
-            return self::instance(substr($name, 6), 'WeMini', $config);
-        } elseif (substr($name, 0, 5) === 'WePay') {
-            return self::instance(substr($name, 5), 'WePay', $config);
-        } elseif (substr($name, 0, 6) === 'AliPay') {
-            return self::instance(substr($name, 6), 'AliPay', $config);
-        } else {
-            throw new \think\Exception("class {$name} not found");
-        }
-    }
-
-    /**
-     * 接口对象实例化
-     * @param string $name 接口名称
-     * @param string $type 接口类型
-     * @param array $config 微信配置
-     * @return mixed
-     * @throws \think\Exception
-     * @throws \think\exception\PDOException
-     */
-    public static function instance($name, $type = 'WeChat', $config = [])
-    {
-        if (self::getType() === 'api' || in_array($type, ['WePay', 'AliPay']) || "{$type}{$name}" === 'WeChatPay') {
-            if (class_exists($class = "\\{$type}\\" . ucfirst(strtolower($name)))) {
-                return new $class(empty($config) ? self::config() : $config);
-            } else {
-                throw new \think\Exception("Class {$class} not found");
-            }
-        } else {
-            set_time_limit(3600);
-            list($appid, $appkey) = [sysconf('wechat_thr_appid'), sysconf('wechat_thr_appkey')];
-            $token = strtolower("{$name}-{$appid}-{$appkey}-{$type}");
-            if (class_exists('Yar_Client')) {
-                return new \Yar_Client(config('wechat.service_url') . "/service/api.client/yar/{$token}");
-            } else {
-                return new JsonRpcClient(config('wechat.service_url') . "/service/api.client/jsonrpc/{$token}");
-            }
-        }
-    }
-
-    /**
-     * 获取微信网页JSSDK
-     * @param string $url JS签名地址
-     * @return array
-     * @throws \WeChat\Exceptions\InvalidResponseException
-     * @throws \WeChat\Exceptions\LocalCacheException
-     * @throws \think\Exception
-     * @throws \think\exception\PDOException
-     */
-    public static function getWebJssdkSign($url = null)
-    {
-        $url = is_null($url) ? request()->url(true) : $url;
-        if (self::getType() === 'api') {
-            return self::WeChatScript()->getJsSign($url);
-        } else {
-            return self::wechat()->jsSign($url);
-        }
-    }
-
-    /**
-     * 初始化进入授权
-     * @param string $url 授权页面URL地址
-     * @param integer $isfull 授权微信模式
-     * @param boolean $isRedirect 是否进行跳转
-     * @return array
-     * @throws \WeChat\Exceptions\InvalidResponseException
-     * @throws \WeChat\Exceptions\LocalCacheException
-     * @throws \think\Exception
-     * @throws \think\exception\PDOException
-     */
-    public static function getWebOauthInfo($url, $isfull = 0, $isRedirect = true)
-    {
-        $appid = self::getAppid();
-        list($openid, $fansinfo) = [session("{$appid}_openid"), session("{$appid}_fansinfo")];
-        if ((empty($isfull) && !empty($openid)) || (!empty($isfull) && !empty($openid) && !empty($fansinfo))) {
-            empty($fansinfo) || FansService::set($fansinfo);
-            return ['openid' => $openid, 'fansinfo' => $fansinfo];
-        }
-        if (self::getType() === 'api') {
-            $wechat = self::WeChatOauth();
-            if (request()->get('state') !== $appid) {
-                $snsapi = empty($isfull) ? 'snsapi_base' : 'snsapi_userinfo';
-                $param = (strpos($url, '?') !== false ? '&' : '?') . 'rcode=' . encode($url);
-                $OauthUrl = $wechat->getOauthRedirect($url . $param, $appid, $snsapi);
-                if ($isRedirect) redirect($OauthUrl, [], 301)->send();
-                exit("window.location.href='{$OauthUrl}'");
-            }
-            if (($token = $wechat->getOauthAccessToken()) && isset($token['openid'])) {
-                session("{$appid}_openid", $openid = $token['openid']);
-                if (empty($isfull) && request()->get('rcode')) {
-                    redirect(decode(request()->get('rcode')), [], 301)->send();
-                }
-                session("{$appid}_fansinfo", $fansinfo = $wechat->getUserInfo($token['access_token'], $openid));
-                empty($fansinfo) || FansService::set($fansinfo);
-            }
-            redirect(decode(request()->get('rcode')), [], 301)->send();
-        } else {
-            $result = self::wechat()->oauth(session_id(), $url, $isfull);
-            session("{$appid}_openid", $openid = $result['openid']);
-            session("{$appid}_fansinfo", $fansinfo = $result['fans']);
-            if ((empty($isfull) && !empty($openid)) || (!empty($isfull) && !empty($openid) && !empty($fansinfo))) {
-                empty($fansinfo) || FansService::set($fansinfo);
-                return ['openid' => $openid, 'fansinfo' => $fansinfo];
-            }
-            if ($isRedirect && !empty($result['url'])) {
-                redirect($result['url'], [], 301)->send();
-            }
-            exit("window.location.href='{$result['url']}'");
-        }
-    }
-
-    /**
-     * 获取当前微信APPID
-     * @return bool|string
-     * @throws \think\Exception
-     * @throws \think\exception\PDOException
-     */
-    public static function getAppid()
-    {
-        if (self::getType() === 'api') {
-            return sysconf('wechat_appid');
-        } else {
-            return sysconf('wechat_thr_appid');
-        }
-    }
-
-    /**
-     * 获取接口授权模式
-     * @return string
-     * @throws \think\Exception
-     * @throws \think\exception\PDOException
-     */
-    public static function getType()
-    {
-        $type = strtolower(sysconf('wechat_type'));
-        if (in_array($type, ['api', 'thr'])) return $type;
-        throw new \think\Exception('请在后台配置微信对接授权模式');
-    }
-
-}

+ 0 - 28
application/wechat/sys.php

@@ -1,28 +0,0 @@
-<?php
-
-// +----------------------------------------------------------------------
-// | ThinkAdmin
-// +----------------------------------------------------------------------
-// | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
-// +----------------------------------------------------------------------
-// | 官方网站: http://demo.thinkadmin.top
-// +----------------------------------------------------------------------
-// | 开源协议 ( https://mit-license.org )
-// +----------------------------------------------------------------------
-// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
-// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
-// +----------------------------------------------------------------------
-
-use think\Console;
-use think\facade\Route;
-
-// 注册接口路由
-Route::rule('wechat/api.js', 'wechat/api.js/index');
-
-// 注册系统指令
-Console::addDefaultCommands([
-    'app\wechat\command\fans\FansAll',
-    'app\wechat\command\fans\FansTags',
-    'app\wechat\command\fans\FansList',
-    'app\wechat\command\fans\FansBlack',
-]);

+ 0 - 17
application/wechat/view/api/review/image.html

@@ -1,17 +0,0 @@
-{extend name='wechat@api/review/main'}
-
-{block name='content'}
-<div class="header"><span>{:date('H:i')}</span></div>
-<div class="container">
-    <div class="logo">A</div>
-    <div class="content">
-        <img style="max-width:100%" src="{$content|default=''}">
-    </div>
-</div>
-{/block}
-
-{block name='style'}
-<style>
-    .container .content{position:relative;border-radius:5px;border:none!important;display:inline-block;padding:0!important}
-</style>
-{/block}

+ 0 - 19
application/wechat/view/api/review/main.html

@@ -1,19 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-
-<head>
-    <meta charset="utf-8">
-    {block name='title'}{/block}
-    <meta name="renderer" content="webkit">
-    <meta name="format-detection" content="telephone=no">
-    <meta name="apple-mobile-web-app-capable" content="yes">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
-    <meta name="apple-mobile-web-app-status-bar-style" content="black">
-    <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
-    <link rel="shortcut icon" href="{:sysconf('site_icon')}">
-    <link rel="stylesheet" href="__ROOT__/static/theme/css/mobile.css">
-    {block name='style'}{/block}
-    <script src="__ROOT__/static/plugs/jquery/pace.min.js"></script>
-</head>
-<body>{block name='content'}{/block}</body>
-</html>

+ 0 - 36
application/wechat/view/api/review/music.html

@@ -1,36 +0,0 @@
-{extend name='wechat@api/review/main'}
-
-{block name='content'}
-<div class="header"><span>{:date('H:i')}</span></div>
-<div class="container">
-    <div class="logo">A</div>
-    <div class="content arrow">
-        <div style="font-size:.6rem;overflow:hidden;width:7.5rem;text-overflow:ellipsis">{$title|default=''}</div>
-        <div style="font-size:.5rem;overflow:hidden;width:7.5rem;text-overflow:ellipsis;color:#ccc">{$desc|default=''}</div>
-        <a href="javascript:void(0)" style="float:right;top:1.4rem;position:absolute;right:0.8rem;" id="audio_btn" class="icon icon-play"></a>
-        <div style="clear:both"></div>
-        <audio id="audio">
-            <source src="{$url|default=''}">
-        </audio>
-        <script>
-            var audio = document.getElementById('audio');
-            var button = document.getElementById('audio_btn');
-            setInterval(function () {
-                button.className = audio.paused ? 'icon icon-play' : 'icon icon-pause';
-            }, 500);
-            button.onclick = function () {
-                audio.paused ? audio.play() : audio.pause()
-            }
-        </script>
-    </div>
-</div>
-{/block}
-
-{block name='style'}
-<style>
-    .icon{color:#fff;font-size:1.5rem}
-    .container .content{width:58vw!important;border:none!important;background:#080!important;white-space:nowrap!important}
-    .container .content:after,.container .content:before{border-color:transparent #080 transparent transparent!important}
-    .container .content{color:#fff}
-</style>
-{/block}

+ 0 - 43
application/wechat/view/api/review/news.html

@@ -1,43 +0,0 @@
-{extend name='wechat@api/review/main'}
-
-{block name='content'}
-<div class="header"><span>{:date('H:i')}</span></div>
-<div class="container">
-    {notempty name='news.articles'}
-    {foreach $news.articles as $k => $v}
-    {if $k < 1}
-    <a href="{:url('@wechat/api.review/view/'.$v.id)}" style='background-image:url("{$v.local_url}")'>
-        {if $v.title}<span>{$v.title}</span>{/if}
-    </a>
-    <div class="hr-line-dashed"></div>
-    {else}
-    <a href="{:url('@wechat/api.review/view/'.$v.id)}" class='other'>
-        <span>{$v.title}</span>
-        <span style='background-image:url("{$v.local_url}");'></span>
-    </a>
-    <div class="hr-line-dashed"></div>
-    {/if}
-    {/foreach}
-    {else}
-    <div class="info"><h3>404</h3> 访问资源不存在哦!</div>
-    {/notempty}
-</div>
-{/block}
-
-{block name='style'}
-<style>
-    .header{margin-top:15px;text-align:center}
-    .header span{padding:5px;font-size:8px;background:#ccc;border-radius:10%}
-    .container{width:90%;display:block;margin:5vw auto;position:relative;box-shadow:0 0 3px #ccc}
-    .container a{height:50vw;display:block;position:relative;background:no-repeat center center;background-size:cover}
-    .container a span{left:0;right:0;bottom:0;color:#fff;padding:2vw;font-size:2vw;max-height:5em;overflow:hidden;position:absolute;line-height:1.5em;margin:0 -1px 0 -1px;text-overflow:ellipsis;background:rgba(0,0,0,.7)}
-    .container a.other{height:15vw;display:block;padding:1vw 2vw;position:relative}
-    .container a.other span:first-child{color:#333;float:left;width:60vw;height:10vw;overflow:hidden;max-height:none;position:relative;background:0 0;text-overflow:ellipsis}
-    .container a.other span:last-child{width:16vw;height:10vw;float:right;max-height:none;position:relative;background-size:cover;background-position:center center}
-    .info h3{color:#333;font-size:5vw;margin-bottom:1rem}
-    .info{color:#666;padding:2rem;font-size:.5rem;text-align:center;letter-spacing:1px}
-    .hr-line-dashed{color:#fff;height:1px;margin:3px 0;border-top:1px dashed #e7eaec}
-    .hr-line-dashed:last-child{display:none}
-</style>
-
-{/block}

+ 0 - 9
application/wechat/view/api/review/text.html

@@ -1,9 +0,0 @@
-{extend name='wechat@api/review/main'}
-
-{block name='content'}
-<div class="header"><span>{:date('H:i')}</span></div>
-<div class="container">
-    <div class="logo">A</div>
-    <div class="content arrow">{$content|default=''}</div>
-</div>
-{/block}

+ 0 - 21
application/wechat/view/api/review/video.html

@@ -1,21 +0,0 @@
-{extend name='wechat@api/review/main'}
-
-{block name='content'}
-<div class="header"><span>{:date('H:i')}</span></div>
-<div class="container">
-    <div class="content">
-        <div>{$title|default=''}</div>
-        <div class="date">{:date('m月d日')}</div>
-        <video src="{$url|default=''}" width="100%" controls preload></video>
-    </div>
-</div>
-{/block}
-
-{block name='style'}
-<style>
-    .container .content{left:0!important;border:1px solid #ccc;padding:13px;position:relative;max-width:initial!important;background:#fff;line-height:1.5em;border-radius:5px}
-    .container .content div{width:100%;overflow:hidden;font-size:.8rem;line-height:1.5em;display:inline-block;text-overflow:ellipsis}
-    .container .content .date{color:#999;margin:10px 0;font-size:12px;line-height:1em}
-</style>
-
-{/block}

+ 0 - 33
application/wechat/view/api/review/view.html

@@ -1,33 +0,0 @@
-{extend name='wechat@api/review/main'}
-
-{block name='title'}{/block}
-
-{block name='content'}
-<div class="container">
-    {notempty name='info'}
-    <h2>{$info.title}</h2>
-    <h3>
-        <span style="color:#666">{$info.author}</span>
-        <span style="margin-left:0.4rem">{:date('Y年m月d日',strtotime($info.create_at))}</span>
-    </h3>
-    {if $info.show_cover_pic and $info.local_url}<img src="{$info.local_url}" style="width:100%">{/if}
-    <div class='content-text'>{$info.content|raw}</div>
-    <div style="font-size:0.6rem;color:#999;line-height:1rem;text-align:right;margin-top:0.5rem">阅读 {$info.read_num}</div>
-    {else}
-    <div class="info"><h3>404</h3> 访问资源不存在哦!</div>
-    {/notempty}
-</div>
-{/block}
-
-{block name='style'}
-
-
-<style>
-    .container{width:90%;color:#333;display:block;margin:.2rem auto;position:relative}
-    .container h2{font-size:.8rem;font-weight:400;line-height:1.5rem}
-    .container h3{color:#999;font-size:.6rem;font-weight:400;line-height:1.5rem;margin-bottom:.3rem}
-    .container .content-text{font-size:.7rem;line-height:1.3rem}
-    .container .content-text img{max-width:100%;height:auto!important}
-</style>
-
-{/block}

+ 0 - 30
application/wechat/view/api/review/voice.html

@@ -1,30 +0,0 @@
-{extend name='wechat@api/review/main'}
-
-{block name='content'}
-<div class="header"><span>{:date('H:i')}</span></div>
-<div class="container">
-    <div class="logo">A</div>
-    <div class="content arrow">
-        <a class="icon icon-volume left-text"></a>
-        <a href="javascript:void(0)" id="audio_btn" class="icon icon-pause"></a>
-        <audio id="audio"><source src="{$url|default=''}"></audio>
-        <script>
-            var audio = document.getElementById('audio');
-            var button = document.getElementById('audio_btn');
-            setInterval(function () {
-                button.className = audio.paused ? 'icon icon-play' : 'icon icon-pause';
-            }, 500);
-            button.onclick = function () {
-                audio.paused ? audio.play() : audio.pause()
-            }
-        </script>
-    </div>
-</div>
-{/block}
-
-{block name='style'}
-<style>
-    .left-text{margin:0!important;color:#ccc!important}
-    .icon{color:#666;font-size:1.5rem;margin-left:2.5rem;line-height:1.5rem}
-</style>
-{/block}

+ 0 - 42
application/wechat/view/api/tools/jssdk.html

@@ -1,42 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-    <title>JSSDK 功能测试</title>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
-    <link rel="stylesheet" href="__ROOT__/static/theme/css/mobile.css">
-</head>
-
-<body>
-
-<header style="padding:35px 0">
-    <h1 style="text-align:center;font-size:34px;color:#3cc51f;font-weight:400;">JSSDK 功能测试</h1>
-</header>
-
-<div style="padding:15px;text-align:center">
-    <button type="button" style="padding:5px" id='show-alert'>调起摄像头扫码</button>
-</div>
-
-<script src="//res.wx.qq.com/open/js/jweixin-1.4.0.js"></script>
-<script>
-    wx.error(function (err) {
-        alert(err.errMsg || '配置出错');
-    });
-    wx.config(JSON.parse('{$options|json_encode|raw}'));
-    wx.ready(function () {
-        alert('- 初始化成功 -');
-        document.getElementById('show-alert').onclick = function () {
-            wx.scanQRCode({
-                needResult: 1,
-                scanType: ["qrCode", "barCode"],
-                success: function (res) {
-                    alert(res.resultStr);
-                }
-            });
-        }
-    });
-</script>
-</body>
-
-</html>

+ 0 - 64
application/wechat/view/api/tools/oauth.html

@@ -1,64 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
-    <meta charset="UTF-8">
-    <title>微信网页授权测试</title>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
-    <link rel="stylesheet" href="__ROOT__/static/theme/css/mobile.css">
-    <script src="//res.wx.qq.com/open/js/jweixin-1.2.0.js"></script>
-</head>
-
-<body>
-
-<!--{if empty($fans.fansinfo)}-->
-<fieldset style="width:80%;margin:1rem auto">
-    <legend style="padding:0.2rem 0.3rem;font-size:0.9rem;color:#666">操作失败</legend>
-    <div style="padding-top:0.4rem">
-        <p style="font-size:0.6rem;margin-bottom:0.8rem">通过网页授权获取用户资料失败,请检查权限再试!</p>
-        <p style="font-size:0.6rem;margin-bottom:0.8rem">
-            <a href="javascript:void(0);" onclick="location.reload()">重新获取(刷新)</a>
-        </p>
-    </div>
-</fieldset>
-<!--{else}-->
-<div class="header" style="padding:1rem 0 0.6rem 0;text-align:center">
-    <img style='width:132px;height:132px;border-radius:50%;border:0.6rem solid rgba(150,40,40,0.6)' src="{$fans.fansinfo.headimgurl}">
-    <h1>{$fans.fansinfo.nickname}</h1>
-</div>
-
-<fieldset style="width:80%;margin:0.6rem auto">
-    <legend style="padding:0.2rem 0.3rem;font-size:0.9rem;color:#666">用户标识</legend>
-    <div style="padding-top:0.4rem">
-
-        <div style="font-size:0.8rem;margin-bottom:0.3rem;color:#999">OPENID</div>
-        <p style="font-size:0.6rem;margin-bottom:0.8rem">{$fans.fansinfo.openid}</p>
-
-        <div style="font-size:0.8rem;margin-bottom:0.3rem;color:#999">UNIONID</div>
-        <p style="font-size:0.6rem;margin-bottom:0.8rem">{$fans.fansinfo.unionid|default='未获取到'}</p>
-
-    </div>
-</fieldset>
-
-<fieldset style="width:80%;margin:0.6rem auto">
-    <legend style="padding:0.2rem 0.3rem;font-size:0.9rem;color:#666">详细资料</legend>
-    <div style="padding-top:0.4rem">
-        <div style="font-size:0.8rem;margin-bottom:0.3rem;color:#999">性别</div>
-        <p style="font-size:0.6rem;margin-bottom:0.8rem">{:[1=>'男',2=>'女'][$fans.fansinfo.sex]??'未知'}</p>
-
-        <div style="font-size:0.8rem;margin-bottom:0.3rem;color:#999">系统语言</div>
-        <p style="font-size:0.6rem;margin-bottom:0.8rem">{$fans.fansinfo.language}</p>
-
-        <div style="font-size:0.8rem;margin-bottom:0.3rem;color:#999">所在区域</div>
-        <p style="font-size:0.6rem;margin-bottom:0.8rem">{$fans.fansinfo.country} - {$fans.fansinfo.province} - {$fans.fansinfo.city}</p>
-
-        {if isset($fans.fansinfo.privilege.0)}
-        <div style="font-size:0.8rem;margin-bottom:0.3rem;color:#999">设备网络</div>
-        <p style="font-size:0.6rem;margin-bottom:0.8rem">{$fans.fansinfo.privilege.0|default='未获取到网络信息'}</p>
-        {/if}
-    </div>
-</fieldset>
-
-<!--{/if}-->
-</body>

+ 0 - 43
application/wechat/view/config/options.html

@@ -1,43 +0,0 @@
-{extend name="admin@main"}
-
-{block name="content"}
-
-<div class="layui-card layui-form">
-    <div class="layui-card-body think-box-shadow padding-bottom-5">
-        <div class="layui-form-item">
-            <label class="layui-form-label">Auth<br><span class="nowrap color-desc">授权方式</span></label>
-            <div class="layui-input-block">
-                {foreach ['api'=>'公众号平台API模式','thr'=>'第三方平台授权模式','test'=>'接口功能测试'] as $k=>$v}
-                <input type="radio" data-wechat-type="{$k}" name="wechat_type" value="{$k}" title="{$v}" lay-filter="wechat_type">
-                {/foreach}
-                <p class="help-block">请选择微信对接方式,其中第三方平台授权需要微信开放平台支持,同时需要搭建 SERVICE 服务!</p>
-            </div>
-        </div>
-    </div>
-</div>
-
-<div class="think-box-shadow ">
-    <div class="layui-anim layui-anim-upbit" data-type="api">{include file='config/options_api'}</div>
-    <div class="layui-anim layui-anim-upbit" data-type="thr">{include file='config/options_thr'}</div>
-    <div class="layui-anim layui-anim-upbit" data-type="test">{include file='config/options_help'}</div>
-</div>
-
-{/block}
-
-{block name='script'}
-<script>
-    $(function () {
-        apply('{:sysconf("wechat_type")}');
-        window.form.render();
-        window.form.on('radio(wechat_type)', function (data) {
-            apply(data.value);
-        });
-
-        function apply(value) {
-            this.$active = $("[data-wechat-type='" + value + "']").trigger('click');
-            if (this.$active.size() < 1) $("[data-wechat-type]:first").trigger('click');
-            $('[data-type="' + value + '"]').show().siblings('[data-type]').hide();
-        }
-    });
-</script>
-{/block}

+ 0 - 65
application/wechat/view/config/options_api.html

@@ -1,65 +0,0 @@
-<form onsubmit="return false;" data-auto="true" method="post" class='layui-form layui-card' autocomplete="off">
-
-    <div class="layui-card-body">
-
-        <div class="color-blue padding-left-40 padding-bottom-20">
-            使用API直接对接时,需要在微信公众号平台配置授权IP及网页授权域名,另外再将获取到的参数填写到下面!
-        </div>
-
-        <div class="layui-form-item">
-            <label class="layui-form-label">Token<br><span class="nowrap color-desc">接口认证令牌</span></label>
-            <div class="layui-input-block">
-                <input name="wechat_token" required placeholder="请输入消息推送对接认证Token(必填)" value="{:sysconf('wechat_token')}" class="layui-input">
-                <p class="help-block">公众号平台与系统对接认证Token,请优先填写此参数并保存,然后再在微信公众号平台操作对接。</p>
-            </div>
-        </div>
-
-        <div class="layui-form-item">
-            <label class="layui-form-label">AppId<br><span class="nowrap color-desc">公众号APPID</span></label>
-            <div class="layui-input-block">
-                <input name="wechat_appid" placeholder="请输入以wx开头的18位公众号APPID(必填)" pattern="^wx[0-9a-z]{16}$" maxlength="18" required="required" value="{:sysconf('wechat_appid')}" class="layui-input">
-                <p class="help-block">公众号APPID是所有接口必要参数,可以在公众号平台 [ 开发 > 基本配置 ] 页面获取。</p>
-            </div>
-        </div>
-
-        <div class="layui-form-item">
-            <label class="layui-form-label">AppSecret<br><span class="nowrap color-desc">公众号Secret</span></label>
-            <div class="layui-input-block">
-                <input name="wechat_appsecret" required placeholder="请输入32位公众号AppSecret(必填)" value="{:sysconf('wechat_appsecret')}" maxlength="32" pattern="^[0-9a-z]{32}$" class="layui-input">
-                <p class="help-block">公众号应用密钥是所有接口必要参数,可以在公众号平台 [ 开发 > 基本配置 ] 页面授权后获取。</p>
-            </div>
-        </div>
-
-        <div class="layui-form-item">
-            <label class="layui-form-label">EnAesKey<br><span class="nowrap color-desc">消息加密密钥</span></label>
-            <div class="layui-input-block">
-                <input name="wechat_encodingaeskey" placeholder="请输入43位消息公众号加密密钥(可选)" value="{:sysconf('wechat_encodingaeskey')}" maxlength="43" pattern="^.{43}$" class="layui-input">
-                <p class="help-block">若开启了消息加密时必需填写,消息加密密钥必需填写并保持与公众号平台一致。</p>
-            </div>
-        </div>
-
-        <div class="layui-form-item">
-            <label class="layui-form-label margin-top-15">PushApiUrl<br><span class="nowrap color-desc">消息推送接收</span></label>
-            <div class="layui-input-block">
-                <div class="relative">
-                    <input name="wechat_push_url" value="服务器授权IP:{$geoip}" readonly class="layui-input layui-bg-gray border-0">
-                    <a data-copy="{$geoip}" class="absolute layui-btn layui-bg-gray" style="top:0;right:0;background:none!important"><i class="fa fa-copy"></i></a>
-                </div>
-                <div class="relative margin-top-5">
-                    <input name="wechat_push_url" value="消息推送地址:{$thrNotify}" readonly class="layui-input layui-bg-gray border-0">
-                    <a data-copy="{$thrNotify}" class="absolute layui-btn layui-bg-gray" style="top:0;right:0;background:none!important"><i class="fa fa-copy"></i></a>
-                </div>
-                <p class="help-block">公众号服务平台消息推送接口及服务器授权IP地址,需在公众号接口开发处配置。</p>
-            </div>
-        </div>
-
-        <div class="hr-line-dashed"></div>
-        <input type="hidden" name="wechat_type" value="api">
-
-        <div class="layui-form-item text-center">
-            <button class="layui-btn" type="submit">保存配置</button>
-        </div>
-
-    </div>
-
-</form>

+ 0 - 42
application/wechat/view/config/options_help.html

@@ -1,42 +0,0 @@
-<form onsubmit="return false;" data-auto="true" method="post" class='layui-form layui-card padding-bottom-20' autocomplete="off">
-
-    <div class="layui-card-body" style="padding-left:40px">
-        <div class="layui-elem-quote border-0">
-            <p class="font-s14 margin-bottom-10 color-text">
-                <strong>第三方平台授权</strong><br>
-                JSSDK签名测试需要在开放平台配置当前的授权域名:<a data-copy="{:request()->host()}">{:request()->host()}</a>
-            </p>
-            <p class="font-s14 margin-bottom-10 color-text">
-                <strong>普通接口强制绑定</strong><br>
-                网页授权及JSSDK签名都需要在公众号平台配置授权域名:<a data-copy="{:request()->host()}">{:request()->host()}</a>
-            </p>
-            <p class="font-s14 color-text">
-                <strong>支付测试配置</strong><br>
-                JSAPI支付测试需要在微信商户平台配置支付目录:<a data-copy="{:url('@wechat/api.tools/','','',true)}">{:url('@wechat/api.tools/','','',true)}</a><br>
-                扫码支付①需要在微信商户平台配置支付通知地址:<a data-copy="{:url('@wechat/api.tools/scanOneNotify','','',true)}">{:url('@wechat/api.tools/scanOneNotify','','',true)}</a>
-            </p>
-        </div>
-        <div class="layui-clear">
-            <div class="pull-left padding-right-15 notselect">
-                <img class="notselect" data-tips-image src="{:url('@wechat/api.tools/oauth_qrc')}" style="width:120px">
-                <p class="text-center">网页授权</p>
-            </div>
-            <div class="pull-left padding-left-0 padding-right-15">
-                <img class="notselect" data-tips-image src="{:url('@wechat/api.tools/jssdk_qrc')}" style="width:120px;">
-                <p class="text-center">JSSDK签名</p>
-            </div>
-            <div class="pull-left padding-left-0 padding-right-15">
-                <img onerror="this.src='__ROOT__/static/theme/img/wechat/qrc_pay_error.jpg'" class="notselect" data-tips-image src="{:url('@wechat/api.tools/jsapiqrc')}" style="width:120px;">
-                <p class="text-center">JSAPI支付</p>
-            </div>
-            <div class="pull-left padding-left-0 padding-right-15">
-                <img onerror="this.src='__ROOT__/static/theme/img/wechat/qrc_pay_error.jpg'" class="notselect" data-tips-image src="{:url('@wechat/api.tools/scanoneqrc')}" style="width:120px;">
-                <p class="text-center">扫码支付①</p>
-            </div>
-            <div class="pull-left padding-left-0">
-                <img onerror="this.src='__ROOT__/static/theme/img/wechat/qrc_pay_error.jpg'" class="notselect" data-tips-image src="{:url('@wechat/api.tools/scanqrc')}" style="width:120px;">
-                <p class="text-center">扫码支付②</p>
-            </div>
-        </div>
-    </div>
-</form>

+ 0 - 68
application/wechat/view/config/options_thr.html

@@ -1,68 +0,0 @@
-<form onsubmit="return false" data-auto="true" method="post" class='layui-form layui-card' autocomplete="off">
-
-    <div class="layui-card-body">
-
-        <div class="color-blue padding-left-40 padding-bottom-20">
-            使用第三方授权时,需要单独搭建 SERVICE 服务并将域名配置到 WECHAT 文件,接口需要使用 Yar 或 JsonRpc 通信!
-        </div>
-
-        <!--{if !empty($wechat)}-->
-        <div class="layui-form-item">
-            <label class="layui-form-label">QRCode<br><span class="nowrap color-desc">公众号二维码</span></label>
-            <div class="layui-input-block">
-                <div class="pull-left notselect"><img data-tips-image src="{$wechat.qrcode_url|local_image}" style="width:100px;margin-left:-7px"></div>
-                <div class="pull-left padding-left-10">
-                    <p class="nowrap">微信昵称:{$wechat.nick_name|default=''}</p>
-                    <p class="nowrap">微信类型:{if $wechat.service_type eq 2}服务号{elseif $wechat.service_type eq 3}小程序{else}订阅号{/if} / {$wechat.verify_type_info == -1 ? '未认证' : '<span class="color-green">已认证</span>'}</p>
-                    <p class="nowrap">注册公司:{$wechat.principal_name}</p>
-                    <p class="nowrap">授权绑定:{$wechat.create_at|format_datetime}</p>
-                </div>
-            </div>
-        </div>
-        <!--{/if}-->
-
-        <div class="layui-form-item">
-            <label class="layui-form-label">Authorize<br><span class="nowrap color-desc">公众号授权绑定</span></label>
-            <div class="layui-input-block">
-                <button type="button" data-href="{$authurl|default=''}" class="layui-btn layui-btn-primary">重新绑定公众号</button>
-                <p class="help-block">点击连接将跳转到微信第三方平台进行公众号授权。</p>
-            </div>
-        </div>
-
-        <div class="layui-form-item">
-            <label class="layui-form-label">AppId<br><span class="nowrap color-desc">公众号APPID</span></label>
-            <div class="layui-input-block">
-                <input name="wechat_thr_appid" placeholder="请输入以wx开头的18位公众号APPID(必填)" pattern="^wx[0-9a-z]{16}$" maxlength="18" required value="{:sysconf('wechat_thr_appid')}" class="layui-input">
-                <p class="help-block">众号 appid 通过微信第三方授权自动获取. 若没有值请进行微信第三方授权。</p>
-            </div>
-        </div>
-
-        <div class="layui-form-item">
-            <label class="layui-form-label">AppKey<br><span class="nowrap color-desc">第三方服务密钥</span></label>
-            <div class="layui-input-block">
-                <input name="wechat_thr_appkey" required placeholder="请输入32位公众号AppSecret(必填)" value="{:sysconf('wechat_thr_appkey')}" maxlength="32" pattern="^[0-9a-z]{32}$" class="layui-input">
-                <p class="help-block">公众号服务平台接口密钥, 通过微信第三方授权自动获取, 若没有值请进行微信第三方授权。</p>
-            </div>
-        </div>
-
-        <div class="layui-form-item">
-            <label class="layui-form-label">AppPushUri<br><span class="nowrap color-desc">第三方推送接口</span></label>
-            <div class="layui-input-block">
-                <div class="relative margin-top-5">
-                    <input name="wechat_thr_appurl" value="消息推送地址:{$thrNotify}" readonly class="layui-input layui-bg-gray border-0">
-                    <a data-copy="{$thrNotify}" class="absolute layui-btn layui-bg-gray" style="top:0;right:0;background:none!important"><i class="fa fa-copy"></i></a>
-                </div>
-                <p class="help-block">公众号服务平台接口通知URL, 公众号消息接收与回复等。</p>
-            </div>
-        </div>
-
-        <div class="hr-line-dashed"></div>
-        <input type="hidden" name="wechat_type" value="thr">
-
-        <div class="layui-form-item text-center">
-            <button class="layui-btn" type="submit">保存配置</button>
-        </div>
-
-    </div>
-
-</form>

+ 0 - 84
application/wechat/view/config/payment.html

@@ -1,84 +0,0 @@
-{extend name="admin@main"}
-
-{block name="content"}
-<form onsubmit="return false;" data-auto="true" method="post" class='layui-form layui-card ' autocomplete="off" lay-filter="payment">
-
-    <div class="layui-card-body think-box-shadow">
-        <div class="padding-left-40 padding-right-30">
-            <label class="layui-form-item margin-top-20 block relative">
-                <span class="color-green margin-right-10 font-w7">微信商户ID</span><span class="nowrap color-desc">MCH_ID</span>
-                <input name="wechat_mch_id" required placeholder="请输入微信商户ID(必填)" value="{:sysconf('wechat_mch_id')}" class="layui-input">
-                <p class="help-block">微信商户ID,需要在微信商户平台获取,MCH_ID 与 APPID 匹配</p>
-            </label>
-            <label class="layui-form-item margin-top-20 block relative">
-                <span class="color-green margin-right-10 font-w7">微信商户KEY</span><span class="nowrap color-desc">MCH_KEY</span>
-                <input name="wechat_mch_key" placeholder="请输入微信商户密钥(必填)" maxlength="32" required value="{:sysconf('wechat_mch_key')}" class="layui-input">
-                <p class="help-block">微信商户密钥,需要在微信商户平台操作设置密码并获取密钥</p>
-            </label>
-        </div>
-        <div class="hr-line-dashed"></div>
-        <div class="padding-left-40 padding-right-30">
-            <span class="color-green margin-right-10 font-w7">微信商户证书</span><span class="nowrap color-desc">MCH_CERT</span>
-            <div class="">
-                {foreach ['p12'=>'上传 P12 证书','pem'=>'上传 PEM 证书'] as $k=>$v}
-                <input type="radio" data-pem-type="{$k}" name="wechat_mch_ssl_type" value="{$k}" title="{$v}" lay-filter="data-mch-type">
-                {/foreach}
-                <p class="help-block">请选择需要上传证书类型,P12 和 PEM 二选一,证书需要从微信商户平台获取</p>
-                <div data-mch-type="p12" class="layui-tab-item padding-top-15 padding-bottom-15">
-                    <input name="wechat_mch_ssl_p12" value="{$wechat_mch_ssl_p12|default=''}" type="hidden">
-                    <button data-file="btn" data-uptype="local" data-safe="true" data-type="p12" data-field="wechat_mch_ssl_p12" type="button" class="layui-btn layui-btn-primary">
-                        <i class="layui-icon layui-icon-vercode font-s14"></i> 上传 P12 证书
-                    </button>
-                    <p class="help-block margin-top-10">微信商户支付 P12 证书,实现订单退款、打款、发红包等支出功能都使用证书</p>
-                </div>
-                <div data-mch-type="pem" class="layui-tab-item padding-top-15 padding-bottom-15">
-                    <input name="wechat_mch_ssl_key" value="{$wechat_mch_ssl_key|default=''}" type="hidden">
-                    <button data-file="btn" data-uptype="local" data-safe="true" data-type="pem" data-field="wechat_mch_ssl_key" type="button" class="layui-btn layui-btn-primary margin-right-5">
-                        <i class="layui-icon layui-icon-vercode font-s14"></i> 上传 KEY 证书
-                    </button>
-                    <input name="wechat_mch_ssl_cer" value="{$wechat_mch_ssl_cer|default=''}" type="hidden">
-                    <button data-file="btn" data-uptype="local" data-safe="true" data-type="pem" data-field="wechat_mch_ssl_cer" type="button" class="layui-btn layui-btn-primary">
-                        <i class="layui-icon layui-icon-vercode font-s14"></i> 上传CERT证书
-                    </button>
-                    <p class="help-block margin-top-10">微信商户支付 PEM 双向证书,实现订单退款、打款、发红包等支出功能都使用证书</p>
-                </div>
-            </div>
-        </div>
-        <div class="hr-line-dashed"></div>
-        <div class="layui-form-item text-center">
-            <button class="layui-btn" type="submit">保存配置</button>
-        </div>
-    </div>
-
-</form>
-{/block}
-
-{block name="script"}
-<script>
-    (new function () {
-        form.render();
-        this.type = "{:sysconf('wechat_mch_ssl_type')}" || 'p12';
-        form.val('payment', {wechat_mch_ssl_type: this.type});
-        form.on('radio(data-mch-type)', function (data) {
-            apply(data.value);
-        });
-        apply.call(this, this.type);
-
-        function apply(type) {
-            $('[data-mch-type="' + type + '"]').show().siblings('[data-mch-type]').hide();
-        };
-        // 证书文件上传控制
-        this.types = ['wechat_mch_ssl_p12', 'wechat_mch_ssl_key', 'wechat_mch_ssl_cer'];
-        for (var i in this.types) $('input[name="' + this.types[i] + '"]').on('change', function () {
-            var input = this, $button = $(this).next('button');
-            setTimeout(function () {
-                if (typeof input.value === 'string' && input.value.length > 5) {
-                    $button.find('i').addClass('color-green layui-icon-vercode').removeClass('layui-icon-upload-drag');
-                } else {
-                    $button.find('i').removeClass('color-green layui-icon-vercode').addClass('layui-icon-upload-drag');
-                }
-            }, 300);
-        }).trigger('change');
-    });
-</script>
-{/block}

+ 0 - 98
application/wechat/view/fans/index.html

@@ -1,98 +0,0 @@
-{extend name='admin@main'}
-
-{block name="button"}
-
-{if auth("setblack")}
-<button data-action='{:url("setblack")}' data-rule="openid#{key}" data-csrf="{:systoken('setblack')}" class='layui-btn layui-btn-sm layui-btn-primary'>批量拉黑</button>
-{/if}
-
-{if auth("delblack")}
-<button data-action='{:url("delblack")}' data-rule="openid#{key}" data-csrf="{:systoken('delblack')}" class='layui-btn layui-btn-sm layui-btn-primary'>取消拉黑</button>
-{/if}
-
-{if auth("sync")}
-<button data-load='{:url("sync")}' class='layui-btn layui-btn-sm layui-btn-primary'>同步粉丝</button>
-{/if}
-
-{/block}
-
-{block name="content"}
-<div class="think-box-shadow">
-    {include file='fans/index_search'}
-    <table class="layui-table margin-top-10" lay-skin="line">
-        {notempty name='list'}
-        <thead>
-        <tr>
-            <th class='list-table-check-td think-checkbox'><input data-auto-none data-check-target='.list-check-box' type='checkbox'></th>
-            <th width="180px" class='text-left nowrap'>微信昵称</th>
-            <th width="180px" class="text-left nowrap">粉丝标签</th>
-            <th width="150px" class='text-left nowrap'>性别语言</th>
-            <th width="180px" class='text-left nowrap'>关注时间</th>
-            <th width="80px"></th>
-            <th></th>
-        </tr>
-        </thead>
-        {/notempty}
-        <tbody>
-        {foreach $list as $key=>$vo}
-        <tr>
-            <td class='list-table-check-td think-checkbox'>
-                <input class="list-check-box" value='{$vo.openid}' type='checkbox'>
-            </td>
-            <td class='text-left nowrap relative layui-elip'>
-                <img src="{$vo.headimgurl|default=''}" onerror="$(this).remove()" data-tips-image class="inline-block" style="width:40px;height:40px;vertical-align:top;margin-right:5px">
-                <div class="inline-block">
-                    昵称:{$vo.nickname|default='--'}
-                    <br>
-                    区域:{$vo.country|default='--'} {$vo.province} {$vo.city}
-                </div>
-            </td>
-            <td class="text-left padding-0">
-                <div style="max-height:60px;overflow:auto">{foreach $vo.tags as $t}<p><span class="layui-badge layui-bg-cyan margin-right-5">{$t|default='--'}</span></p>{/foreach}</div>
-            </td>
-            <td class='text-left nowrap'>
-                性别:{switch name='vo.sex'}{case value='1'}男{/case}{case value='2'}女{/case}{default}未知{/switch}
-                <br>
-                语言:{$vo.language|raw}
-            </td>
-            <td class='text-left nowrap'>
-                日期:{$vo.subscribe_at|format_datetime|str_replace=' ','<br>时间:',###|raw}
-            </td>
-            <td class='text-center nowrap'>
-                {eq name='vo.subscribe' value='0'}
-                <span class="layui-badge">未关注</span>
-                {else}
-                <span class="layui-badge layui-bg-green">已关注</span>
-                {/eq}
-                <br>
-                {eq name='vo.is_black' value='0'}
-                <span class="layui-badge layui-bg-green">未拉黑</span>
-                {else}
-                <span class="layui-badge">已拉黑</span>
-                {/eq}
-            </td>
-            <td class="nowrap">
-
-                {eq name='vo.is_black' value='0'}
-                <!--{if auth("setblack")}-->
-                <a class="margin-left-10 layui-btn layui-btn-normal layui-btn-sm" data-action="{:url('setblack')}" data-value="openid#{$vo.openid}" data-csrf="{:systoken('setblack')}">拉 黑</a>
-                <!--{/if}-->
-                {else}
-                <!--{if auth("delblack")}-->
-                <a class="margin-left-10 layui-btn layui-btn-normal layui-btn-sm" data-action="{:url('delblack')}" data-value="openid#{$vo.openid}" data-csrf="{:systoken('delblack')}">拉 白</a>
-                <!--{/if}-->
-                {/eq}
-
-                {if auth("remove")}
-                <a class="layui-btn layui-btn-sm layui-btn-danger" data-confirm="确定要删除该粉丝吗?" data-action="{:url('remove')}" data-value="id#{$vo.id}" data-csrf="{:systoken('remove')}">删 除</a>
-                {/if}
-            </td>
-        </tr>
-        {/foreach}
-        </tbody>
-    </table>
-
-    {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
-
-</div>
-{/block}

+ 0 - 59
application/wechat/view/fans/index_search.html

@@ -1,59 +0,0 @@
-<fieldset>
-    <legend>条件搜索</legend>
-    <form class="layui-form layui-form-pane form-search" action="{:request()->url()}" onsubmit="return false" method="get" autocomplete="off">
-
-        <div class="layui-form-item layui-inline">
-            <label class="layui-form-label">微信昵称</label>
-            <div class="layui-input-inline">
-                <input name="nickname" value="{$Think.get.nickname|default=''}" placeholder="请输入微信昵称" class="layui-input">
-            </div>
-        </div>
-
-        <div class="layui-form-item layui-inline">
-            <label class="layui-form-label">关注状态</label>
-            <div class="layui-input-inline">
-                <select class="layui-select" name="subscribe">
-                    {foreach [''=>'-- 全部 --','0'=>'显示未关注的粉丝','1'=>'显示已关注的粉丝'] as $k=>$v}
-                    {eq name='Think.get.subscribe' value='$k.""'}
-                    <option selected value="{$k}">{$v}</option>
-                    {else}
-                    <option value="{$k}">{$v}</option>
-                    {/eq}
-                    {/foreach}
-                </select>
-            </div>
-        </div>
-
-        <div class="layui-form-item layui-inline">
-            <label class="layui-form-label">拉黑状态</label>
-            <div class="layui-input-inline">
-                <select class="layui-select" name="is_black">
-                    {foreach [''=>'-- 全部 --','0'=>'显示未拉黑的粉丝','1'=>'显示已拉黑的粉丝'] as $k=>$v}
-                    {eq name='Think.get.is_black' value='$k.""'}
-                    <option selected value="{$k}">{$v}</option>
-                    {else}
-                    <option value="{$k}">{$v}</option>
-                    {/eq}
-                    {/foreach}
-                </select>
-            </div>
-        </div>
-
-        <div class="layui-form-item layui-inline">
-            <label class="layui-form-label">关注时间</label>
-            <div class="layui-input-inline">
-                <input name="subscribe_at" value="{$Think.get.subscribe_at|default=''}" placeholder="请选择关注时间" class="layui-input">
-            </div>
-        </div>
-
-        <div class="layui-form-item layui-inline">
-            <button class="layui-btn layui-btn-primary"><i class="layui-icon">&#xe615;</i> 搜 索</button>
-        </div>
-    </form>
-
-</fieldset>
-
-<script>
-    window.form.render();
-    window.laydate.render({range: true, elem: '[name="subscribe_at"]'});
-</script>

+ 0 - 127
application/wechat/view/index/index.html

@@ -1,127 +0,0 @@
-{extend name='admin@main'}
-
-{block name='content'}
-<style>
-
-    .store-total-container {
-        font-size: 14px;
-        margin-bottom: 20px;
-        letter-spacing: 1px;
-    }
-
-    .store-total-container .store-total-icon {
-        top: 45%;
-        right: 8%;
-        font-size: 65px;
-        position: absolute;
-        color: rgba(255, 255, 255, 0.4);
-    }
-
-    .store-total-container .store-total-item {
-        color: #fff;
-        line-height: 4em;
-        padding: 15px 25px;
-        position: relative;
-    }
-
-    .store-total-container .store-total-item > div:nth-child(2) {
-        font-size: 46px;
-        line-height: 46px;
-    }
-
-</style>
-
-<div class="think-box-shadow store-total-container notselect">
-    <div class="margin-bottom-15">微信统计</div>
-    <div class="layui-row layui-col-space15">
-        <div class="layui-col-sm6 layui-col-md3">
-            <div class="store-total-item nowrap" style="background:linear-gradient(-125deg,#57bdbf,#2f9de2)">
-                <div>粉丝数量</div>
-                <div>{$totalFans|default='0'}</div>
-                <div>关注的粉丝数量</div>
-            </div>
-            <i class="store-total-icon layui-icon layui-icon-user"></i>
-        </div>
-        <div class="layui-col-sm6 layui-col-md3">
-            <div class="store-total-item nowrap" style="background:linear-gradient(-125deg,#ff7d7d,#fb2c95)">
-                <div>黑粉数量</div>
-                <div>{$totalBlack|default='0'}</div>
-                <div>拉黑的粉丝数量</div>
-            </div>
-            <i class="store-total-icon layui-icon layui-icon-auz"></i>
-        </div>
-        <div class="layui-col-sm6 layui-col-md3">
-            <div class="store-total-item nowrap" style="background:linear-gradient(-113deg,#c543d8,#925cc3)">
-                <div>图文总数</div>
-                <div>{$totalNews|default='0'}</div>
-                <div>图文素材数量</div>
-            </div>
-            <i class="store-total-icon layui-icon layui-icon-read"></i>
-        </div>
-        <div class="layui-col-sm6 layui-col-md3">
-            <div class="store-total-item nowrap" style="background:linear-gradient(-141deg,#ecca1b,#f39526)">
-                <div>回复数量</div>
-                <div>{$totalRule|default='0'}</div>
-                <div>回复规则数量</div>
-            </div>
-            <i class="store-total-icon layui-icon layui-icon-survey"></i>
-        </div>
-    </div>
-</div>
-
-<div class="think-box-shadow store-total-container">
-    <div class="margin-bottom-15">近六月粉丝趋势</div>
-    <div id="main" style="height:390px"></div>
-</div>
-
-<script>
-    require(['echarts'], function (echarts, chart) {
-        chart = echarts.init(document.getElementById('main'));
-        window.onresize = chart.resize;
-        chart.setOption({
-            tooltip: {trigger: 'axis'},
-            grid: {top: '10%', left: '3%', right: '8%', bottom: '3%', containLabel: true},
-            xAxis: [{
-                type: 'category', scale: false,
-                boundaryGap: false,
-                axisLabel: {
-                    color: '#2f9de2',
-                },
-                data: eval('{:json_encode($totalJson.xs)}')
-            }],
-            yAxis: [{
-                type: 'value',
-                scale: true,
-                max: function (value) {
-                    return Math.ceil(value.max / 50) * 50 + 100;
-                },
-                axisLabel: {
-                    color: '#2f9de2',
-                    formatter: "{value}人"
-                },
-                splitLine: {
-                    lineStyle: {
-                        type: 'dashed',
-                        color: '#cccccc'
-                    }
-                }
-            }],
-            legend: {data: ['粉丝数量', '拉黑粉丝']},
-            series: [
-                {
-                    type: 'line',
-                    name: '粉丝数量',
-                    label: {normal: {show: true, position: ['30%', '-100%'], offset: [10, -10], formatter: "粉丝{c}人"}},
-                    data: eval('{:json_encode($totalJson.ys._0)}')
-                },
-                {
-                    type: 'line',
-                    name: '拉黑粉丝',
-                    label: {normal: {show: true, position: ['30%', '-100%'], offset: [10, -10], formatter: "拉黑{c}人"}},
-                    data: eval('{:json_encode($totalJson.ys._1)}')
-                }
-            ]
-        });
-    });
-</script>
-{/block}

+ 0 - 271
application/wechat/view/keys/form.html

@@ -1,271 +0,0 @@
-{extend name='admin@main'}
-
-{block name="style"}
-<style>
-    .keys-container .input-group-addon{top:0;right:0;color:#eee;width:25px;padding:7px;position:absolute;margin-top:-1px;text-align:center;background:#393D49}
-    .keys-container [data-tips-image]{width:112px;height:auto}
-    .keys-container .layui-card{width:580px;height:578px;position:absolute;border:1px solid #ccc}
-    .keys-container .layui-card .layui-card-body{height:515px;padding-right:50px}
-</style>
-{/block}
-
-{block name="content"}
-<div class="nowrap think-box-shadow" style="width:910px">
-    <div class='mobile-preview inline-block'>
-        <div class='mobile-header'>公众号</div>
-        <div class='mobile-body'>
-            <iframe id="phone-preview" frameborder="0" marginheight="0" marginwidth="0"></iframe>
-        </div>
-    </div>
-    <div class="keys-container inline-block absolute margin-left-10 margin-right-15">
-        <form class="layui-form" onsubmit="return false" autocomplete="off" data-auto="true" action="{:request()->url()}" method="post">
-            <div class="layui-card relative">
-                <div class="layui-card-header layui-bg-gray text-center">编辑关键字</div>
-                <div class="layui-card-body">
-                    <!--{if !isset($vo.keys) or ($vo.keys neq 'default' and $vo.keys neq 'subscribe')}-->
-                    <div class="layui-form-item margin-top-10">
-                        <label class="layui-form-label">关 键 字</label>
-                        <div class="layui-input-block">
-                            <input required placeholder='请输入关键字' maxlength='20' name='keys' class="layui-input" value='{$vo.keys|default=""}'>
-                        </div>
-                    </div>
-                    <!--{else}-->
-                    <input type="hidden" name="keys" value="{$vo.keys|default=''}">
-                    <!--{/if}-->
-                    <div class="layui-form-item">
-                        <label class="layui-form-label label-required">规则状态</label>
-                        <div class="layui-input-block">
-                            {foreach ['1'=>'启用','0'=>'禁用'] as $k=>$v}
-                            <label class="think-radio">
-                                <!--{if (!isset($vo.status) and $k eq '1') or (isset($vo.status) and $vo.status eq $k)}-->
-                                <input type="radio" checked name="status" value="{$k}"> {$v}
-                                <!--{else}-->
-                                <input type="radio" name="status" value="{$k}"> {$v}
-                                <!--{/if}-->
-                            </label>
-                            {/foreach}
-                        </div>
-                    </div>
-
-                    <div class="layui-form-item">
-                        <label class="layui-form-label label-required">消息类型</label>
-                        <div class="layui-input-block">
-                            {foreach $msgTypes as $k=>$v}
-                            <label class="think-radio">
-                                <!--{if (!isset($vo.type) and $k eq 'text') or (isset($vo.type) and$vo.type eq $k)}-->
-                                <input name="type" checked type="radio" value="{$k}"> {$v}
-                                <!--{else}-->
-                                <input name="type" type="radio" value="{$k}"> {$v}
-                                <!--{/if}-->
-                            </label>
-                            {/foreach}
-                        </div>
-                    </div>
-
-                    <div class="layui-form-item" data-keys-type='text'>
-                        <label class="layui-form-label">回复内容</label>
-                        <div class="layui-input-block">
-                            <textarea name="content" maxlength="10000" class="layui-textarea">{$vo.content|raw|default='说点什么吧'}</textarea>
-                        </div>
-                    </div>
-
-                    <div class="layui-form-item" data-keys-type='news'>
-                        <label class="layui-form-label label-required">选取图文</label>
-                        <div class="layui-input-block">
-                            <input type="hidden" name="news_id" value="{$vo.news_id|default=0}">
-                            <a class="layui-btn layui-btn-primary" data-title="选择图文" data-iframe="{:url('wechat/news/select')}?field={:encode('news_id')}">选择图文</a>
-                        </div>
-                    </div>
-
-                    <div class="layui-form-item" data-keys-type='image'>
-                        <label class="layui-form-label label-required">图片地址</label>
-                        <div class="layui-input-block">
-                            <input class="layui-input" onchange="$(this).nextAll('img').attr('src', this.value)" value="{$vo.image_url|default=$defaultImage}" name="image_url" required placeholder="请上传图片或输入图片URL地址">
-                            <a data-file="btn" data-type="bmp,png,jpeg,jpg,gif" data-field="image_url" class="input-group-addon"><i class="layui-icon layui-icon-upload"></i></a>
-                            <p class="help-block">文件最大2Mb,支持bmp/png/jpeg/jpg/gif格式</p>
-                            <img data-tips-image src='{$vo.image_url|default=$defaultImage}'>
-                        </div>
-                    </div>
-
-                    <div class="layui-form-item" data-keys-type='voice'>
-                        <label class="layui-form-label">上传语音</label>
-                        <div class="layui-input-block">
-                            <div class="input-group">
-                                <input class='layui-input' value="{$vo.voice_url|default=''}" name="voice_url" required title="请上传语音文件或输入语音URL地址   ">
-                                <a data-file="btn" data-type="mp3,wma,wav,amr" data-field="voice_url" class="input-group-addon"><i class="layui-icon layui-icon-upload"></i></a>
-                            </div>
-                            <p class="help-block">文件最大2Mb,播放长度不超过60s,mp3/wma/wav/amr格式</p>
-                        </div>
-                    </div>
-
-                    <div class="layui-form-item" data-keys-type='music'>
-                        <label class="layui-form-label">音乐标题</label>
-                        <div class="layui-input-block">
-                            <input class='layui-input' value="{$vo.music_title|default='音乐标题'}" name="music_title" required title="请输入音乐标题">
-                        </div>
-                    </div>
-
-                    <div class="layui-form-item" data-keys-type='music'>
-                        <label class="layui-form-label label-required">上传音乐</label>
-                        <div class="layui-input-block">
-                            <div class="input-group">
-                                <input class='layui-input' value="{$vo.music_url|default=''}" name="music_url" required title="请上传音乐文件或输入音乐URL地址   ">
-                                <a data-file="btn" data-type="mp3,wma,wav,amr" data-field="music_url" class="input-group-addon"><i class="layui-icon layui-icon-upload"></i></a>
-                            </div>
-                        </div>
-                    </div>
-
-                    <div class="layui-form-item" data-keys-type='music'>
-                        <label class="layui-form-label">音乐描述</label>
-                        <div class="layui-input-block">
-                            <input name="music_desc" class="layui-input" value="{$vo.music_desc|default='音乐描述'|raw}">
-                        </div>
-                    </div>
-
-                    <div class="layui-form-item" data-keys-type='music'>
-                        <label class="layui-form-label">音乐图片</label>
-                        <div class="layui-input-block">
-                            <input class="layui-input" value="{$vo.music_image|default=$defaultImage}" name="music_image" required title="请上传音乐图片或输入音乐图片URL地址   ">
-                            <a data-file="btn" data-type="jpg,png" data-field="music_image" class="input-group-addon"><i class="layui-icon layui-icon-upload"></i></a>
-                            <p class="help-block">文件最大64KB,只支持JPG格式</p>
-                        </div>
-                    </div>
-
-                    <div class="layui-form-item" data-keys-type='video'>
-                        <label class="layui-form-label">视频标题</label>
-                        <div class="layui-input-block">
-                            <input class='layui-input' value="{$vo.video_title|default='视频标题'}" name="video_title" required placeholder="请输入视频标题">
-                        </div>
-                    </div>
-
-                    <div class="layui-form-item" data-keys-type='video'>
-                        <label class="layui-form-label">上传视频</label>
-                        <div class="layui-input-block">
-                            <div class="input-group">
-                                <input class='layui-input' value="{$vo.video_url|default=''}" name="video_url" required title="请上传视频或输入音乐视频URL地址   ">
-                                <a data-file="btn" data-type="mp4" data-field="video_url" class="input-group-addon"><i class="layui-icon layui-icon-upload"></i></a>
-                            </div>
-                            <p class="help-block">文件最大10MB,只支持MP4格式</p>
-                        </div>
-                    </div>
-
-                    <div class="layui-form-item" data-keys-type='video'>
-                        <label class="layui-form-label">视频描述</label>
-                        <div class="layui-input-block">
-                            <input value="{$vo.video_desc|default='视频描述'}" name="video_desc" maxlength="50" class="layui-input">
-                        </div>
-                    </div>
-
-                    <div class="text-center padding-bottom-10 absolute full-width" style="bottom:0;margin-left:-15px">
-                        <div class="hr-line-dashed margin-top-10 margin-bottom-10"></div>
-                        <button class="layui-btn menu-submit">保存数据</button>
-                        <!--{if !isset($vo.keys) || !in_array($vo.keys,['default','subscribe'])}-->
-                        <button data-cancel-edit class="layui-btn layui-btn-danger" type='button'>取消编辑</button>
-                        <!--{/if}-->
-                        {if isset($vo['id'])}<input type='hidden' value='{$vo.id}' name='id'>{/if}
-                    </div>
-                </div>
-            </div>
-        </form>
-    </div>
-</div>
-{/block}
-
-{block name="script"}
-<script>
-
-    $(function () {
-
-        var $body = $('body');
-
-        // 取消编辑返回
-        $('[data-cancel-edit]').on('click', function () {
-            $.msg.confirm('确定取消编辑吗?', function (index) {
-                history.back(), $.msg.close(index);
-            });
-        });
-
-        // 刷新预览显示
-        function showReview(params) {
-            var src = '';
-            if (params['type'] === 'news') {
-                src = '{:url("@wechat/api.review/news/_id_")}'.replace('_id_', params.content);
-            } else {
-                src = '{:url("@wechat/api.review/_type_")}?'.replace('_type_', params.type) + $.param(params || {});
-            }
-            $('#phone-preview').attr('src', src);
-        }
-
-        // 图文显示预览
-        $body.off('change', '[name="news_id"]').on('change', '[name="news_id"]', function () {
-            showReview({type: 'news', content: this.value});
-        });
-
-        // 文字显示预览
-        $body.off('change', '[name="content"]').on('change', '[name="content"]', function () {
-            showReview({type: 'text', content: this.value});
-        });
-
-        // 图片显示预览
-        $body.off('change', '[name="image_url"]').on('change', '[name="image_url"]', function () {
-            showReview({type: 'image', content: this.value});
-        });
-
-        // 图片显示预览
-        $body.off('change', '[name="voice_url"]').on('change', '[name="voice_url"]', function () {
-            showReview({type: 'voice', content: this.value});
-        });
-
-        // 音乐显示预览
-        var musicSelector = '[name="music_url"],[name="music_title"],[name="music_desc"],[name="music_image"]';
-        $body.off('change', musicSelector).on('change', musicSelector, function () {
-            var params = {type: 'music'}, $parent = $(this).parents('form');
-            params.url = $parent.find('[name="music_url"]').val();
-            params.desc = $parent.find('[name="music_desc"]').val();
-            params.title = $parent.find('[name="music_title"]').val();
-            params.image = $parent.find('[name="music_image"]').val();
-            showReview(params);
-        });
-
-        // 视频显示预览
-        var videoSelector = '[name="video_title"],[name="video_url"],[name="video_desc"]';
-        $body.off('change', videoSelector).on('change', videoSelector, function () {
-            var params = {type: 'video'}, $parent = $(this).parents('form');
-            params.url = $parent.find('[name="video_url"]').val();
-            params.desc = $parent.find('[name="video_desc"]').val();
-            params.title = $parent.find('[name="video_title"]').val();
-            showReview(params);
-        });
-
-        // 默认类型事件
-        $body.off('click', 'input[name=type]').on('click', 'input[name=type]', function () {
-            var value = $(this).val(), $form = $(this).parents('form');
-            if (value === 'customservice') value = 'text';
-            var $current = $form.find('[data-keys-type="' + value + '"]').removeClass('layui-hide');
-            $form.find('[data-keys-type]').not($current).addClass('layui-hide');
-            switch (value) {
-                case 'news':
-                    return $('[name="news_id"]').trigger('change');
-                case 'text':
-                    return $('[name="content"]').trigger('change');
-                case 'image':
-                    return $('[name="image_url"]').trigger('change');
-                case 'video':
-                    return $('[name="video_url"]').trigger('change');
-                case 'music':
-                    return $('[name="music_url"]').trigger('change');
-                case 'voice':
-                    return $('[name="voice_url"]').trigger('change');
-                case 'customservice':
-                    return $('[name="content"]').trigger('change');
-            }
-        });
-
-        // 默认事件触发
-        $('input[name=type]:checked').map(function () {
-            $(this).trigger('click');
-        });
-
-    });
-</script>
-{/block}

+ 0 - 180
application/wechat/view/keys/index.html

@@ -1,180 +0,0 @@
-{extend name='admin@main'}
-
-{block name="button"}
-
-{if auth("add")}
-<button data-open="{:url('add')}" class='layui-btn layui-btn-sm layui-btn-primary'>添加规则</button>
-{/if}
-
-{if auth("remove")}
-<button data-action='{:url("remove")}' data-rule="id#{key}" data-csrf="{:systoken('remove')}" data-confirm="确定要删除这些规则吗?" class='layui-btn layui-btn-sm layui-btn-primary'>删除规则</button>
-{/if}
-
-{/block}
-
-{block name='content'}
-<div class="think-box-shadow">
-    {include file='keys/index_search'}
-    <table class="layui-table margin-top-10" lay-skin="line">
-        {notempty name='list'}
-        <thead>
-        <tr>
-            <th class='list-table-check-td think-checkbox'>
-                <input data-auto-none data-check-target='.list-check-box' type='checkbox'/>
-            </th>
-            <th class='list-table-sort-td'>
-                <button type="button" data-reload class="layui-btn layui-btn-xs">刷 新</button>
-            </th>
-            <th class="text-left nowrap">关键字</th>
-            <th class="text-left nowrap">类型</th>
-            <th class="text-left nowrap">预览</th>
-            <th class="text-left nowrap">添加时间</th>
-            <th class="text-left nowrap">状态</th>
-            <th></th>
-        </tr>
-        </thead>
-        {/notempty}
-        <tbody>
-        {foreach $list as $key=>$vo}
-        <tr>
-            <td class='list-table-check-td think-checkbox'>
-                <input class="list-check-box" value='{$vo.id}' type='checkbox'/>
-            </td>
-            <td class='list-table-sort-td'>
-                <input data-action-blur="{:request()->url()}" data-value="id#{$vo.id};action#sort;sort#{value}" data-loading="false" value="{$vo.sort}" class="list-sort-input">
-            </td>
-            <td class="text-left nowrap">
-                {notempty name='vo.qrc'}<i class="fa fa-qrcode fa-lg pointer margin-right-5" data-load="{$vo.qrc}" data-time="false" data-tips-text="生成关键字二维码"></i>{/notempty}
-                {$vo.keys}
-            </td>
-            <td class="text-left nowrap">{$vo.type}</td>
-            <td class="text-left nowrap">
-                {if $vo.type eq '音乐'}
-                <a data-phone-view='{:url("@wechat/api.review/music")}?title={$vo.music_title|urlencode}&desc={$vo.music_desc|urlencode}'>预览 <i class="fa fa-eye"></i></a>
-                {elseif in_array($vo.type,['文字','转客服'])}
-                <a data-phone-view='{:url("@wechat/api.review/text")}?content={$vo.content|urlencode}'>预览 <i class="fa fa-eye"></i></a>
-                {elseif $vo.type eq '图片'}
-                <a data-phone-view='{:url("@wechat/api.review/image")}?content={$vo.image_url|urlencode}'>预览 <i class="fa fa-eye"></i></a>
-                {elseif $vo.type eq '图文'}
-                <a data-phone-view='{:url("@wechat/api.review/news/".$vo.news_id)}'>预览 <i class="fa fa-eye"></i></a>
-                {elseif $vo.type eq '视频'}
-                <a data-phone-view='{:url("@wechat/api.review/video")}?title={$vo.video_title|urlencode}&desc={$vo.video_desc|urlencode}&url={$vo.video_url|urlencode}'>预览 <i class="fa fa-eye"></i></a>
-                {elseif $vo.type eq '语音'}
-                <a data-phone-view='{:url("@wechat/api.review/voice")}?content={$vo.voice_url|urlencode}'>预览 <i class="fa fa-eye"></i></a>
-                {else}
-                {$vo.content}
-                {/if}
-            </td>
-            <td class="text-left nowrap">{$vo.create_at|format_datetime}</td>
-            <td class='text-left nowrap'>{if $vo.status eq 0}<span class="color-desc">已禁用</span>{elseif $vo.status eq 1}<span class="color-green">使用中</span>{/if}</td>
-            <td class='text-left nowrap'>
-
-                {if auth("edit")}
-                <a class="layui-btn layui-btn-sm" data-open='{:url("edit")}?id={$vo.id}'>编 辑</a>
-                {/if}
-
-                {if $vo.status eq 1 and auth("forbid")}
-                <a class="layui-btn layui-btn-sm layui-btn-warm" data-action="{:url('forbid')}" data-value="id#{$vo.id};status#0" data-csrf="{:systoken('forbid')}">禁 用</a>
-                {elseif auth("resume")}
-                <a class="layui-btn layui-btn-sm layui-btn-warm" data-action="{:url('resume')}" data-value="id#{$vo.id};status#1" data-csrf="{:systoken('resume')}">启 用</a>
-                {/if}
-
-                {if auth("remove")}
-                <a class="layui-btn layui-btn-sm layui-btn-danger" data-confirm="确定要删除该规则吗?" data-action="{:url('remove')}" data-value="id#{$vo.id}" data-csrf="{:systoken('remove')}">删 除</a>
-                {/if}
-
-            </td>
-        </tr>
-        {/foreach}
-        </tbody>
-    </table>
-    {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
-</div>
-{/block}
-
-{block name="script"}
-<script>
-
-    $(function () {
-        /**
-         * 默认类型事件
-         * @type String
-         */
-        $('body').off('change', 'select[name=type]').on('change', 'select[name=type]', function () {
-            var value = $(this).val(), $form = $(this).parents('form');
-            var $current = $form.find('[data-keys-type="' + value + '"]').removeClass('hide');
-            $form.find('[data-keys-type]').not($current).addClass('hide');
-            switch (value) {
-                case 'news':
-                    return $('[name="news_id"]').trigger('change');
-                case 'text':
-                    return $('[name="content"]').trigger('change');
-                case 'image':
-                    return $('[name="image_url"]').trigger('change');
-                case 'video':
-                    return $('[name="video_url"]').trigger('change');
-                case 'music':
-                    return $('[name="music_url"]').trigger('change');
-                case 'voice':
-                    return $('[name="voice_url"]').trigger('change');
-            }
-        });
-
-        function showReview(params) {
-            params = params || {};
-            $('#phone-preview').attr('src', '{"@wechat/review"|app_url}&' + $.param(params));
-        }
-
-        // 图文显示预览
-        $('body').off('change', '[name="news_id"]').on('change', '[name="news_id"]', function () {
-            showReview({type: 'news', content: this.value});
-        });
-        // 文字显示预览
-        $('body').off('change', '[name="content"]').on('change', '[name="content"]', function () {
-            showReview({type: 'text', content: this.value});
-        });
-        // 图片显示预览
-        $('body').off('change', '[name="image_url"]').on('change', '[name="image_url"]', function () {
-            showReview({type: 'image', content: this.value});
-        });
-        // 音乐显示预览
-        var musicSelector = '[name="music_url"],[name="music_title"],[name="music_desc"],[name="music_image"]';
-        $('body').off('change', musicSelector).on('change', musicSelector, function () {
-            var params = {type: 'music'}, $parent = $(this).parents('form');
-            params.title = $parent.find('[name="music_title"]').val();
-            params.url = $parent.find('[name="music_url"]').val();
-            params.image = $parent.find('[name="music_image"]').val();
-            params.desc = $parent.find('[name="music_desc"]').val();
-            showReview(params);
-        });
-        // 视频显示预览
-        var videoSelector = '[name="video_title"],[name="video_url"],[name="video_desc"]';
-        $('body').off('change', videoSelector).on('change', videoSelector, function () {
-            var params = {type: 'video'}, $parent = $(this).parents('form');
-            params.title = $parent.find('[name="video_title"]').val();
-            params.url = $parent.find('[name="video_url"]').val();
-            params.desc = $parent.find('[name="video_desc"]').val();
-            showReview(params);
-        });
-
-        // 默认事件触发
-        $('select[name=type]').map(function () {
-            $(this).trigger('change');
-        });
-
-        /*! 删除关键字 */
-        $('[data-delete]').on('click', function () {
-            var id = this.getAttribute('data-delete');
-            var url = this.getAttribute('data-action');
-            var dialogIndex = $.msg.confirm('确定要删除这条记录吗?', function () {
-                $.form.load(url, {id: id}, 'post', function (ret) {
-                    if (ret.code === "SUCCESS") {
-                        window.location.reload();
-                    }
-                    $.msg.close(dialogIndex);
-                });
-            })
-        });
-    });
-</script>
-{/block}

+ 0 - 54
application/wechat/view/keys/index_search.html

@@ -1,54 +0,0 @@
-<fieldset>
-    <legend>条件搜索</legend>
-    <form class="layui-form layui-form-pane form-search" action="{:request()->url()}" onsubmit="return false" method="get" autocomplete="off">
-        <div class="layui-form-item layui-inline">
-            <label class="layui-form-label">匹配规则</label>
-            <div class="layui-input-inline">
-                <input name="keys" value="{$Think.get.keys|default=''}" placeholder="请输入匹配规则" class="layui-input">
-            </div>
-        </div>
-        <div class="layui-form-item layui-inline">
-            <label class="layui-form-label">规则类型</label>
-            <div class="layui-input-inline">
-                <select class="layui-select" name="type">
-                    <option value="">-- 全部 --</option>
-                    {foreach $types as $k=>$v}
-                    {eq name='Think.get.type' value='$k.""'}
-                    <option selected value="{$k}">{$v}</option>
-                    {else}
-                    <option value="{$k}">{$v}</option>
-                    {/eq}
-                    {/foreach}
-                </select>
-            </div>
-        </div>
-        <div class="layui-form-item layui-inline">
-            <label class="layui-form-label">使用状态</label>
-            <div class="layui-input-inline">
-                <select class="layui-select" name="status">
-                    {foreach [''=>'-- 全部 --','0'=>'显示使用的规则','1'=>'显示禁止的规则'] as $k=>$v}
-                    {eq name='Think.get.status' value='$k.""'}
-                    <option selected value="{$k}">{$v}</option>
-                    {else}
-                    <option value="{$k}">{$v}</option>
-                    {/eq}
-                    {/foreach}
-                </select>
-            </div>
-        </div>
-        <div class="layui-form-item layui-inline">
-            <label class="layui-form-label">创建时间</label>
-            <div class="layui-input-inline">
-                <input name="create_at" value="{$Think.get.create_at|default=''}" placeholder="请选择创建时间" class="layui-input">
-            </div>
-        </div>
-        <div class="layui-form-item layui-inline">
-            <button class="layui-btn layui-btn-primary"><i class="layui-icon">&#xe615;</i> 搜 索</button>
-        </div>
-    </form>
-</fieldset>
-
-<script>
-    window.form.render();
-    window.laydate.render({range: true, elem: '[name="create_at"]'});
-</script>

+ 0 - 203
application/wechat/view/menu/index.html

@@ -1,203 +0,0 @@
-{extend name="admin@main"}
-
-{block name='content'}
-<div id="MenuEditor" class="layui-hide think-box-shadow" style="width:910px">
-    <div class='mobile-preview inline-block'>
-        <div class='mobile-header'>公众号</div>
-        <div class='mobile-body'></div>
-        <ul class='mobile-footer notselect'>
-            <li class="parent-menu" style="{{getItemStyle(list)}}" ng-repeat="one in list">
-                <a ng-click="setActiveItem(one)" ng-class="{true:'active'}[one.active]">
-                    <i class="icon-sub" ng-if="one.sub_button.length>0"></i> <span ng-bind="one.name"></span>
-                </a>
-                <i class="close layui-bg-gray layui-icon" ng-click="delItem(one)">&#x1006;</i>
-                <div class="sub-menu text-center" ng-if="one.active||one.show">
-                    <ul>
-                        <li ng-repeat="two in one.sub_button">
-                            <a class="bottom-border" ng-click="setActiveItem(one,two)" ng-class="{true:'active'}[two.active]"><span ng-bind="two.name"></span></a>
-                            <i class="close layui-bg-gray layui-icon" ng-click="delItem(one,two)">&#x1006;</i>
-                        </li>
-                        <li class="menu-add" ng-if="one.sub_button.length<5"><a ng-click="addItem(one.sub_button)"><i class="icon-add"></i></a></li>
-                    </ul>
-                    <i class="arrow arrow_out"></i>
-                    <i class="arrow arrow_in"></i>
-                </div>
-            </li>
-            <li class="parent-menu menu-add" style="{{getItemStyle(list)}}" ng-if="list.length<3">
-                <a ng-click="addItem(list)"><i class="icon-add"></i></a>
-            </li>
-        </ul>
-    </div>
-
-    <div class="absolute inline-block layui-card margin-left-10" style="border:1px solid #ccc;height:578px;width:570px">
-        <div class="layui-card-header layui-bg-gray text-center">菜单编辑</div>
-        <div class="layui-card-body" ng-if="list.length<1">
-            <blockquote class="layui-elem-quote border-0 text-center">请在左侧创建菜单...</blockquote>
-        </div>
-        <div class="layui-card-body" ng-if="list.length>0">
-            <form class="layui-form menu-form" autocomplete="off" style="padding-right:80px;">
-                <div class="layui-form-item margin-top-20">
-                    <label class="layui-form-label">菜单名称</label>
-                    <div class="layui-input-block">
-                        <input required name="menu-name" ng-model="item.name" class="layui-input" placeholder="请输入菜单名称">
-                        <span class="help-block">字数不超过13个汉字或40个字母</span>
-                    </div>
-                </div>
-                <div class="layui-form-item margin-top-20" ng-if="!item.sub_button||item.sub_button.length<1">
-                    <label class="layui-form-label label-required">菜单类型</label>
-                    <div class="layui-input-block">
-                        {foreach $menuTypes as $key => $type}
-                        <label class="think-radio layui-elip"><input lay-ignore type="radio" ng-model="item.type" name="menu-type" value="{$key}"> {$type}</label>
-                        {/foreach}
-                    </div>
-                </div>
-                <div class="layui-form-item margin-top-20" ng-if="item.type==='customservice'">
-                    <label class="layui-form-label">提示文字</label>
-                    <div class="layui-input-block">
-                        <textarea required class="layui-textarea" ng-model="item.content"></textarea>
-                    </div>
-                </div>
-                <div class="layui-form-item margin-top-20" ng-if="(!item.sub_button||item.sub_button.length<1)&&item.type==='click'">
-                    <label class="layui-form-label">匹配规则</label>
-                    <div class="layui-input-block">
-                        <select required class="layui-select" lay-filter="key" lay-search>
-                            <option value="{{x.keys}}" ng-selected="x.keys===item.key" ng-repeat="x in keys" ng-bind="x.keys"></option>
-                        </select>
-                    </div>
-                </div>
-                <div class="layui-form-item margin-top-20" ng-if="item.type==='view'">
-                    <label class="layui-form-label">跳转链接</label>
-                    <div class="layui-input-block">
-                        <textarea required class="layui-textarea" ng-model="item.url" placeholder="请输入跳转链接"></textarea>
-                    </div>
-                </div>
-                <div ng-if="item.type==='miniprogram'">
-                    <div class="layui-form-item margin-top-20">
-                        <label class="layui-form-label">小程序链接</label>
-                        <div class="layui-input-block">
-                            <input type="text" required class="layui-input" ng-model="item.url" placeholder="请输入小程序链接">
-                        </div>
-                    </div>
-                    <div class="layui-form-item margin-top-20">
-                        <label class="layui-form-label">小程序APPID</label>
-                        <div class="layui-input-block">
-                            <input type="text" required class="layui-input" ng-model="item.appid" placeholder="请输入小程序APPID">
-                        </div>
-                    </div>
-                    <div class="layui-form-item margin-top-20">
-                        <label class="layui-form-label">小程序页面</label>
-                        <div class="layui-input-block">
-                            <input type="text" required class="layui-input" ng-model="item.pagepath" placeholder="请输入小程序页面">
-                        </div>
-                    </div>
-                </div>
-            </form>
-        </div>
-    </div>
-
-    <div class="text-center margin-top-20">
-        {if auth("edit")}
-        <button class="layui-btn menu-submit" ng-click="submit()">保存发布</button>
-        {/if}
-        {if auth("cancel")}
-        <button data-load='{:url("cancel")}' class="layui-btn layui-btn-danger">取消发布</button>
-        {/if}
-    </div>
-
-</div>
-
-<script>
-    require(['angular'], function () {
-
-        var $form = $('.menu-form').vali();
-        var $vali = $form.vali().data('validate');
-        $('#MenuEditor.layui-hide').removeClass('layui-hide');
-
-        var app = angular.module("MenuEditor", []).run(callback);
-        angular.bootstrap(document.getElementById(app.name), [app.name]);
-
-        function callback($rootScope) {
-            $rootScope.item = {};
-            $rootScope.list = [];
-            $rootScope.keys = [];
-            $.form.load('{:url("index")}', {output: 'json'}, 'get', function (ret) {
-                return $rootScope.$apply(function () {
-                    $rootScope.keys = ret.data.keysdata || [];
-                    $rootScope.list = ret.data.menudata || [];
-                    if ($rootScope.list.length < 1) $rootScope.list = [{name: '请输入名称', type: 'click', sub_button: []}];
-                    for (var i in $rootScope.list) $rootScope.list[i].sub_button = $rootScope.list[i].sub_button || [];
-                    $rootScope.list[0].show = true;
-                    $rootScope.list[0].active = true;
-                    $rootScope.item = $rootScope.list[0];
-                }), false;
-            });
-
-            // 动态计算宽度
-            $rootScope.getItemStyle = function (list) {
-                return 'width:' + (100 / (list.length >= 3 ? 3 : (list.length + 1))) + '%';
-            };
-
-            // 增加菜单选项
-            $rootScope.addItem = function (list) {
-                $vali.checkAllInput();
-                if ($form.find('.validate-error').size() > 0) {
-                    return $.msg.tips('表单验证不成功,请输入需要的内容!');
-                }
-                list.push({name: '请输入名称', type: 'click', sub_button: []});
-            };
-
-            // 移除菜单
-            $rootScope.delItem = function (one, two) {
-                var tmp = [], _two = null;
-                if (two) {
-                    for (var i in one.sub_button) if (one.sub_button[i] !== two) {
-                        tmp.push(one.sub_button[i]);
-                        if (one.sub_button[i].active) _two = one.sub_button[i];
-                    }
-                    one.sub_button = tmp;
-                    return $rootScope.setActiveItem(one, _two);
-                }
-                for (var i in $rootScope.list) if (one !== $rootScope.list[i]) tmp.push($rootScope.list[i]);
-                $rootScope.list = tmp;
-                if ($rootScope.list.length > 1) $rootScope.setActiveItem($rootScope.list[0])
-            };
-
-            // 切换选择菜单
-            $rootScope.setActiveItem = function (one, two) {
-                for (var i in $rootScope.list) {
-                    $rootScope.list[i].show = ($rootScope.list[i] === one);
-                    $rootScope.list[i].active = two ? false : ($rootScope.list[i] === one);
-                }
-                for (var i in $rootScope.list) for (var j in $rootScope.list[i].sub_button) {
-                    $rootScope.list[i].sub_button[j].active = ($rootScope.list[i].sub_button[j] === two)
-                }
-                $rootScope.item = two || one || {};
-                $rootScope.item.type = $rootScope.item.type || 'click';
-                if ($rootScope.item.type === 'click') setTimeout(function () {
-                    form.render('select');
-                    $rootScope.item.key = $('[lay-filter="key"]').val();
-                }, 50);
-            };
-
-            // 下拉列表处理
-            $rootScope.$watch('item', function () {
-                if ($rootScope.item.type === 'click') setTimeout(function () {
-                    form.render('select');
-                }, 50)
-            }, true);
-
-            form.on('select(key)', function (data) {
-                $rootScope.item.key = data.value;
-            });
-
-            // 提交数据
-            $rootScope.submit = function () {
-                $vali.checkAllInput();
-                if ($form.find('.validate-error').size() > 0) return false;
-                $.form.load('{:url("edit")}', {data: angular.toJson($rootScope.list)}, 'post');
-            }
-        }
-    })
-</script>
-
-{/block}

+ 0 - 84
application/wechat/view/news/form-style.html

@@ -1,84 +0,0 @@
-<style>
-    .news-left {
-        width: 300px;
-        float: left;
-        margin-right: 15px;
-    }
-
-    .news-right {
-        overflow: hidden;
-        width: 980px;
-        position: relative;
-        display: inline-block;
-    }
-
-    .news-left .news-item {
-        height: 150px;
-        cursor: pointer;
-        max-width: 270px;
-        overflow: hidden;
-        position: relative;
-        border: 1px solid #ccc;
-        background-size: cover;
-        background-position: center center
-    }
-
-    .news-left .news-item.active {
-        border: 1px solid #44b549 !important
-    }
-
-    .news-left .article-add {
-        color: #999;
-        display: block;
-        font-size: 22px;
-        text-align: center
-    }
-
-    .news-left .article-add:hover {
-        color: #666
-    }
-
-    .news-left .news-title {
-        bottom: 0;
-        color: #fff;
-        width: 272px;
-        display: block;
-        padding: 0 5px;
-        max-height: 6em;
-        overflow: hidden;
-        margin-left: -1px;
-        position: absolute;
-        text-overflow: ellipsis;
-        background: rgba(0, 0, 0, .7)
-    }
-
-    .news-left .news-item a {
-        color: #fff;
-        width: 30px;
-        height: 30px;
-        float: right;
-        font-size: 12px;
-        margin-top: -1px;
-        line-height: 34px;
-        text-align: center;
-        margin-right: -1px;
-        background-color: rgba(0, 0, 0, .5)
-    }
-
-    .news-left .news-item:hover a {
-        display: inline-block !important
-    }
-
-    .news-left .news-item a:hover {
-        text-decoration: none;
-        background-color: #0C0C0C
-    }
-
-    .news-right .upload-image-box {
-        width: 130px;
-        height: 90px;
-        border: 1px solid rgba(125, 125, 125, .1);
-        background: url("__ROOT__/static/plugs/uploader/theme/image.png") no-repeat center center;
-        background-size: cover;
-    }
-</style>

+ 0 - 215
application/wechat/view/news/form.html

@@ -1,215 +0,0 @@
-{extend name='admin@main'}
-
-{block name="style"}{include file='wechat@news/form-style'}{/block}
-
-{block name='content'}
-<div id="NewsEditor" class="layui-clear nowrap padding-bottom-30">
-    <div class="layui-card news-left">
-        <div class="layui-card-body layui-hide">
-            <div ng-if="list.length > 0" ng-repeat="x in list">
-                <div class="news-item transition" ng-click="setItem($index,$event)" style="{{x.style}}" ng-class="x.active?'active':''">
-                    <a ng-click="delItem($index, $event)" class="transition layui-icon layui-hide">&#x1006;</a>
-                    <a ng-click="dnItem($index, $event)" class="transition layui-icon layui-hide">&#xe61a;</a>
-                    <a ng-click="upItem($index, $event)" class="transition layui-icon layui-hide">&#xe619;</a>
-                    <span class="news-title" ng-bind="x.title"></span>
-                </div>
-                <hr>
-            </div>
-            <div ng-if="list.length<1" class="news-item transition active">
-                <a ng-click="delItem($index, $event)" class="transition layui-icon layui-hide">&#x1006;</a>
-                <a ng-click="dnItem($index, $event)" class="transition layui-icon layui-hide">&#xe61a;</a>
-                <a ng-click="upItem($index, $event)" class="transition layui-icon layui-hide">&#xe619;</a>
-                <span class="news-title"></span>
-                <hr>
-            </div>
-            <a class='article-add transition' ng-click="addItem()" data-text-tip="添加图文"><i class="fa fa-plus"></i></a>
-        </div>
-    </div>
-    <div class="layui-card news-right">
-        <div class="layui-card-body">
-            <form class="layui-form padding-20" role="form" name="news" onsubmit="return false">
-                <label class="layui-form-item relative block">
-                    <span class="color-green">文章标题</span>
-                    <input maxlength="64" ng-model="item.title" required placeholder="请在这里输入标题" name='title' class="layui-input">
-                </label>
-                <label class="layui-form-item relative block">
-                    <span class="color-green">文章作者</span>
-                    <input maxlength="64" ng-model="item.author" required placeholder="请输入文章作者" name='author' class="layui-input">
-                </label>
-                <div class="layui-form-item label-required-prev">
-                    <span class="color-green">图文封面大图片</span>
-                    <div class="layui-clear">
-                        <div class="upload-image-box pull-left transition" data-tips-image="{{item.local_url}}" style="{{item.style}}">
-                            <input ng-model="item.local_url" data-auto-none value="{{item.local_url}}" type="hidden" name="local_url">
-                        </div>
-                        <div class="pull-left padding-top-15 padding-left-15">
-                            <button type="button" data-title="上传图片" data-file="btn" data-type="jpg,png,jpeg" data-field="local_url" class="layui-btn layui-btn-sm layui-btn-primary">上传图片</button>
-                            <br>
-                            <label class="think-checkbox notselect margin-top-15">
-                                <input ng-model="item.show_cover_pic" ng-checked="!!item.show_cover_pic" data-auto-none type="checkbox" value="1" name="show_cover_pic"> 在正文顶部显示此图片
-                            </label>
-                        </div>
-                    </div>
-                    <p class="color-desc">封面大图片建议尺寸 900像素 * 500像素</p>
-                </div>
-                <div class="layui-form-item label-required-prev">
-                    <span class="color-green">图文文章内容</span>
-                    <textarea ng-model="item.content" name='content'></textarea>
-                </div>
-                <label class="layui-form-item relative block">
-                    <span class="help-block">摘要选填,如果不填写会默认抓取正文前54个字</span>
-                    <textarea ng-model="item.digest" name="digest" class="layui-textarea" style="height:80px;line-height:18px"></textarea>
-                </label>
-                <label class="layui-form-item relative block">
-                    <span class="help-block">原文链接 <span class="color-blue">选填</span>,填写之后在图文左下方会出现此链接</span>
-                    <input pattern="^(http:\/\/|^https:\/\/|^\/\/)((\w|=|\?|\.|\/|&|-)+)" placeholder="请输入跳转链接地址" ng-model="item.content_source_url" maxlength="200" name='content_source_url' class="layui-input">
-                </label>
-                <div class="layui-form-item text-center padding-top-30">
-                    <input ng-model="x.read_num" type="hidden">
-                    <button ng-click="submit()" type="button" class="layui-btn">保存图文</button>
-                </div>
-            </form>
-        </div>
-    </div>
-</div>
-
-{/block}
-
-
-{block name='script'}
-<script>
-    require(['angular', 'ckeditor'], function () {
-
-        var $form = $('form[name="news"]');
-        var $vali = $form.vali().data('validate');
-        var editor = window.createEditor('[name="content"]');
-
-        var app = angular.module("NewsEditor", []).run(callback);
-        angular.bootstrap(document.getElementById(app.name), [app.name]);
-
-        function callback($rootScope) {
-            $rootScope.list = [];
-            $rootScope.item = {};
-
-            $.form.load('{:request()->url()}', {output: 'json'}, 'get', function (ret) {
-                return $rootScope.$apply(function () {
-                    apply((ret.data || {articles: []}).articles || []);
-                }), false;
-            });
-
-            function apply(list) {
-                if (list.length < 1) list.push({
-                    title: '新建图文',
-                    author: '管理员',
-                    content: '文章内容',
-                    read_num: 0,
-                    local_url: '__ROOT__/static/plugs/uploader/theme/image.png',
-                });
-                for (var i in list) {
-                    list[i].active = false;
-                    list[i].style = "background-image:url('" + list[i].local_url + "')";
-                }
-                $rootScope.list = list;
-                $rootScope.item = $rootScope.list[0];
-                $rootScope.setItemValue('active', true);
-                setTimeout(function () {
-                    $vali.checkAllInput();
-                    editor.setData($rootScope.item.content);
-                    $('.layui-card-body.layui-hide').removeClass('layui-hide');
-                }, 100);
-            }
-
-            $rootScope.upItem = function (index, $event) {
-                $event.stopPropagation();
-                var tmp = [], cur = $rootScope.list[index];
-                if (index < 1) return false;
-                for (var i in $rootScope.list) {
-                    (parseInt(i) === parseInt(index) - 1) && tmp.push(cur);
-                    (parseInt(i) !== parseInt(index)) && tmp.push($rootScope.list[i]);
-                }
-                apply(tmp);
-            };
-
-            $rootScope.dnItem = function (index, $event) {
-                $event.stopPropagation();
-                var tmp = [], cur = $rootScope.list[index];
-                if (index > $rootScope.list.length - 2) return false;
-                for (var i in $rootScope.list) {
-                    (parseInt(i) !== parseInt(index)) && tmp.push($rootScope.list[i]);
-                    (parseInt(i) === parseInt(index) + 1) && tmp.push(cur);
-                }
-                apply(tmp);
-            };
-
-            $rootScope.delItem = function (index, $event) {
-                $event.stopPropagation();
-                var list = $rootScope.list, temp = [];
-                for (var i in list) (parseInt(i) !== parseInt(index)) && temp.push(list[i]);
-                apply(temp);
-            };
-
-            $rootScope.setItem = function (index, $event) {
-                $event.stopPropagation();
-                $vali.checkAllInput();
-                if ($form.find('.validate-error').size() > 0) return 0;
-                if (editor.getData().length < 1) return $.msg.tips('文章内容不能为空,请输入文章内容!');
-                for (var i in $rootScope.list) {
-                    if (parseInt(i) !== parseInt(index)) {
-                        $rootScope.list[i].active = false;
-                    } else {
-                        $rootScope.item.content = editor.getData();
-                        $rootScope.item = $rootScope.list[i];
-                        editor.setData($rootScope.item.content);
-                        $rootScope.setItemValue('active', true);
-                    }
-                }
-            };
-
-            $rootScope.setItemValue = function (name, value) {
-                $rootScope.item[name] = value;
-                $rootScope.item.style = "background-image:url('" + $rootScope.item.local_url + "')";
-            };
-
-            $rootScope.addItem = function () {
-                if ($rootScope.list.length > 7) return $.msg.tips('最多允许增加7篇文章哦!');
-                $rootScope.list.push({
-                    title: '新建图文',
-                    author: '管理员',
-                    content: '文章内容',
-                    read_num: 0,
-                    local_url: '__ROOT__/static/plugs/uploader/theme/image.png',
-                    style: "background-image:url('__ROOT__/static/plugs/uploader/theme/image.png')"
-                });
-            };
-
-            $rootScope.submit = function () {
-                $vali.checkAllInput();
-                if ($form.find('.validate-error').size() > 0) {
-                    return $.msg.tips('表单验证不成功,请输入需要的内容!');
-                }
-                $rootScope.item.content = editor.getData();
-                var data = [];
-                for (var i in $rootScope.list) data.push({
-                    id: $rootScope.list[i].id,
-                    title: $rootScope.list[i].title,
-                    author: $rootScope.list[i].author,
-                    digest: $rootScope.list[i].digest,
-                    content: $rootScope.list[i].content,
-                    read_num: $rootScope.list[i].read_num,
-                    local_url: $rootScope.list[i].local_url,
-                    show_cover_pic: $rootScope.list[i].show_cover_pic ? 1 : 0,
-                    content_source_url: $rootScope.list[i].content_source_url,
-                });
-                $.form.load('{:request()->url()}', {data: data}, "post");
-            };
-
-            $('[name="local_url"]').on('change', function () {
-                var value = this.value;
-                $rootScope.$apply(function () {
-                    $rootScope.setItemValue('local_url', value);
-                });
-            });
-        }
-    });
-</script>
-{/block}

+ 0 - 158
application/wechat/view/news/index.html

@@ -1,158 +0,0 @@
-{extend name='admin@main'}
-
-{block name="button"}
-<button data-open="{:url('add')}" class='layui-btn layui-btn-sm layui-btn-primary'>添加图文</button>
-{/block}
-
-{block name='content'}
-<div class="think-box-shadow">
-    <div id="news-box" class="layui-clear">
-        {foreach $list as $vo}
-        <div class="news-item">
-            <div class='news-tools layui-hide'>
-                <a data-phone-view="{:url('@wechat/api.review/news/'.$vo.id)}" href='javascript:void(0)'>预览</a>
-                <a data-open='{:url("edit")}?id={$vo.id}' href='javascript:void(0)'>编辑</a>
-                <a data-news-del="{$vo.id}" href='javascript:void(0)'>删除</a>
-            </div>
-            {foreach $vo.articles as $k => $v}
-            {if $k < 1}
-            <div data-tips-image='{$v.local_url}' class='news-articel-item' style='background-image:url("{$v.local_url}")'>
-                {if $v.title}<p>{$v.title}</p>{/if}
-            </div>
-            <div class="hr-line-dashed"></div>
-            {else}
-            <div class='news-articel-item other'>
-                <span>{$v.title}</span>
-                <div data-tips-image='{$v.local_url}' style='background-image:url("{$v.local_url}");'></div>
-            </div>
-            <div class="hr-line-dashed"></div>
-            {/if}
-            {/foreach}
-        </div>
-        {/foreach}
-    </div>
-    {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
-</div>
-{/block}
-
-{block name='script'}
-<script>
-
-    $('body').on('mouseenter', '.news-item', function () {
-        $(this).find('.news-tools').removeClass('layui-hide');
-    }).on('mouseleave', '.news-item', function () {
-        $(this).find('.news-tools').addClass('layui-hide');
-    });
-
-    require(['jquery.masonry'], function (Masonry) {
-        var item = document.querySelector('#news-box');
-        var msnry = new Masonry(item, {itemSelector: '.news-item', columnWidth: 0});
-        msnry.layout();
-        $('body').on('click', '[data-news-del]', function () {
-            var that = this;
-            var dialogIndex = $.msg.confirm('确定要删除图文吗?', function () {
-                $.form.load('{:url("remove")}', {value: 0, field: 'delete', id: that.getAttribute('data-news-del')}, 'post', function (ret) {
-                    if (ret.code) {
-                        $(that).parents('.news-item').remove();
-                        return $.msg.success(ret.msg), msnry.layout(), false;
-                    }
-                    return $.msg.error(ret.msg), false;
-                });
-                $.msg.close(dialogIndex);
-            });
-        });
-    });
-
-</script>
-{/block}
-
-{block name="style"}
-<style>
-    #news-box {
-        position: relative
-    }
-
-    #news-box .news-item {
-        top: 0;
-        left: 0;
-        padding: 5px;
-        margin: 10px;
-        width: 300px;
-        position: relative;
-        border: 1px solid #ccc;
-        box-sizing: content-box
-    }
-
-    #news-box .news-item .news-articel-item {
-        width: 100%;
-        height: 150px;
-        overflow: hidden;
-        position: relative;
-        background-size: 100%;
-        background-position: center center
-    }
-
-    #news-box .news-item .news-articel-item p {
-        bottom: 0;
-        width: 100%;
-        color: #fff;
-        padding: 5px;
-        max-height: 5em;
-        font-size: 12px;
-        overflow: hidden;
-        position: absolute;
-        text-overflow: ellipsis;
-        background: rgba(0, 0, 0, .7)
-    }
-
-    #news-box .news-item .news-articel-item.other {
-        height: 50px;
-        padding: 5px 0
-    }
-
-    #news-box .news-item .news-articel-item span {
-        width: 245px;
-        overflow: hidden;
-        line-height: 50px;
-        white-space: nowrap;
-        display: inline-block;
-        text-overflow: ellipsis
-    }
-
-    #news-box .news-item .news-articel-item div {
-        width: 50px;
-        height: 50px;
-        float: right;
-        overflow: hidden;
-        position: relative;
-        background-position: center center;
-        background-size: cover;
-    }
-
-    #news-box .hr-line-dashed {
-        margin: 6px 0 1px 0
-    }
-
-    #news-box .news-item .hr-line-dashed:last-child {
-        display: none
-    }
-
-    #news-box .news-tools {
-        top: 0;
-        z-index: 80;
-        color: #fff;
-        width: 302px;
-        padding: 0 5px;
-        margin-left: -6px;
-        line-height: 38px;
-        text-align: right;
-        position: absolute;
-        background: rgba(0, 0, 0, .7)
-    }
-
-    #news-box .news-tools a {
-        color: #fff;
-        margin-left: 10px
-    }
-</style>
-{/block}

+ 0 - 112
application/wechat/view/news/push.html

@@ -1,112 +0,0 @@
-<form data-auto='true' action='{:request()->url()}' style="position:relative">
-
-    <div class="col-xs-2 news-container">
-        <h5 class="text-center" style="margin:10px 0">微信图文</h5>
-        <div class="news-box">
-            {foreach $vo.articles as $key=>$value}
-            <div class="news-item transition" data-id="{$value.id}">
-                <div class="news-image" style='background-image:url({$value.local_url})'></div>
-                <span class="news-title">{$value.title}</span>
-            </div>
-            <hr/>
-            {/foreach}
-        </div>
-    </div>
-
-    <div class="col-xs-2 list-container">
-        <h5 class="text-center" style="margin:10px 0">指定粉丝标签推送 <a data-check-all> 全选 </a></h5>
-        <div class="list-item">
-
-            {foreach $fans_tags as $tag}
-            <label class='control-label layui-form-label' style='text-align:left!important'>
-                <input name="fans_tags[]" value='{$tag.id}' type="checkbox"/> {$tag.name} ({$tag.count})
-            </label>
-            {/foreach}
-
-            {literal}
-            <script id="push" type="text/template">
-                {{if data}}
-                {{each data as value key}}
-                {{if key <= 200}}
-                <label>{{value}}</label>
-                {{/if}}
-                {{/each}}
-                {{if (data.length > 200)}}
-                <label>...</label>
-                {{/if}}
-                {{else}}
-                <h5></h5>
-                {{/if}}
-            </script>
-            {/literal}
-        </div>
-        <div id='push-tags' class="list-item"></div>
-    </div>
-    <div style="clear:both;max-height:60px"></div>
-
-    <div class="bottom-btn text-center">
-        <button class="layui-btn">立即推送图文</button>
-        <button type='button' data-close='' data-confirm='确定要取消推送图文吗?' class="layui-btn layui-btn-danger">取消推送图文
-        </button>
-    </div>
-
-</form>
-
-<script>
-    require(['jquery', 'template'], function () {
-        var $allbtn = $('[data-check-all]').on('click', function () {
-            var check_status = check_checked();
-            $('input[name*=fans_tags]').map(function () {
-                this.checked = !check_status;
-            });
-            check_checked(), postpush();
-        });
-
-        /*重置和全选的效果处理*/
-        function check_checked() {
-            var allcheck = true;
-            $('input[name*=fans_tags]').map(function () {
-                (!this.checked) && (allcheck = false);
-            });
-            return ((allcheck) ? $allbtn.html('重置') : $allbtn.html('全选')), allcheck;
-        }
-
-        /*点击每一个选项都触发事件*/
-        $('input[name*=fans_tags]').on('click', function () {
-            check_checked();
-            postpush();
-        });
-
-        /*数据异步获取并显示出来*/
-        function postpush() {
-            var inp = $('input[name*=fans_tags]');
-            var group = [];
-            for (var i = 0; i < inp.length; i++) {
-                if (inp[i].checked === true) {
-                    group.push(inp[i].value);
-                }
-            }
-            $.post("{:url('wechat/news/push')}?action=getuser", {group: group.join(',')}, function (ret) {
-                var html = template('push', ret);
-                document.getElementById('push-tags').innerHTML = html;
-            });
-        }
-    });
-</script>
-
-<style>
-    body{min-width:500px}
-    #push-tags{max-height:300px;overflow:auto}
-    .bottom-btn{bottom:0;width:100%;padding:10px;display:block;background:#F7F7F7;position:absolute}
-    .news-container{width:200px;padding-right:8px}
-    .list-container{width:578px;padding-left:0;padding-right:8px}
-    .list-container h5 a{float:right;font-size:12px}
-    .list-container .list-item{padding:8px;overflow:auto;max-height:300px;border:1px solid #eee}
-    .list-container .list-item:after{content:'';clear:both;width:100%;display:block}
-    .list-container .list-item label{width:25%;float:left;display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}
-    .news-container .news-box{padding:8px;border:1px solid #eee}
-    .news-container .news-box hr{margin:4px}
-    .news-container .news-box .container{cursor:pointer;overflow:hidden;position:relative;border-radius:2px;border:1px solid #cecece}
-    .news-container .news-box .news-image{height:90px;background-size:100%;background-position:center center}
-    .news-container .news-box .news-title{position:absolute;background:rgba(0,0,0,.5);color:#fff;padding:2px;margin:0;bottom:0;left:0;right:0;text-align:right;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}
-</style>

+ 0 - 77
application/wechat/view/news/select.html

@@ -1,77 +0,0 @@
-{extend name='admin@index/index'}
-
-{block name='style'}
-<style>
-    body{min-width:500px}
-    .news-container{position:relative}
-    .news-container .news-item{top:0;left:0;width:232px;margin:10px;padding:5px;cursor:pointer;position:relative;border:1px solid #ccc;box-sizing:content-box}
-    .news-container .news-item.active,.news-container .news-item:hover{border-color:#09c;box-shadow:1px 0 10px #09c}
-    .news-container .news-item .news-articel-item{width:100%;height:150px;overflow:hidden;position:relative;background-size:100%;background-position:center center}
-    .news-container .news-item .news-articel-item p{bottom:0;width:100%;color:#fff;padding:5px;max-height:5em;font-size:12px;overflow:hidden;position:absolute;text-overflow:ellipsis;background:rgba(0,0,0,.7)}
-    .news-container .news-item .news-articel-item.other{height:50px;padding:5px 0}
-    .news-container .news-item .news-articel-item .left-image{width:50px;height:50px;float:left;overflow:hidden;position:relative;background-size:100%;background-position:center center}
-    .news-container .news-item .news-articel-item .right-text{float:left;width:172px;overflow:hidden;padding-right:10px;text-overflow:ellipsis}
-    .news-container .news-item .hr-line-dashed:last-child{display:none}
-    .news-container .hr-line-dashed{margin:6px 0 1px 0}
-    .page-style{bottom:0;width:100%;height:50px;padding:0 10px;position:fixed;background:#fff}
-    .page-style .pagination,.page-style .pagination-trigger{margin:10px 0!important;padding:0 10px!important}
-</style>
-{/block}
-
-{block name="body"}
-<div class="layui-clear news-container layui-hide">
-    {foreach $list as $vo}
-    <div class="news-item" data-news-id="{$vo.id}">
-        {foreach $vo.articles as $k => $v}
-        {if $k < 1}
-        <div class='news-articel-item' style='background-image:url("{$v.local_url}")'>
-            {if $v.title}<p>{$v.title}</p>{/if}
-        </div>
-        <div class="hr-line-dashed"></div>
-        {else}
-        <div class='news-articel-item other'>
-            <div class='right-text'>{$v.title}</div>
-            <div class='left-image' style='background-image:url("{$v.local_url}");'></div>
-        </div>
-        <div class="hr-line-dashed"></div>
-        {/if}
-        {/foreach}
-    </div>
-    {/foreach}
-    {if empty($list)}<p class="notdata">没有记录哦!</p>{/if}
-</div>
-<div class="margin-bottom-20 margin-top-20"></div>
-<div class="page-style">{if isset($pagehtml)}{$pagehtml|raw}{/if}</div>
-{/block}
-
-{block name="script"}
-<script>
-    require(['jquery.masonry'], function (Masonry) {
-        $('.news-container.layui-hide').removeClass('layui-hide');
-        var msnry = new Masonry($('.news-container').get(0), {itemSelector: '.news-item', columnWidth: 0});
-        msnry.layout();
-        // 事件处理
-        $('.news-item').on('mouseenter', '.news-container', function () {
-            $(this).addClass('active');
-        }).on('mouseleave', '.news-container', function () {
-            $(this).removeClass('active');
-        });
-        // 外部选择器
-        var seletor = '[name="{$Think.get.field|decode|default=0}"]';
-        if (seletor) {
-            $('[data-news-id]').on('click', function () {
-                window.top.$(seletor).val($(this).attr('data-news-id')).trigger('change');
-                parent.layer.close(parent.layer.getFrameIndex(window.name))
-            });
-        }
-        // 分页事件处理
-        $('body').off('change', '.pagination-trigger select').on('change', '.pagination-trigger select', function () {
-            var urls = this.options[this.selectedIndex].getAttribute('data-url').split('#');
-            urls.shift();
-            window.location.href = urls.join('#');
-        }).off('click', '[data-open]').on('click', '[data-open]', function () {
-            window.location.href = this.getAttribute('data-open');
-        });
-    });
-</script>
-{/block}