123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174 |
- <?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;
- }
- }
|