songxingwei 3 年之前
父节点
当前提交
3e5f09d1fa

+ 0 - 63
application/service/controller/Config.php

@@ -1,63 +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\service\controller;
-
-use library\Controller;
-
-/**
- * 开放平台参数配置
- * Class Config
- * @package app\service\controller
- */
-class Config extends Controller
-{
-
-    /**
-     * 定义当前操作表名
-     * @var string
-     */
-    public $table = 'WechatServiceConfig';
-
-    /**
-     * 显示参数配置
-     * @auth true
-     * @menu true
-     */
-    public function index()
-    {
-        $this->title = '开放平台参数配置';
-        $this->fetch();
-    }
-
-    /**
-     * 修改参数配置
-     * @auth true
-     * @throws \think\Exception
-     * @throws \think\exception\PDOException
-     */
-    public function edit()
-    {
-        $this->applyCsrfToken();
-        if ($this->request->isGet()) {
-            $this->fetch('form');
-        } else {
-            $post = $this->request->post();
-            foreach ($post as $k => $v) sysconf($k, $v);
-            $this->success('参数修改成功!');
-        }
-    }
-
-}

+ 0 - 158
application/service/controller/Fans.php

@@ -1,158 +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\service\controller;
-
-use app\service\queue\WechatQueue;
-use app\service\service\WechatService;
-use library\Controller;
-use think\Db;
-use think\exception\HttpResponseException;
-
-/**
- * 微信粉丝管理
- * Class Fans
- * @package app\wechat\controller
- */
-class Fans extends Controller
-{
-
-    protected $appid = '';
-
-    /**
-     * 绑定数据表
-     * @var string
-     */
-    protected $table = 'WechatFans';
-
-    /**
-     * 初始化函数
-     * @return Controller|void
-     */
-    protected function initialize()
-    {
-        $this->appid = input('appid', session('current_appid'));
-        if (empty($this->appid)) {
-            $this->where = ['status' => '1', 'service_type' => '2', 'is_deleted' => '0', 'verify_type' => '0'];
-            $this->appid = Db::name('WechatServiceConfig')->where($this->where)->value('authorizer_appid');
-        }
-        if (empty($this->appid)) {
-            $this->fetch('/not-auth');
-        } else {
-            session('current_appid', $this->appid);
-        }
-        if ($this->request->isGet()) {
-            $this->where = ['status' => '1', 'service_type' => '2', 'is_deleted' => '0', 'verify_type' => '0'];
-            $this->wechats = Db::name('WechatServiceConfig')->where($this->where)->order('id desc')->column('authorizer_appid,nick_name');
-        }
-    }
-
-    /**
-     * 微信粉丝管理
-     * @auth true
-     * @menu true
-     */
-    public function index()
-    {
-        $this->title = '微信粉丝管理';
-        $query = $this->_query($this->table)->like('nickname')->equal('subscribe,is_black');
-        $query->dateBetween('subscribe_at')->where(['appid' => $this->appid])->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($this->appid)->batchBlackList($openids);
-                Db::name('WechatFans')->where(['appid' => $this->appid])->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($this->appid)->batchUnblackList($openids);
-                Db::name('WechatFans')->where(['appid' => $this->appid])->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 {
-            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 - 166
application/service/controller/Index.php

@@ -1,166 +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\service\controller;
-
-use app\service\service\BuildService;
-use app\service\service\WechatService;
-use library\Controller;
-use think\Db;
-use think\exception\HttpResponseException;
-
-/**
- * 公众授权管理
- * @package app\service\controller
- */
-class Index extends Controller
-{
-
-    /**
-     * 绑定数据表
-     * @var string
-     */
-    public $table = 'WechatServiceConfig';
-
-    /**
-     * 公众授权管理
-     * @auth true
-     * @menu true
-     * @return string
-     * @throws \think\Exception
-     * @throws \think\db\exception\DataNotFoundException
-     * @throws \think\db\exception\ModelNotFoundException
-     * @throws \think\exception\DbException
-     */
-    public function index()
-    {
-        $this->applyCsrfToken();
-        $this->title = '公众授权管理';
-        $query = $this->_query($this->table)->like('authorizer_appid,nick_name,principal_name');
-        $query = $query->equal('service_type,status')->dateBetween('create_at');
-        $query->where(['is_deleted' => '0'])->order('id desc')->page();
-    }
-
-    /**
-     * 清理调用次数
-     * @auth true
-     * @throws \WeChat\Exceptions\InvalidResponseException
-     * @throws \WeChat\Exceptions\LocalCacheException
-     */
-    public function clearQuota()
-    {
-        $appid = input('appid');
-        $result = WechatService::WeChatLimit($appid)->clearQuota();
-        if (empty($result['errcode']) && $result['errmsg'] === 'ok') {
-            $this->success('接口调用次数清零成功!');
-        } elseif (isset($result['errmsg'])) {
-            $this->error('接口调用次数清零失败,请稍候再试!' . $result['errmsg']);
-        } else {
-            $this->error('接口调用次数清零失败,请稍候再试!');
-        }
-    }
-
-    /**
-     * 同步指定授权公众号
-     * @auth true
-     */
-    public function sync()
-    {
-        try {
-            $appid = $this->request->get('appid');
-            $where = ['authorizer_appid' => $appid, 'is_deleted' => '0', 'status' => '1'];
-            $author = Db::name('WechatServiceConfig')->where($where)->find();
-            if (empty($author)) $this->error('无效的授权信息,请同步其它公众号!');
-            $data = BuildService::filter(WechatService::service()->getAuthorizerInfo($appid));
-            $data['authorizer_appid'] = $appid;
-            $where = ['authorizer_appid' => $data['authorizer_appid']];
-            $appkey = Db::name('WechatServiceConfig')->where($where)->value('appkey');
-            if (empty($appkey)) $data['appkey'] = md5(uniqid('', true));
-            if (data_save('WechatServiceConfig', $data, 'authorizer_appid')) {
-                $this->success('更新公众号授权成功!', '');
-            }
-        } catch (HttpResponseException $exception) {
-            throw $exception;
-        } catch (\Exception $e) {
-            $this->error("获取授权信息失败,请稍候再试!<br>{$e->getMessage()}");
-        }
-    }
-
-    /**
-     * 同步所有授权公众号
-     * @auth true
-     */
-    public function syncall()
-    {
-        try {
-            $wechat = WechatService::service();
-            $result = $wechat->getAuthorizerList();
-            foreach ($result['list'] as $item) if (!empty($item['refresh_token']) && !empty($item['auth_time'])) {
-                $data = BuildService::filter($wechat->getAuthorizerInfo($item['authorizer_appid']));
-                $data['is_deleted'] = '0';
-                $data['authorizer_appid'] = $item['authorizer_appid'];
-                $data['authorizer_refresh_token'] = $item['refresh_token'];
-                $data['create_at'] = date('Y-m-d H:i:s', $item['auth_time']);
-                $where = ['authorizer_appid' => $data['authorizer_appid']];
-                $appkey = Db::name('WechatServiceConfig')->where($where)->value('appkey');
-                if (empty($appkey)) $data['appkey'] = md5(uniqid('', true));
-                if (!data_save('WechatServiceConfig', $data, 'authorizer_appid')) {
-                    $this->error('获取授权信息失败,请稍候再试!', '');
-                }
-            }
-            $this->success('同步所有授权信息成功!', '');
-        } 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);
-    }
-
-    /**
-     * 禁用公众号授权
-     * @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']);
-    }
-}

+ 0 - 174
application/service/controller/api/Client.php

@@ -1,174 +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\service\controller\api;
-
-use app\service\service\WechatService;
-use library\tools\JsonRpcServer;
-use think\Controller;
-use think\Db;
-use think\exception\HttpResponseException;
-
-/**
- * 获取微信SDK实例对象
- * Class Instance
- * @package app\wechat\controller
- */
-class Client extends Controller
-{
-
-    /**
-     * 当前配置
-     * @var string
-     */
-    protected $config = [];
-
-    /**
-     * 当前APPID
-     * @var string
-     */
-    protected $appid = '';
-
-    /**
-     * 接口实例名称
-     * @var string
-     */
-    protected $name = '';
-
-    /**
-     * 接口类型
-     * @var string
-     */
-    protected $type = '';
-
-    /**
-     * 错误消息
-     * @var string
-     */
-    protected $message = '';
-
-    /**
-     * 启动Yar接口服务
-     * @param string $param AppName-AppId-AppKey
-     * @return string
-     */
-    public function yar($param)
-    {
-        try {
-            $instance = $this->create($param);
-            $service = new \Yar_Server(empty($instance) ? $this : $instance);
-            $service->handle();
-        } catch (\Exception $e) {
-            return $e->getMessage();
-        }
-    }
-
-    /**
-     * 启动SOAP接口服务
-     * @param string $param AppName-AppId-AppKey
-     * @return string
-     */
-    public function soap($param)
-    {
-        try {
-            $instance = $this->create($param);
-            $service = new \SoapServer(null, ['uri' => strtolower($this->name)]);
-            $service->setObject(empty($instance) ? $this : $instance);
-            $service->handle();
-        } catch (\Exception $e) {
-            return $e->getMessage();
-        }
-    }
-
-    /**
-     * JsonRpc 接口标准
-     * @param string $param
-     * @return string
-     */
-    public function jsonrpc($param)
-    {
-        try {
-            $instance = $this->create($param);
-            JsonRpcServer::instance()->handle(empty($instance) ? $this : $instance);
-        } catch (HttpResponseException $exception) {
-            throw $exception;
-        } catch (\Exception $e) {
-            return $e->getMessage();
-        }
-    }
-
-    /**
-     * 创建接口服务
-     * @param string $token
-     * @return \WeChat\Oauth|\WeChat\Pay|\WeChat\Receive|\WeChat\Script|\WeChat\User|\WeOpen\Service
-     * @throws \think\db\exception\DataNotFoundException
-     * @throws \think\db\exception\ModelNotFoundException
-     * @throws \think\exception\DbException
-     * @throws \think\Exception
-     */
-    private function create($token)
-    {
-        if ($this->auth($token)) {
-            $weminiClassName = 'Account,Basic,Code,Domain,Tester,User,Crypt,Plugs,Poi,Qrcode,Template,Total,Delivery,Image,Logistics,Message,Ocr,Security,Soter';
-            $wechatClassName = 'Card,Custom,Limit,Media,Menu,Oauth,Pay,Product,Qrcode,Receive,Scan,Script,Shake,Tags,Template,User,Wifi';
-            if ($this->type === 'wechat' && stripos($wechatClassName, $this->name) !== false) {
-                $instance = WechatService::instance($this->name, $this->appid, 'WeChat');
-            } elseif ($this->type === 'wemini' && stripos($weminiClassName, $this->name) !== false) {
-                $instance = WechatService::instance($this->name, $this->appid, 'WeMini');
-            } elseif (stripos('Service,MiniApp', $this->name) !== false) {
-                $instance = WechatService::instance($this->name, $this->appid, 'WeOpen');
-            } elseif (stripos('Wechat,Config,Handler', $this->name) !== false) {
-                $className = "\\app\\service\\handler\\WechatHandler";
-                $instance = new $className($this->config);
-            }
-            if (!empty($instance)) return $instance;
-        }
-        throw new \think\Exception($this->message);
-    }
-
-    /**
-     * 加载微信实例对象
-     * @param string $token 数据格式 name|appid|appkey
-     * @return bool
-     * @throws \think\Exception
-     * @throws \think\db\exception\DataNotFoundException
-     * @throws \think\db\exception\ModelNotFoundException
-     * @throws \think\exception\DbException
-     */
-    private function auth($token = '')
-    {
-        list($this->name, $this->appid, $appkey, $this->type) = explode('-', $token . '---');
-        if (empty($this->name) || empty($this->appid) || empty($appkey)) {
-            $this->message = '缺少必要的参数AppId或AppKey';
-            return false;
-        }
-        $where = ['authorizer_appid' => $this->appid, 'status' => '1', 'is_deleted' => '0'];
-        $this->config = Db::name('WechatServiceConfig')->where($where)->find();
-        if (empty($this->config)) {
-            $this->message = '无效的微信绑定对象';
-            return false;
-        }
-        if (strtolower($this->config['appkey']) !== strtolower($appkey)) {
-            $this->message = '授权AppId与AppKey不匹配';
-            return false;
-        }
-        $this->message = '';
-        $this->name = ucfirst(strtolower($this->name));
-        $this->type = strtolower(empty($this->type) ? 'WeChat' : $this->type);
-        Db::name('WechatServiceConfig')->where($where)->setInc('total', 1);
-        return true;
-    }
-
-}

+ 0 - 184
application/service/controller/api/Push.php

@@ -1,184 +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\service\controller\api;
-
-use app\service\service\BuildService;
-use app\service\service\WechatService;
-use library\Controller;
-use think\Db;
-
-/**
- * 微信推送事件处理
- *
- * @author Anyon <zoujingli@qq.com>
- * @date 2016/10/18 12:38
- */
-class Push extends Controller
-{
-
-    /**
-     * 微信API推送事件处理
-     * @param string $appid
-     * @return 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
-     */
-    public function notify($appid)
-    {
-        if (in_array($appid, ['wx570bc396a51b8ff8', 'wxd101a85aa106f53e'])) {
-            # 全网发布接口测试
-            return \app\service\handler\PublishHandler::handler($appid);
-        } else {
-            # 接口类正常服务
-            return \app\service\handler\ReceiveHandler::handler($appid);
-        }
-    }
-
-    /**
-     * 一、处理服务推送Ticket
-     * 二、处理取消公众号授权
-     * @return string
-     * @throws \think\Exception
-     * @throws \WeChat\Exceptions\InvalidResponseException
-     * @throws \WeChat\Exceptions\LocalCacheException
-     * @throws \think\exception\PDOException
-     */
-    public function ticket()
-    {
-        try {
-            $server = WechatService::service();
-            if (!($data = $server->getComonentTicket())) {
-                return "Ticket event handling failed.";
-            }
-        } catch (\Exception $e) {
-            return "Ticket event handling failed, {$e->getMessage()}";
-        }
-        if (!empty($data['AuthorizerAppid']) && isset($data['InfoType'])) {
-            # 授权成功通知
-            if ($data['InfoType'] === 'authorized') {
-                Db::name('WechatServiceConfig')->where(['authorizer_appid' => $data['AuthorizerAppid']])->update(['is_deleted' => '0']);
-            }
-            # 接收取消授权服务事件
-            if ($data['InfoType'] === 'unauthorized') {
-                Db::name('WechatServiceConfig')->where(['authorizer_appid' => $data['AuthorizerAppid']])->update(['is_deleted' => '1']);
-            }
-            # 授权更新通知
-            if ($data['InfoType'] === 'updateauthorized') {
-                $_GET['auth_code'] = $data['PreAuthCode'];
-                $this->applyAuth($server);
-            }
-        }
-        return 'success';
-    }
-
-    /**
-     * 网页授权
-     * @throws \think\Exception
-     * @throws \WeChat\Exceptions\InvalidResponseException
-     * @throws \WeChat\Exceptions\LocalCacheException
-     */
-    public function oauth()
-    {
-        list($mode, $appid, $enurl, $sessid) = [
-            $this->request->get('mode'), $this->request->get('state'),
-            $this->request->get('enurl'), $this->request->get('sessid'),
-        ];
-        $service = WechatService::service();
-        $result = $service->getOauthAccessToken($appid);
-        if (empty($result['openid'])) throw new \think\Exception('网页授权失败, 无法进一步操作!');
-        cache("{$appid}_{$sessid}_openid", $result['openid'], 3600);
-        if (!empty($mode)) {
-            $wechat = new \WeChat\Oauth($service->getConfig($appid));
-            $fans = $wechat->getUserInfo($result['access_token'], $result['openid']);
-            if (empty($fans)) throw new \think\Exception('网页授权信息获取失败, 无法进一步操作!');
-            cache("{$appid}_{$sessid}_fans", $fans, 3600);
-        }
-        redirect(decode($enurl), [], 301)->send();
-    }
-
-    /**
-     * 跳转到微信服务授权页面
-     * @param string $redirect
-     * @return string
-     * @throws \think\Exception
-     * @throws \WeChat\Exceptions\InvalidResponseException
-     * @throws \WeChat\Exceptions\LocalCacheException
-     * @throws \think\exception\PDOException
-     */
-    public function auth($redirect = '')
-    {
-        $fromRedirect = decode($redirect);
-        if (empty($redirect) || empty($fromRedirect)) {
-            return '请传入回跳Redirect参数 ( 请使用ENCODE加密 )';
-        }
-        # 预授权码不为空,则表示可以进行授权处理
-        $service = WechatService::service();
-        if (($auth_code = $this->request->get('auth_code'))) {
-            return $this->applyAuth($service, $fromRedirect);
-        }
-        # 生成微信授权链接,使用刷新跳转到授权网页
-        $url = url("@service/api.push/auth/{$redirect}", false, true, true);
-        if (($redirect = $service->getAuthRedirect($url))) {
-            ob_clean();
-            header("Refresh:0;url={$redirect}");
-            return "<script>window.location.href='{$redirect}';</script><a href='{$redirect}'>跳转中...</a>";
-        }
-        # 生成微信授权链接失败
-        return "<h2>Failed to create authorization. Please return to try again.</h2>";
-    }
-
-    /**
-     * 公众号授权绑定数据处理
-     * @param \WeOpen\Service $service
-     * @param string|null $redirect 授权成功回跳地址
-     * @return string
-     * @throws \WeChat\Exceptions\InvalidResponseException
-     * @throws \WeChat\Exceptions\LocalCacheException
-     * @throws \think\Exception
-     * @throws \think\exception\PDOException
-     */
-    private function applyAuth($service, $redirect = null)
-    {
-        // 通过授权code换取公众号信息
-        $result = $service->getQueryAuthorizerInfo();
-        if (empty($result['authorizer_appid'])) {
-            return "接收微信第三方平台授权失败! ";
-        }
-        // 重新通过接口查询公众号参数
-        if (!($update = array_merge($result, $service->getAuthorizerInfo($result['authorizer_appid'])))) {
-            return '获取授权数据失败, 请稍候再试!';
-        }
-        // 生成公众号授权参数
-        $update = array_merge(BuildService::filter($update), [
-            'status' => '1', 'is_deleted' => '0', 'expires_in' => time() + 7000, 'create_at' => date('y-m-d H:i:s'),
-        ]);
-        // 微信接口APPKEY处理与更新
-        $config = Db::name('WechatServiceConfig')->where(['authorizer_appid' => $result['authorizer_appid']])->find();
-        $update['appkey'] = empty($config['appkey']) ? md5(uniqid('', true)) : $config['appkey'];
-        data_save('WechatServiceConfig', $update, 'authorizer_appid');
-        if (!empty($redirect)) { // 带上appid与appkey跳转到应用
-            $split = stripos($redirect, '?') > 0 ? '&' : '?';
-            $realurl = preg_replace(['/appid=\w+/i', '/appkey=\w+/i', '/(\?\&)$/i'], ['', '', ''], $redirect);
-            return redirect("{$realurl}{$split}appid={$update['authorizer_appid']}&appkey={$update['appkey']}");
-        }
-    }
-
-}

+ 0 - 69
application/service/handler/PublishHandler.php

@@ -1,69 +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\service\handler;
-
-use app\service\service\WechatService;
-
-/**
- * 第三方平台测试上线
- *
- * @author Anyon <zoujingli@qq.com>
- * @date 2016/10/27 14:14
- */
-class PublishHandler
-{
-
-    /**
-     * 当前微信APPID
-     * @var string
-     */
-    protected static $appid;
-
-    /**
-     * 事件初始化
-     * @param string $appid
-     * @return string
-     * @throws \WeChat\Exceptions\InvalidDecryptException
-     * @throws \WeChat\Exceptions\InvalidResponseException
-     * @throws \WeChat\Exceptions\LocalCacheException
-     */
-    public static function handler($appid)
-    {
-        try {
-            $wechat = WechatService::WeChatReceive($appid);
-        } catch (\Exception $e) {
-            return "Wechat message handling failed, {$e->getMessage()}";
-        }
-        /* 分别执行对应类型的操作 */
-        switch (strtolower($wechat->getMsgType())) {
-            case 'text':
-                $receive = $wechat->getReceive();
-                if ($receive['Content'] === 'TESTCOMPONENT_MSG_TYPE_TEXT') {
-                    return $wechat->text('TESTCOMPONENT_MSG_TYPE_TEXT_callback')->reply([], true);
-                } else {
-                    $key = str_replace("QUERY_AUTH_CODE:", '', $receive['Content']);
-                    WechatService::service()->getQueryAuthorizerInfo($key);
-                    return $wechat->text("{$key}_from_api")->reply([], true);
-                }
-            case 'event':
-                $receive = $wechat->getReceive();
-                return $wechat->text("{$receive['Event']}from_callback")->reply([], true);
-            default:
-                return 'success';
-        }
-    }
-
-}

+ 0 - 69
application/service/handler/ReceiveHandler.php

@@ -1,69 +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\service\handler;
-
-use app\service\service\WechatService;
-use think\Db;
-
-/**
- * 微信推送消息处理
- *
- * @author Anyon <zoujingli@qq.com>
- * @date 2016/10/27 14:14
- */
-class ReceiveHandler
-{
-
-    /**
-     * 事件初始化
-     * @param string $appid
-     * @return string
-     * @throws \think\db\exception\DataNotFoundException
-     * @throws \think\db\exception\ModelNotFoundException
-     * @throws \think\exception\DbException
-     * @throws \think\Exception
-     */
-    public static function handler($appid)
-    {
-        try {
-            $wechat = WechatService::WeChatReceive($appid);
-        } catch (\Exception $e) {
-            return "Wechat message handling failed, {$e->getMessage()}";
-        }
-        // 验证微信配置信息
-        $config = Db::name('WechatServiceConfig')->where(['authorizer_appid' => $appid])->find();
-        if (empty($config) || empty($config['appuri'])) {
-            \think\facade\Log::error(($message = "微信{$appid}授权配置验证无效"));
-            return $message;
-        }
-        try {
-            list($data, $openid) = [$wechat->getReceive(), $wechat->getOpenid()];
-            if (isset($data['EventKey']) && is_object($data['EventKey'])) $data['EventKey'] = (array)$data['EventKey'];
-            $input = ['openid' => $openid, 'appid' => $appid, 'receive' => serialize($data), 'encrypt' => intval($wechat->isEncrypt())];
-            if (is_string($result = http_post($config['appuri'], $input, ['timeout' => 30]))) {
-                if (is_array($json = json_decode($result, true))) {
-                    return $wechat->reply($json, true, $wechat->isEncrypt());
-                } else {
-                    return $result;
-                }
-            }
-        } catch (\Exception $e) {
-            \think\facade\Log::error("微信{$appid}接口调用异常,{$e->getMessage()}");
-        }
-        return 'success';
-    }
-
-}

+ 0 - 161
application/service/handler/WechatHandler.php

@@ -1,161 +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\service\handler;
-
-use app\service\service\WechatService as WechatLogic;
-use think\Db;
-
-/**
- * 微信网页授权接口
- * Class WechatHandler
- * @package app\wechat\handler
- * @author Anyon <zoujingli@qq.com>
- */
-class WechatHandler
-{
-    /**
-     * 当前微信APPID
-     * @var string
-     */
-    protected $appid;
-
-    /**
-     * 当前微信配置
-     * @var array
-     */
-    protected $config;
-
-    /**
-     * 错误消息
-     * @var string
-     */
-    protected $message;
-
-    /**
-     * Wechat constructor.
-     * @param array $config
-     */
-    public function __construct($config = [])
-    {
-        $this->config = $config;
-        $this->appid = isset($config['authorizer_appid']) ? $config['authorizer_appid'] : '';
-    }
-
-    /**
-     * 检查微信配置服务初始化状态
-     * @return boolean
-     * @throws \think\Exception
-     */
-    private function checkInit()
-    {
-        if (!empty($this->config)) return true;
-        throw new \think\Exception('Wechat Please bind Wechat first');
-    }
-
-    /**
-     * 获取当前公众号配置
-     * @return array|boolean
-     * @throws \think\Exception
-     */
-    public function getConfig()
-    {
-        $this->checkInit();
-        $info = Db::name('WechatServiceConfig')->where(['authorizer_appid' => $this->appid])->find();
-        if (empty($info)) return false;
-        if (isset($info['id'])) unset($info['id']);
-        return $info;
-    }
-
-    /**
-     * 设置微信接口通知URL地址
-     * @param string $notifyUri 接口通知URL地址
-     * @return boolean
-     * @throws \think\Exception
-     * @throws \think\exception\PDOException
-     */
-    public function setApiNotifyUri($notifyUri)
-    {
-        $this->checkInit();
-        if (empty($notifyUri)) throw new \think\Exception('请传入微信通知URL');
-        list($where, $data) = [['authorizer_appid' => $this->appid], ['appuri' => $notifyUri]];
-        return Db::name('WechatServiceConfig')->where($where)->update($data) !== false;
-    }
-
-    /**
-     * 更新接口Appkey(成功返回新的Appkey)
-     * @return bool|string
-     * @throws \think\Exception
-     * @throws \think\exception\PDOException
-     */
-    public function updateApiAppkey()
-    {
-        $this->checkInit();
-        $data = ['appkey' => md5(uniqid())];
-        Db::name('WechatServiceConfig')->where(['authorizer_appid' => $this->appid])->update($data);
-        return $data['appkey'];
-    }
-
-    /**
-     * 获取公众号的配置参数
-     * @param string $name 参数名称
-     * @return array|string
-     * @throws \think\Exception
-     */
-    public function config($name = null)
-    {
-        $this->checkInit();
-        return WechatLogic::WeChatScript($this->appid)->config->get($name);
-    }
-
-    /**
-     * 微信网页授权
-     * @param string $sessid 当前会话id(可用session_id()获取)
-     * @param string $selfUrl 当前会话URL地址(需包含域名的完整URL地址)
-     * @param int $fullMode 网页授权模式(0静默模式,1高级授权)
-     * @return array|bool
-     * @throws \think\Exception
-     */
-    public function oauth($sessid, $selfUrl, $fullMode = 0)
-    {
-        $this->checkInit();
-        $fans = cache("{$this->appid}_{$sessid}_fans");
-        $openid = cache("{$this->appid}_{$sessid}_openid");
-        if (!empty($openid) && (empty($fullMode) || !empty($fans))) {
-            return ['openid' => $openid, 'fans' => $fans, 'url' => ''];
-        }
-        $service = WechatLogic::service();
-        $mode = empty($fullMode) ? 'snsapi_base' : 'snsapi_userinfo';
-        $url = url('@service/api.push/oauth', '', true, true);
-        $params = ['mode' => $fullMode, 'sessid' => $sessid, 'enurl' => encode($selfUrl)];
-        $authurl = $service->getOauthRedirect($this->appid, $url . '?' . http_build_query($params), $mode);
-        return ['openid' => $openid, 'fans' => $fans, 'url' => $authurl];
-    }
-
-    /**
-     * 微信网页JS签名
-     * @param string $url 当前会话URL地址(需包含域名的完整URL地址)
-     * @return array|boolean
-     * @throws \WeChat\Exceptions\InvalidResponseException
-     * @throws \WeChat\Exceptions\LocalCacheException
-     * @throws \think\Exception
-     */
-    public function jsSign($url)
-    {
-        $this->checkInit();
-        return WechatLogic::WeChatScript($this->appid)->getJsSign($url);
-    }
-
-}

+ 0 - 88
application/service/queue/WechatQueue.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\service\queue;
-
-use app\service\service\WechatService;
-use app\wechat\service\FansService;
-use think\console\Input;
-use think\console\Output;
-use think\Db;
-
-/**
- * Class Jobs
- * @package app\wechat
- */
-class WechatQueue
-{
-    /**
-     * 当前类名
-     * @var string
-     */
-    const URI = self::class;
-
-    /**
-     * 当前操作APPID
-     * @var string
-     */
-    protected $appid;
-
-    /**
-     * 执行任务
-     * @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 = [])
-    {
-        $this->appid = $data['appid'];
-        $wechat = WechatService::WeChatUser($this->appid);
-        // 获取远程粉丝
-        list($next, $done) = ['', 0];
-        $output->writeln('Start synchronizing fans from the Wechat server');
-        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, $this->appid);
-                }
-            }
-            $next = $result['total'] > $done ? $result['next_openid'] : null;
-        }
-        // 同步粉丝黑名单
-        list($next, $done) = ['', 0];
-        $output->writeln('Start synchronizing black from the Wechat server');
-        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) {
-                $where = [['is_black', 'eq', '0'], ['openid', 'in', $chunk]];
-                Db::name('WechatFans')->where($where)->update(['is_black' => '1']);
-            }
-            $next = $result['total'] > $done ? $result['next_openid'] : null;
-        }
-        // 同步粉丝标签列表
-        $output->writeln('Start synchronizing tags from the Wechat server');
-        if (is_array($list = WechatService::WeChatTags($this->appid)->getTags()) && !empty($list['tags'])) {
-            foreach ($list['tags'] as &$tag) $tag['appid'] = $this->appid;
-            Db::name('WechatFansTags')->where('1=1')->delete();
-            Db::name('WechatFansTags')->insertAll($list['tags']);
-        }
-    }
-
-}

+ 0 - 53
application/service/service/BuildService.php

@@ -1,53 +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\service\service;
-
-/**
- * 授权数据处理
- * Class Build
- * @package app\service\service
- */
-class BuildService
-{
-
-    /**
-     * 授权数据过滤转换处理
-     * @param array $info
-     * @return mixed
-     */
-    public static function filter(array $info)
-    {
-        if (isset($info['func_info'])) $info['func_info'] = join(',', array_map(function ($tmp) {
-            return $tmp['funcscope_category']['id'];
-        }, $info['func_info']));
-        $info['verify_type_info'] = join(',', $info['verify_type_info']);
-        $info['service_type_info'] = join(',', $info['service_type_info']);
-        $info['business_info'] = json_encode($info['business_info'], JSON_UNESCAPED_UNICODE);
-        // 微信类型:  0 代表订阅号, 2 代表服务号, 3 代表小程序
-        $info['service_type'] = intval($info['service_type_info']) === 2 ? 2 : 0;
-        if (!empty($info['MiniProgramInfo'])) {
-            // 微信类型:  0 代表订阅号, 2 代表服务号, 3 代表小程序
-            $info['service_type'] = 3;
-            // 小程序信息
-            $info['miniprograminfo'] = json_encode($info['MiniProgramInfo'], JSON_UNESCAPED_UNICODE);
-        }
-        unset($info['MiniProgramInfo']);
-        // 微信认证: -1 代表未认证, 0 代表微信认证
-        $info['verify_type'] = intval($info['verify_type_info']) !== 0 ? -1 : 0;
-        return $info;
-    }
-
-}

+ 0 - 83
application/service/service/MichatService.php

@@ -1,83 +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\service\service;
-
-use library\tools\Http;
-use think\Exception;
-
-/**
- * 小米消息服务
- * Class MichatService
- * @package app\service\service
- */
-class MichatService
-{
-    const URI = 'https://mimc.chat.xiaomi.net';
-
-    const BIZ_TYPE_PING = 'PING';
-    const BIZ_TYPE_POND = 'PONG';
-    const BIZ_TYPE_TEXT = 'TEXT';
-    const BIZ_TYPE_PIC_FILE = 'PIC_FILE';
-    const BIZ_TYPE_BIN_FILE = 'BIN_FILE';
-    const BIZ_TYPE_AUDIO_FILE = 'AUDIO_FILE';
-    const MSG_TYPE_BASE64 = 'base64';
-
-    /**
-     * 给指定账号推送消息内容
-     * @param string $from 消息来源
-     * @param string $to 消息目标
-     * @param string $message 消息内容
-     * @return bool|string
-     * @throws Exception
-     * @throws \think\exception\PDOException
-     */
-    public static function push($from, $to, $message)
-    {
-        return self::post('/api/push/p2p/', [
-            'appId'        => sysconf('michat_appid'),
-            'appKey'       => sysconf('michat_appkey'),
-            'appSecret'    => sysconf('michat_appsecert'),
-            'fromAccount'  => $from,
-            'fromResource' => $from,
-            'toAccount'    => $to,
-            'msg'          => base64_encode($message),
-            'msgType'      => 'base64',
-            'bizType'      => '',
-            'isStore'      => false,
-        ]);
-    }
-
-    /**
-     * POST提交消息数据
-     * @param string $api 接口地址
-     * @param array $data 接口数据
-     * @return bool|string
-     * @throws Exception
-     */
-    private static function post($api, array $data)
-    {
-        $result = json_decode(Http::request('post', self::URI . $api, [
-            'data'    => json_encode($data, JSON_UNESCAPED_UNICODE),
-            'headers' => ['Content-Type: application/json'],
-        ]), true);
-        if (isset($result['code']) && intval($result['code']) === 200) {
-            return $result['data'];
-        } else {
-            throw new Exception($result['message'], $result['code']);
-        }
-    }
-
-}

+ 0 - 158
application/service/service/WechatService.php

@@ -1,158 +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\service\service;
-
-use think\Db;
-
-/**
- * 微信数据服务
- * Class WechatService
- * @package app\service\service
- * @method \WeChat\Card WeChatCard($appid) static 微信卡券管理
- * @method \WeChat\Custom WeChatCustom($appid) static 微信客服消息
- * @method \WeChat\Limit WeChatLimit($appid) static 接口调用频次限制
- * @method \WeChat\Media WeChatMedia($appid) static 微信素材管理
- * @method \WeChat\Menu WeChatMenu($appid) static 微信菜单管理
- * @method \WeChat\Oauth WeChatOauth($appid) static 微信网页授权
- * @method \WeChat\Pay WeChatPay($appid) static 微信支付商户
- * @method \WeChat\Product WeChatProduct($appid) static 微信商店管理
- * @method \WeChat\Qrcode WeChatQrcode($appid) static 微信二维码管理
- * @method \WeChat\Receive WeChatReceive($appid) static 微信推送管理
- * @method \WeChat\Scan WeChatScan($appid) static 微信扫一扫接入管理
- * @method \WeChat\Script WeChatScript($appid) static 微信前端支持
- * @method \WeChat\Shake WeChatShake($appid) static 微信揺一揺周边
- * @method \WeChat\Tags WeChatTags($appid) static 微信用户标签管理
- * @method \WeChat\Template WeChatTemplate($appid) static 微信模板消息
- * @method \WeChat\User WeChatUser($appid) static 微信粉丝管理
- * @method \WeChat\Wifi WeChatWifi($appid) static 微信门店WIFI管理
- *
- * ----- WeMini -----
- * @method \WeMini\Account WeMiniAccount($appid) static 小程序账号管理
- * @method \WeMini\Basic WeMiniBasic($appid) static 小程序基础信息设置
- * @method \WeMini\Code WeMiniCode($appid) static 小程序代码管理
- * @method \WeMini\Domain WeMiniDomain($appid) static 小程序域名管理
- * @method \WeMini\Tester WeMinitester($appid) static 小程序成员管理
- * @method \WeMini\User WeMiniUser($appid) static 小程序帐号管理
- * --------------------
- * @method \WeMini\Crypt WeMiniCrypt($options = []) static 小程序数据加密处理
- * @method \WeMini\Delivery WeMiniDelivery($options = []) static 小程序即时配送
- * @method \WeMini\Image WeMiniImage($options = []) static 小程序图像处理
- * @method \WeMini\Logistics WeMiniLogistics($options = []) static 小程序物流助手
- * @method \WeMini\Message WeMiniMessage($options = []) static 小程序动态消息
- * @method \WeMini\Ocr WeMiniOcr($options = []) static 小程序ORC服务
- * @method \WeMini\Plugs WeMiniPlugs($options = []) static 小程序插件管理
- * @method \WeMini\Poi WeMiniPoi($options = []) static 小程序地址管理
- * @method \WeMini\Qrcode WeMiniQrcode($options = []) static 小程序二维码管理
- * @method \WeMini\Security WeMiniSecurity($options = []) static 小程序内容安全
- * @method \WeMini\Soter WeMiniSoter($options = []) static 小程序生物认证
- * @method \WeMini\Template WeMiniTemplate($options = []) static 小程序模板消息支持
- * @method \WeMini\Total WeMiniTotal($options = []) static 小程序数据接口
- *
- * ----- WePay -----
- * @method \WePay\Bill WePayBill($appid) static 微信商户账单及评论
- * @method \WePay\Order WePayOrder($appid) static 微信商户订单
- * @method \WePay\Refund WePayRefund($appid) static 微信商户退款
- * @method \WePay\Coupon WePayCoupon($appid) static 微信商户代金券
- * @method \WePay\Redpack WePayRedpack($appid) static 微信红包支持
- * @method \WePay\Transfers WePayTransfers($appid) static 微信商户打款到零钱
- * @method \WePay\TransfersBank WePayTransfersBank($appid) static 微信商户打款到银行卡
- *
- * ----- WeOpen -----
- * @method \WeOpen\Login login() static 第三方微信登录
- * @method \WeOpen\Service service() static 第三方服务
- *
- * ----- ThinkService -----
- * @method mixed wechat() static 第三方微信工具
- * @method mixed config() static 第三方配置工具
- */
-class WechatService
-{
-
-    /**
-     * 接口类型模式
-     * @var string
-     */
-    private static $type = 'WeChat';
-
-    /**
-     * 实例微信对象
-     * @param string $name
-     * @param string $appid 授权公众号APPID
-     * @param string $type 将要获取SDK类型
-     * @return mixed
-     * @throws \think\Exception
-     * @throws \think\exception\PDOException
-     */
-    public static function instance($name, $appid = '', $type = null)
-    {
-        $config = [
-            'cache_path'               => env('runtime_path') . 'wechat',
-            'component_appid'          => sysconf('component_appid'),
-            'component_token'          => sysconf('component_token'),
-            'component_appsecret'      => sysconf('component_appsecret'),
-            'component_encodingaeskey' => sysconf('component_encodingaeskey'),
-        ];
-        // 注册授权公众号 AccessToken 处理
-        $config['GetAccessTokenCallback'] = function ($authorizerAppid) use ($config) {
-            $where = ['authorizer_appid' => $authorizerAppid];
-            if (!($refreshToken = Db::name('WechatServiceConfig')->where($where)->value('authorizer_refresh_token'))) {
-                throw new \think\Exception('The WeChat information is not configured.', '404');
-            }
-            $open = new \WeOpen\MiniApp($config);
-            $result = $open->refreshAccessToken($authorizerAppid, $refreshToken);
-            if (empty($result['authorizer_access_token']) || empty($result['authorizer_refresh_token'])) {
-                throw new \think\Exception($result['errmsg'], '0');
-            }
-            Db::name('WechatServiceConfig')->where($where)->update([
-                'authorizer_access_token'  => $result['authorizer_access_token'],
-                'authorizer_refresh_token' => $result['authorizer_refresh_token'],
-            ]);
-            return $result['authorizer_access_token'];
-        };
-        $app = new \WeOpen\MiniApp($config);
-        if (in_array(strtolower($name), ['service', 'miniapp'])) {
-            return $app;
-        }
-        if (!in_array($type, ['WeChat', 'WeMini'])) {
-            $type = self::$type;
-        }
-        return $app->instance($name, $appid, $type);
-    }
-
-    /**
-     * 静态初始化对象
-     * @param string $name
-     * @param array $arguments
-     * @return mixed
-     * @throws \think\Exception
-     * @throws \think\exception\PDOException
-     */
-    public static function __callStatic($name, $arguments)
-    {
-        if (substr($name, 0, 6) === 'WeMini') {
-            self::$type = 'WeMini';
-            $name = substr($name, 6);
-        } elseif (substr($name, 0, 6) === 'WeChat') {
-            self::$type = 'WeChat';
-            $name = substr($name, 6);
-        } elseif (substr($name, 0, 5) === 'WePay') {
-            self::$type = 'WePay';
-            $name = substr($name, 5);
-        }
-        return self::instance($name, isset($arguments[0]) ? $arguments[0] : '', self::$type);
-    }
-
-}

+ 0 - 44
application/service/view/config/form.html

@@ -1,44 +0,0 @@
-<form onsubmit="return false;" action="{:request()->url()}" data-auto="true" method="post" class='layui-form layui-card' autocomplete="off">
-
-    <div class="layui-card-body padding-left-40">
-
-        <div class="layui-form-item">
-            <label class="relative block">
-                <span class="color-green font-w7">开放平台服务 AppID</span>
-                <input name="component_appid" required pattern="^.{18}$" maxlength="18" placeholder="请输入18位开放平台服务AppID" value="{:sysconf('component_appid')}" class="layui-input">
-            </label>
-            <p class="help-block">开放平台服务 AppID,需要在微信开放平台获取</p>
-        </div>
-
-        <div class="layui-form-item">
-            <label class="relative block">
-                <span class="color-green font-w7">开放平台服务 AppSecret</span>
-                <input name="component_appsecret" required pattern="^.{32}$" maxlength="32" placeholder="请输入32位开放平台服务AppSecret" value="{:sysconf('component_appsecret')}" class="layui-input">
-            </label>
-            <p class="help-block">开放平台服务 AppSecret,需要在微信开放平台获取</p>
-        </div>
-
-        <div class="layui-form-item">
-            <label class="relative block">
-                <span class="color-green font-w7">开放平台消息校验 Token</span>
-                <input name="component_token" required placeholder="请输入微信消息校验Token" value="{:sysconf('component_token')}" class="layui-input">
-            </label>
-            <p class="help-block">开发者在代替微信接收到消息时,用此 Token 来校验消息</p>
-        </div>
-
-        <div class="layui-form-item">
-            <label class="relative block">
-                <span class="color-green font-w7">开放平台消息加解密 AesKey</span>
-                <input name="component_encodingaeskey" required pattern="^.{43}$" maxlength="43" placeholder="请输入43位微信消息加解密Key" value="{:sysconf('component_encodingaeskey')}" class="layui-input">
-            </label>
-            <p class="help-block">在代替微信收发消息时使用,必须是长度为43位字母和数字组合的字符串</p>
-        </div>
-
-        <div class="hr-line-dashed"></div>
-
-        <div class="text-center padding-bottom-15 margin-bottom-20">
-            <button class="layui-btn" type="submit">保存配置</button>
-        </div>
-
-    </div>
-</form>

+ 0 - 113
application/service/view/config/index.html

@@ -1,113 +0,0 @@
-{extend name="admin@main"}
-
-{block name="button"}
-
-{if auth("edit")}
-<button data-modal="{:url('edit')}" class='layui-btn layui-btn-sm layui-btn-primary'>配置平台参数</button>
-{/if}
-
-{/block}
-
-{block name="content"}
-<div class="relative">
-
-    <div class="think-box-shadow border-0 margin-bottom-20">
-        强烈建议安装 YAR 扩展来实现接口通信,SOAP 不能正常显示接口的异常信息
-    </div>
-
-    <div class="think-box-shadow padding-right-40 padding-left-40">
-        <div class="layui-row layui-col-space18">
-            <div class="layui-col-md6">
-                <div class="layui-form-item">
-                    <span class="color-green font-w7">开放平台服务</span>
-                    <span class="color-desc margin-left-5">AppID</span>
-                    <label class="relative block">
-                        <input disabled class="layui-input layui-bg-gray" value="{:sysconf('component_appid')}">
-                        <a data-copy="{:sysconf('component_appid')}" class="fa fa-copy right-btn"></a>
-                    </label>
-                    <p class="help-block">开放平台服务 AppID,需要在微信开放平台获取</p>
-                </div>
-                <div class="layui-form-item">
-                    <span class="color-green font-w7">开放平台服务</span>
-                    <span class="color-desc margin-left-5">AppSecret</span>
-                    <label class="relative block">
-                        <input disabled class="layui-input layui-bg-gray" value="{:sysconf('component_appsecret')}">
-                        <a data-copy="{:sysconf('component_appsecret')}" class="fa fa-copy right-btn"></a>
-                    </label>
-                    <p class="help-block">开放平台服务 AppSecret,需要在微信开放平台获取</p>
-                </div>
-                <div class="layui-form-item">
-                    <span class="color-green font-w7">开放平台消息校验</span>
-                    <span class="color-desc margin-left-5">Token</span>
-                    <label class="relative block">
-                        <input disabled class="layui-input layui-bg-gray" value="{:sysconf('component_token')}">
-                        <a data-copy="{:sysconf('component_token')}" class="fa fa-copy right-btn"></a>
-                    </label>
-                    <p class="help-block">开发者在代替微信接收到消息时,用此 Token 来校验消息</p>
-                </div>
-                <div class="layui-form-item">
-                    <span class="color-green font-w7">开放平台消息加解密</span>
-                    <span class="color-desc margin-left-5">AesKey</span>
-                    <label class="relative block">
-                        <input disabled class="layui-input layui-bg-gray" value="{:sysconf('component_encodingaeskey')}">
-                        <a data-copy="{:sysconf('component_encodingaeskey')}" class="fa fa-copy right-btn"></a>
-                    </label>
-                    <p class="help-block">在代替微信收发消息时使用,必须是长度为43位字母和数字组合的字符串</p>
-                </div>
-            </div>
-
-            <div class="layui-col-md6">
-                <div class="layui-form-item">
-                    <p class="color-green font-w7">授权发起页域名</p>
-                    <label class="relative block">
-                        <input disabled class="layui-input layui-bg-gray" value="{:request()->host()}">
-                        <a data-copy="{:request()->host()}" class="fa fa-copy right-btn"></a>
-                    </label>
-                    <p class="help-block">从本域名跳转到登录授权页才可以完成登录授权,无需填写域名协议前缀</p>
-                </div>
-                <div class="layui-form-item">
-                    <span class="color-green font-w7">授权事件接收地址</span>
-                    <label class="relative block">
-                        <input disabled class="layui-input layui-bg-gray" value="{:url('@service/api.push/ticket','',false,true)}">
-                        <a data-copy="{:url('@service/api.push/ticket','',false,true)}" class="fa fa-copy right-btn"></a>
-                    </label>
-                    <p class="help-block">用于接收取消授权通知、授权成功通知、授权更新通知、接收 TICKET 凭据</p>
-                </div>
-                <div class="layui-form-item">
-                    <span class="color-green font-w7">微信消息与事件接收</span>
-                    <label class="relative block">
-                        <input disabled class="layui-input layui-bg-gray" value="{:url('@service/api.push/notify/\$APPID\$','',false,true)}">
-                        <a data-copy="{:url('@service/api.push/notify/\$APPID\$','',false,true)}" class="fa fa-copy right-btn"></a>
-                    </label>
-                    <p class="help-block">通过该 URL 接收微信消息和事件推送,$APPID$ 将被替换为微信 AppId</p>
-                </div>
-                <div class="layui-form-item">
-                    <p class="color-green font-w7">客户端系统 Yar 模块接口</p>
-                    <label class="relative block"><input disabled class="layui-input layui-bg-gray" value="{:url('@service/api.client/yar/PARAM','',false,true)}"></label>
-                    <p class="help-block">客户端 Yar 接口,PARAM 规则 AppName-AppId-AppKey-AppType</p>
-                </div>
-                <div class="layui-form-item">
-                    <p class="color-green font-w7">客户端系统 Soap 模块接口</p>
-                    <label class="relative block"><input disabled class="layui-input layui-bg-gray" value="{:url('@service/api.client/soap/PARAM','',false,true)}"></label>
-                    <p class="help-block">客户端 Soap 接口,PARAM 规则 AppName-AppId-AppKey-AppType</p>
-                </div>
-            </div>
-        </div>
-    </div>
-</div>
-{/block}
-
-{block name='style'}
-<style>
-    .right-btn {
-        top: 0;
-        right: 0;
-        width: 38px;
-        height: 38px;
-        display: inline-block;
-        position: absolute;
-        text-align: center;
-        line-height: 38px;
-    }
-</style>
-{/block}

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

@@ -1,98 +0,0 @@
-{extend name='admin@main'}
-
-{block name="button"}
-
-{if auth("service/fans/setblack")}
-<button data-action='{:url("setblack")}' data-rule="openid#{key}" data-csrf="{:systoken('service/fans/setblack')}" class='layui-btn layui-btn-sm layui-btn-primary'>批量拉黑</button>
-{/if}
-
-{if auth("service/fans/delblack")}
-<button data-action='{:url("delblack")}' data-rule="openid#{key}" data-csrf="{:systoken('service/fans/delblack')}" class='layui-btn layui-btn-sm layui-btn-primary'>取消拉黑</button>
-{/if}
-
-{if auth("service/fans/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("service/fans/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('service/fans/setblack')}">拉 黑</a>
-                <!--{/if}-->
-                {else}
-                <!--{if auth("service/fans/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('service/fans/delblack')}">拉 白</a>
-                <!--{/if}-->
-                {/eq}
-
-                {if auth("service/fans/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('service/fans/remove')}">删 除</a>
-                {/if}
-            </td>
-        </tr>
-        {/foreach}
-        </tbody>
-    </table>
-
-    {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
-
-</div>
-{/block}

+ 0 - 76
application/service/view/fans/index_search.html

@@ -1,76 +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">
-                <select class="layui-select" name="appid" lay-filter="appid" lay-search>
-                    <!--{foreach $wechats as $k=>$v}-->
-                    <!--{if $k eq $appid}-->
-                    <option selected value="{$k}">{$v}</option>
-                    <!--{else}-->
-                    <option value="{$k}">{$v}</option>
-                    <!--{/if}-->
-                    <!--{/foreach}-->
-                </select>
-            </div>
-        </div>
-
-        <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 data-date-range name="subscribe_at" value="{$Think.get.subscribe_at|default=''}" placeholder="请选择关注时间" class="layui-input">
-            </div>
-        </div>
-
-        <div class="layui-form-item layui-inline">
-            <button id="SearchButton" class="layui-btn layui-btn-primary"><i class="layui-icon">&#xe615;</i> 搜 索</button>
-        </div>
-    </form>
-
-</fieldset>
-
-<script>
-    form.render();
-    form.on('select(appid)', function () {
-        $('#SearchButton').trigger('click');
-    });
-</script>

+ 0 - 84
application/service/view/index/index.html

@@ -1,84 +0,0 @@
-{extend name="admin@main"}
-
-{block name="button"}
-
-{if auth("service/index/syncall")}
-<button data-load="{:url('syncall')}" class='layui-btn layui-btn-sm layui-btn-primary'>同步所有授权</button>
-{/if}
-
-{/block}
-
-{block name="content"}
-<div class="think-box-shadow">
-    {include file='index/index_search'}
-    <table class="layui-table margin-top-10" lay-skin="line">
-        {notempty name='list'}
-        <thead>
-        <tr>
-            <th class='text-left nowrap' style="width:390px">接口信息</th>
-            <th class='text-left nowrap' style="width:120px">服务号信息</th>
-            <th class='text-left nowrap'></th>
-            <th class='text-left nowrap'></th>
-        </tr>
-        </thead>
-        {/notempty}
-        <tbody>
-        {foreach $list as $key=>$vo}
-        <tr>
-            <td class='text-left nowrap'>
-                <div class="inline-block text-top margin-right-5">
-                    <img onerror="this.src='__ROOT__/static/theme/img/404_icon.png'" style="width:60px;height:60px" data-tips-text="微信头像" data-tips-image src="{$vo.head_img|default=''}">
-                </div>
-                <div class="inline-block">
-                    公众号APPID:{$vo.authorizer_appid}&nbsp;&nbsp;&nbsp;&nbsp;调用次数:{$vo.total}<br>
-                    接口授权密钥:{$vo.appkey|default='<span class="color-desc">未生成接口服务密码, 请稍候授权绑定</span>'|raw}<br>
-                    消息推送接口:{$vo.appuri|default='<span class="color-desc">未配置消息推送接口</span>'|raw}
-                </div>
-            </td>
-            <td class='text-left nowrap'>
-                <div class="inline-block text-top margin-right-5">
-                    <img onerror="this.src='__ROOT__/static/theme/img/404_icon.png'" style="width:60px;height:60px" data-tips-text="微信二维码" data-tips-image src="{$vo.qrcode_url|local_image}">
-                </div>
-                <div class="inline-block">
-                    昵称:{$vo.nick_name|default='<span class="color-desc">未获取到公众号昵称</span>'|raw}<br>
-                    公司:{$vo.principal_name|default='<span class="color-desc">未获取到公司名字</span>'|raw}<br>
-                    状态:{if $vo.service_type eq 2}服务号{elseif $vo.service_type eq 3}小程序{else}订阅号{/if} /
-                    {$vo.verify_type == -1 ? '<span class="color-red">未认证</span>' : '<span class="color-green">已认证</span>'} /
-                    {if $vo.status eq 0}<span class="color-red">已禁用</span>{elseif $vo.status eq 1}<span class="color-green">使用中</span>{/if}
-                </div>
-            </td>
-            <td class="text-left nowrap">
-                账号:{$vo.user_name|default='--'}<br>
-                日期:{$vo.create_at|format_datetime|str_replace=' ','<br>时间:',###|raw}
-            </td>
-            <td class='text-left nowrap'>
-
-                {if $vo.status eq 1 and auth("servce/index/forbid")}
-                <a class="layui-btn layui-btn-sm layui-btn-warm" data-action="{:url('forbid')}" data-csrf="{:systoken('service/index/forbid')}" data-value="id#{$vo.id};status#0">禁 用</a>
-                {elseif auth("servce/index/resume")}
-                <a class="layui-btn layui-btn-sm layui-btn-warm" data-action="{:url('resume')}" data-csrf="{:systoken('service/index/resume')}" data-value="id#{$vo.id};status#1">启 用</a>
-                {/if}
-
-                {if auth("service/index/sync")}
-                <a class="layui-btn layui-btn-sm" data-load='{:url("service/index/sync")}?appid={$vo.authorizer_appid}'>同 步</a>
-                {/if}
-
-                {if auth("service/index/remove")}
-                <a class="layui-btn layui-btn-sm layui-btn-danger" data-confirm="确定要删除该公众号吗?" data-action="{:url('remove')}" data-csrf="{:systoken('service/index/remove')}" data-value="id#{$vo.id}">删 除</a>
-                {/if}
-
-                {if auth("service/index/clearquota")}
-                <a class="layui-btn layui-btn-sm layui-btn-primary" data-confirm="每个公众号每个月有10次清零机会,请谨慎使用!" data-load='{:url("service/index/clearquota")}?appid={$vo.authorizer_appid}'>清 零</a>
-                {/if}
-
-            </td>
-        </tr>
-        {/foreach}
-        </tbody>
-    </table>
-
-    {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
-
-</div>
-
-{/block}

+ 0 - 76
application/service/view/index/index_search.html

@@ -1,76 +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="authorizer_appid" value="{$Think.get.authorizer_appid|default=''}" placeholder="请输入微信APPID" class="layui-input">
-            </div>
-        </div>
-
-        <div class="layui-form-item layui-inline">
-            <label class="layui-form-label">微信名称</label>
-            <div class="layui-input-inline">
-                <input name="nick_name" value="{$Think.get.nick_name|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 name="service_type" class="layui-select">
-                    <option value="">- 全部 -</option>
-                    {foreach ['0'=>'显示订阅号类型','2'=>'显示服务号类型','3'=>'显示小程序类型'] as $k=>$v}
-                    <!--{if $k.'' eq $Think.get.service_type}-->
-                    <option selected value="{$k}">{$v}</option>
-                    <!--{else}-->
-                    <option value="{$k}">{$v}</option>
-                    <!--{/if}-->
-                    {/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="principal_name" value="{$Think.get.principal_name|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">
-                <input data-date-range 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();
-</script>

+ 0 - 1
application/service/view/not-auth.html

@@ -1 +0,0 @@
-还没有授权,请授权公众号