mirror of
https://github.com/LBRYFoundation/pool.git
synced 2025-08-23 09:27:25 +00:00
63 lines
1.4 KiB
PHP
63 lines
1.4 KiB
PHP
<?php
|
|
|
|
|
|
function cryptsy_api_query($method, array $req = array())
|
|
{
|
|
// debuglog("calling cryptsy_api_query $method");
|
|
// debuglog($req);
|
|
|
|
// API settings
|
|
$key = ''; // your API-key
|
|
$secret = ''; // your Secret-key
|
|
|
|
$req['method'] = $method;
|
|
$mt = explode(' ', microtime());
|
|
$req['nonce'] = $mt[1];
|
|
|
|
// generate the POST data string
|
|
$post_data = http_build_query($req, '', '&');
|
|
$sign = hash_hmac("sha512", $post_data, $secret);
|
|
|
|
// generate the extra headers
|
|
$headers = array(
|
|
'Sign: '.$sign,
|
|
'Key: '.$key,
|
|
);
|
|
|
|
// our curl handle (initialize if required)
|
|
static $ch = null;
|
|
if (is_null($ch))
|
|
{
|
|
$ch = curl_init();
|
|
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|
|
curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/4.0 (compatible; Cryptsy API PHP client; '.php_uname('s').'; PHP/'.phpversion().')');
|
|
}
|
|
curl_setopt($ch, CURLOPT_URL, 'https://api.cryptsy.com/api');
|
|
curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
|
|
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
|
|
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
|
|
|
|
// run the query
|
|
$res = curl_exec($ch);
|
|
if($res === false)
|
|
{
|
|
debuglog("ERROR cryptsy_api_query $method");
|
|
return null;
|
|
}
|
|
|
|
$dec = json_decode($res, true);
|
|
if(!$dec)
|
|
{
|
|
debuglog("ERROR cryptsy_api_query $method");
|
|
debuglog($res);
|
|
|
|
return null;
|
|
}
|
|
|
|
// sleep(1);
|
|
return $dec;
|
|
}
|
|
|
|
|
|
|
|
|