mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 19:06:27 +00:00
33 lines
726 B
PHP
33 lines
726 B
PHP
|
<?php
|
||
|
class BitcoinRpc {
|
||
|
|
||
|
public static function __callStatic($Method, $Args) {
|
||
|
if (!defined('BITCOIN_RPC_URL')) {
|
||
|
return false;
|
||
|
}
|
||
|
$MessageID = mt_rand();
|
||
|
$Params = json_encode(array(
|
||
|
'method' => $Method,
|
||
|
'params' => $Args,
|
||
|
'id' => $MessageID)
|
||
|
);
|
||
|
|
||
|
$Request = array(
|
||
|
'http' => array(
|
||
|
'method' => 'POST',
|
||
|
'header' => 'Content-type: application/json',
|
||
|
'content' => $Params
|
||
|
)
|
||
|
);
|
||
|
|
||
|
if (!$Response = file_get_contents(BITCOIN_RPC_URL, false, stream_context_create($Request))) {
|
||
|
return false;
|
||
|
}
|
||
|
$Response = json_decode($Response);
|
||
|
if ($Response->id != $MessageID || !empty($Response->error) || empty($Response->result)) {
|
||
|
return false;
|
||
|
}
|
||
|
return $Response->result;
|
||
|
}
|
||
|
}
|