Client.php 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\service\controller\api;
  15. use app\service\service\WechatService;
  16. use library\tools\JsonRpcServer;
  17. use think\Controller;
  18. use think\Db;
  19. use think\exception\HttpResponseException;
  20. /**
  21. * 获取微信SDK实例对象
  22. * Class Instance
  23. * @package app\wechat\controller
  24. */
  25. class Client extends Controller
  26. {
  27. /**
  28. * 当前配置
  29. * @var string
  30. */
  31. protected $config = [];
  32. /**
  33. * 当前APPID
  34. * @var string
  35. */
  36. protected $appid = '';
  37. /**
  38. * 接口实例名称
  39. * @var string
  40. */
  41. protected $name = '';
  42. /**
  43. * 接口类型
  44. * @var string
  45. */
  46. protected $type = '';
  47. /**
  48. * 错误消息
  49. * @var string
  50. */
  51. protected $message = '';
  52. /**
  53. * 启动Yar接口服务
  54. * @param string $param AppName-AppId-AppKey
  55. * @return string
  56. */
  57. public function yar($param)
  58. {
  59. try {
  60. $instance = $this->create($param);
  61. $service = new \Yar_Server(empty($instance) ? $this : $instance);
  62. $service->handle();
  63. } catch (\Exception $e) {
  64. return $e->getMessage();
  65. }
  66. }
  67. /**
  68. * 启动SOAP接口服务
  69. * @param string $param AppName-AppId-AppKey
  70. * @return string
  71. */
  72. public function soap($param)
  73. {
  74. try {
  75. $instance = $this->create($param);
  76. $service = new \SoapServer(null, ['uri' => strtolower($this->name)]);
  77. $service->setObject(empty($instance) ? $this : $instance);
  78. $service->handle();
  79. } catch (\Exception $e) {
  80. return $e->getMessage();
  81. }
  82. }
  83. /**
  84. * JsonRpc 接口标准
  85. * @param string $param
  86. * @return string
  87. */
  88. public function jsonrpc($param)
  89. {
  90. try {
  91. $instance = $this->create($param);
  92. JsonRpcServer::instance()->handle(empty($instance) ? $this : $instance);
  93. } catch (HttpResponseException $exception) {
  94. throw $exception;
  95. } catch (\Exception $e) {
  96. return $e->getMessage();
  97. }
  98. }
  99. /**
  100. * 创建接口服务
  101. * @param string $token
  102. * @return \WeChat\Oauth|\WeChat\Pay|\WeChat\Receive|\WeChat\Script|\WeChat\User|\WeOpen\Service
  103. * @throws \think\db\exception\DataNotFoundException
  104. * @throws \think\db\exception\ModelNotFoundException
  105. * @throws \think\exception\DbException
  106. * @throws \think\Exception
  107. */
  108. private function create($token)
  109. {
  110. if ($this->auth($token)) {
  111. $weminiClassName = 'Account,Basic,Code,Domain,Tester,User,Crypt,Plugs,Poi,Qrcode,Template,Total,Delivery,Image,Logistics,Message,Ocr,Security,Soter';
  112. $wechatClassName = 'Card,Custom,Limit,Media,Menu,Oauth,Pay,Product,Qrcode,Receive,Scan,Script,Shake,Tags,Template,User,Wifi';
  113. if ($this->type === 'wechat' && stripos($wechatClassName, $this->name) !== false) {
  114. $instance = WechatService::instance($this->name, $this->appid, 'WeChat');
  115. } elseif ($this->type === 'wemini' && stripos($weminiClassName, $this->name) !== false) {
  116. $instance = WechatService::instance($this->name, $this->appid, 'WeMini');
  117. } elseif (stripos('Service,MiniApp', $this->name) !== false) {
  118. $instance = WechatService::instance($this->name, $this->appid, 'WeOpen');
  119. } elseif (stripos('Wechat,Config,Handler', $this->name) !== false) {
  120. $className = "\\app\\service\\handler\\WechatHandler";
  121. $instance = new $className($this->config);
  122. }
  123. if (!empty($instance)) return $instance;
  124. }
  125. throw new \think\Exception($this->message);
  126. }
  127. /**
  128. * 加载微信实例对象
  129. * @param string $token 数据格式 name|appid|appkey
  130. * @return bool
  131. * @throws \think\Exception
  132. * @throws \think\db\exception\DataNotFoundException
  133. * @throws \think\db\exception\ModelNotFoundException
  134. * @throws \think\exception\DbException
  135. */
  136. private function auth($token = '')
  137. {
  138. list($this->name, $this->appid, $appkey, $this->type) = explode('-', $token . '---');
  139. if (empty($this->name) || empty($this->appid) || empty($appkey)) {
  140. $this->message = '缺少必要的参数AppId或AppKey';
  141. return false;
  142. }
  143. $where = ['authorizer_appid' => $this->appid, 'status' => '1', 'is_deleted' => '0'];
  144. $this->config = Db::name('WechatServiceConfig')->where($where)->find();
  145. if (empty($this->config)) {
  146. $this->message = '无效的微信绑定对象';
  147. return false;
  148. }
  149. if (strtolower($this->config['appkey']) !== strtolower($appkey)) {
  150. $this->message = '授权AppId与AppKey不匹配';
  151. return false;
  152. }
  153. $this->message = '';
  154. $this->name = ucfirst(strtolower($this->name));
  155. $this->type = strtolower(empty($this->type) ? 'WeChat' : $this->type);
  156. Db::name('WechatServiceConfig')->where($where)->setInc('total', 1);
  157. return true;
  158. }
  159. }