forked from btelle/ethereum-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
json-rpc.php
executable file
·74 lines (62 loc) · 1.6 KB
/
json-rpc.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?php
/**
* Simple JSON-RPC interface.
*/
class JSON_RPC
{
protected $host, $port, $version;
protected $id = 0;
function __construct($host, $port, $version="2.0")
{
$this->host = $host;
$this->port = $port;
$this->version = $version;
}
function request($method, $params=array())
{
$data = array();
$data['jsonrpc'] = $this->version;
$data['id'] = $this->id++;
$data['method'] = $method;
$data['params'] = $params;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $this->host);
curl_setopt($ch, CURLOPT_PORT, $this->port);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json'));
curl_setopt($ch, CURLOPT_POST, TRUE);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data));
$ret = curl_exec($ch);
if($ret !== FALSE)
{
$formatted = $this->format_response($ret);
if(isset($formatted->error))
{
throw new RPCException($formatted->error->message, $formatted->error->code);
}
else
{
return $formatted;
}
}
else
{
throw new RPCException("Server did not respond");
}
}
function format_response($response)
{
return @json_decode($response);
}
}
class RPCException extends Exception
{
public function __construct($message, $code = 0, Exception $previous = null)
{
parent::__construct($message, $code, $previous);
}
public function __toString()
{
return __CLASS__ . ": ".(($this->code > 0)?"[{$this->code}]:":"")." {$this->message}\n";
}
}