Client.php 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  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 think\Controller;
  17. use think\Db;
  18. /**
  19. * 获取微信SDK实例对象
  20. * Class Instance
  21. * @package app\wechat\controller
  22. */
  23. class Client extends Controller
  24. {
  25. /**
  26. * 当前配置
  27. * @var string
  28. */
  29. protected $config = [];
  30. /**
  31. * 当前APPID
  32. * @var string
  33. */
  34. protected $appid = '';
  35. /**
  36. * 接口实例名称
  37. * @var string
  38. */
  39. protected $name = '';
  40. /**
  41. * 接口类型
  42. * @var string
  43. */
  44. protected $type = '';
  45. /**
  46. * 错误消息
  47. * @var string
  48. */
  49. protected $message = '';
  50. /**
  51. * 启动Yar接口服务
  52. * @param string $param AppName-AppId-AppKey
  53. * @return string
  54. */
  55. public function yar($param)
  56. {
  57. try {
  58. $instance = $this->create($param);
  59. $service = new \Yar_Server(empty($instance) ? $this : $instance);
  60. $service->handle();
  61. } catch (\Exception $e) {
  62. return $e->getMessage();
  63. }
  64. }
  65. /**
  66. * 启动SOAP接口服务
  67. * @param string $param AppName-AppId-AppKey
  68. * @return string
  69. */
  70. public function soap($param)
  71. {
  72. try {
  73. $instance = $this->create($param);
  74. $service = new \SoapServer(null, ['uri' => strtolower($this->name)]);
  75. $service->setObject(empty($instance) ? $this : $instance);
  76. $service->handle();
  77. } catch (\Exception $e) {
  78. return $e->getMessage();
  79. }
  80. }
  81. /**
  82. * 创建接口服务
  83. * @param string $token
  84. * @return \WeChat\Oauth|\WeChat\Pay|\WeChat\Receive|\WeChat\Script|\WeChat\User|\WeOpen\Service
  85. * @throws \think\db\exception\DataNotFoundException
  86. * @throws \think\db\exception\ModelNotFoundException
  87. * @throws \think\exception\DbException
  88. * @throws \think\Exception
  89. */
  90. private function create($token)
  91. {
  92. if ($this->auth($token)) {
  93. $weminiClassName = 'Account,Basic,Code,Domain,Tester,User,Crypt,Plugs,Poi,Qrcode,Template,Total,Delivery,Image,Logistics,Message,Ocr,Security,Soter';
  94. $wechatClassName = 'Card,Custom,Limit,Media,Menu,Oauth,Pay,Product,Qrcode,Receive,Scan,Script,Shake,Tags,Template,User,Wifi';
  95. if ($this->type === 'wechat' && stripos($wechatClassName, $this->name) !== false) {
  96. $instance = WechatService::instance($this->name, $this->appid, 'WeChat');
  97. } elseif ($this->type === 'wemini' && stripos($weminiClassName, $this->name) !== false) {
  98. $instance = WechatService::instance($this->name, $this->appid, 'WeMini');
  99. } elseif (stripos('Service,MiniApp', $this->name) !== false) {
  100. $instance = WechatService::instance($this->name, $this->appid, 'WeOpen');
  101. } elseif (stripos('Wechat,Config,Handler', $this->name) !== false) {
  102. $className = "\\app\\service\\handler\\WechatHandler";
  103. $instance = new $className($this->config);
  104. }
  105. if (!empty($instance)) return $instance;
  106. }
  107. throw new \think\Exception($this->message);
  108. }
  109. /**
  110. * 加载微信实例对象
  111. * @param string $token 数据格式 name|appid|appkey
  112. * @return bool
  113. * @throws \think\Exception
  114. * @throws \think\db\exception\DataNotFoundException
  115. * @throws \think\db\exception\ModelNotFoundException
  116. * @throws \think\exception\DbException
  117. */
  118. private function auth($token = '')
  119. {
  120. list($this->name, $this->appid, $appkey, $this->type) = explode('-', $token . '---');
  121. if (empty($this->name) || empty($this->appid) || empty($appkey)) {
  122. $this->message = '缺少必要的参数AppId或AppKey';
  123. return false;
  124. }
  125. $where = ['authorizer_appid' => $this->appid, 'status' => '1', 'is_deleted' => '0'];
  126. $this->config = Db::name('WechatServiceConfig')->where($where)->find();
  127. if (empty($this->config)) {
  128. $this->message = '无效的微信绑定对象';
  129. return false;
  130. }
  131. if (strtolower($this->config['appkey']) !== strtolower($appkey)) {
  132. $this->message = '授权AppId与AppKey不匹配';
  133. return false;
  134. }
  135. $this->message = '';
  136. $this->name = ucfirst(strtolower($this->name));
  137. $this->type = strtolower(empty($this->type) ? 'WeChat' : $this->type);
  138. Db::name('WechatServiceConfig')->where($where)->setInc('total', 1);
  139. return true;
  140. }
  141. }