ThinkAdmin/vendor/zoujingli/think-library/src/service/JsonRpcClientService.php
2019-12-31 11:12:18 +08:00

89 lines
2.8 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// +----------------------------------------------------------------------
// | Library for ThinkAdmin
// +----------------------------------------------------------------------
// | 版权所有 2014~2020 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
// +----------------------------------------------------------------------
// | 官方网站: https://gitee.com/zoujingli/ThinkLibrary
// +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org )
// +----------------------------------------------------------------------
// | gitee 仓库地址 https://gitee.com/zoujingli/ThinkLibrary
// | github 仓库地址 https://github.com/zoujingli/ThinkLibrary
// +----------------------------------------------------------------------
namespace think\admin\service;
use think\admin\extend\CodeExtend;
use think\admin\Service;
/**
* JsonRpc 客户端服务
* Class JsonRpcClientService
* @package think\admin\service
*/
class JsonRpcClientService extends Service
{
/**
* 请求ID
* @var integer
*/
private $id;
/**
* 服务端地址
* @var string
*/
private $proxy;
/**
* 创建连接对象
* @param string $proxy
* @return mixed
*/
public function create($proxy)
{
$this->id = CodeExtend::uniqidNumber();
$this->proxy = $proxy;
return $this;
}
/**
* 执行 JsonRpc 请求
* @param string $method
* @param array $params
* @return mixed
* @throws \think\Exception
*/
public function __call($method, $params)
{
// Performs the HTTP POST
$options = [
'http' => [
'method' => 'POST',
'header' => 'Content-type: application/json',
'content' => json_encode([
'jsonrpc' => '2.0', 'method' => $method, 'params' => $params, 'id' => $this->id,
], JSON_UNESCAPED_UNICODE),
],
];
if ($fp = fopen($this->proxy, 'r', false, stream_context_create($options))) {
$response = '';
while ($row = fgets($fp)) $response .= trim($row) . "\n";
fclose($fp);
$response = json_decode($response, true);
} else {
throw new \think\Exception("无法连接到 {$this->proxy}");
}
// Final checks and return
if ($response['id'] != $this->id) {
throw new \think\Exception("错误的响应标记 (请求标记: {$this->id}, 响应标记: {$response['id']}");
}
if (is_null($response['error'])) {
return $response['result'];
} else {
throw new \think\Exception("请求错误:{$response['error']['message']}", $response['error']['code']);
}
}
}