mirror of
https://github.com/LBRYFoundation/pool.git
synced 2025-09-29 23:00:33 +00:00
64 lines
1.7 KiB
PHP
64 lines
1.7 KiB
PHP
<?php
|
|
|
|
// markets
|
|
|
|
function nova_api_query($method)
|
|
{
|
|
$uri = "https://novaexchange.com/remote/$method/";
|
|
|
|
$ch = curl_init($uri);
|
|
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|
|
|
|
$res= curl_exec($ch);
|
|
$obj = json_decode($res);
|
|
|
|
return $obj;
|
|
}
|
|
|
|
function nova_api_user($method, $params=array())
|
|
{
|
|
require_once('/etc/yiimp/keys.php');
|
|
if (!defined('EXCH_NOVA_SECRET')) define('EXCH_NOVA_SECRET', '');
|
|
|
|
if (empty(EXCH_NOVA_KEY) || empty(EXCH_NOVA_SECRET)) return false;
|
|
|
|
$uri = "https://novaexchange.com/remote/private/$method/";
|
|
|
|
$headers = array(
|
|
'Content-Type: application/x-www-form-urlencoded',
|
|
);
|
|
|
|
$mt = explode(' ', microtime());
|
|
$nonce = $mt[1].substr($mt[0], 2, 6);
|
|
|
|
$params['apikey'] = EXCH_NOVA_KEY;
|
|
$params['apisecret'] = EXCH_NOVA_SECRET;
|
|
$params['nonce'] = $nonce;
|
|
|
|
$postdata = http_build_query($params, '', '&');
|
|
// Clear the params array so that we don't accidentaly leak our keys
|
|
$params = array();
|
|
|
|
$ch = curl_init($uri);
|
|
//curl_setopt($ch, CURLOPT_POST, 1);
|
|
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
|
|
curl_setopt($ch, CURLOPT_POSTFIELDS, $postdata);
|
|
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|
|
//curl_setopt($ch, CURLOPT_SSLVERSION, 1 /*CURL_SSLVERSION_TLSv1*/);
|
|
curl_setopt($ch, CURLOPT_SSL_SESSIONID_CACHE, 0);
|
|
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10);
|
|
curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/4.0 (compatible; Nova API PHP client; '.php_uname('s').'; PHP/'.phpversion().')');
|
|
curl_setopt($ch, CURLOPT_ENCODING , '');
|
|
|
|
$data = curl_exec($ch);
|
|
$res = json_decode($data);
|
|
|
|
if(!is_object($res) || $res->status != 'success') {
|
|
$status = curl_getinfo($ch, CURLINFO_HTTP_CODE);
|
|
debuglog("nova: $method failed ($status) ".strip_data($data).' '.curl_error($ch));
|
|
}
|
|
|
|
curl_close($ch);
|
|
|
|
return $res;
|
|
}
|