instance()); $service->handle(); } catch (\Exception $exception) { return $exception->getMessage(); } } /** * SOAP 接口标准对接 * @return string */ public function soap() { try { $service = new \SoapServer(null, ['uri' => 'thinkadmin']); $service->setObject($this->instance()); $service->handle(); } catch (\Exception $exception) { return $exception->getMessage(); } } /** * 远程获取实例对象 * @return mixed|\Exception */ private function instance() { try { $code = $this->app->request->get('code', ''); $data = json_decode(debase64url($code), true); list($class, $appid, $time, $sign) = [$data['class'], $data['appid'], $data['time'], $data['sign']]; $config = $this->app->db->name('WechatServiceConfig')->where(['authorizer_appid' => $appid])->find(); if (empty($config)) throw new Exception("抱歉,该公众号{$appid}未授权!"); if (md5("{$class}#{$appid}#{$config['appkey']}#{$time}") !== $sign) { throw new Exception("抱歉,该公众号{$appid}签名异常!"); } return WechatService::$class($appid); } catch (\Exception $exception) { return new \Exception($exception->getMessage(), $exception->getCode()); } } }