Commit 32daab6d authored by shajiaiming's avatar shajiaiming

add new coin ticker

parent a9a3118e
......@@ -36,7 +36,8 @@ class ExchangeBusiness
7 => 'S',
8 => 'Zg',
9 => 'Go',
10 => 'Zhaobi'
10 => 'Zhaobi',
11 => 'Gdpro'
];
/**
......@@ -113,6 +114,13 @@ class ExchangeBusiness
return $quotation;
}
if(in_array(strtoupper($tag),['CTG'])){
$exchange = ExchangeFactory::createExchange("Gdpro");
$quotation = $exchange->getTicker($tag, 'CNY');
$quotation['rmb'] = (float)sprintf("%0.2f", $quotation['last']);
return $quotation;
}
foreach (self::$exchanges as $exchange) {
/**
* @var $exchange \common\service\exchange\Exchange
......
<?php
/**
* Created by PhpStorm.
* User: rlgyzhcn
* Date: 18-8-7
* Time: 上午11:30
*/
namespace common\service\exchange;
use linslin\yii2\curl\Curl;
class Gdpro extends Exchange implements ExchangeInterface
{
protected $supported_symbol = 'supported_symbol_gdpro';
protected $quotation_prefix = 'quotation_gdpro_';
protected $base_url = 'https://api.gdpro.pro/api/v1/ticker?symbol=25';
public function symbolExists($tag = 'CTG', $aim = "CNY")
{
$supported = $this->redis->smembers($this->supported_symbol);
if (is_array($supported) && in_array($this->formatSymbol($tag, $aim), $supported)) {
return true;
}
return false;
}
/**
* 转化交易对为请求变量
*
* @param string $tag
* @param string $aim
* @return mixed
*/
public function formatSymbol($tag = 'CTG', $aim = 'CNY')
{
return strtoupper($tag .'_'. $aim);
}
/**
* 保存支持的交易对到redis数据库,使用crontab定时更新
*
* @return mixed|void
*/
public function setSupportedSymbol()
{
$this->redis->sadd($this->supported_symbol, 'CTGCNY');
}
/**
* 更新交易对行情保存到redis,使用crontab定时更新
*
* @return mixed|void
*/
public function setQuotation()
{
$curl = new Curl();
$content = $curl->get($this->base_url, false);
if (is_array($content) && isset($content['data']) && 200 == $content['code']) {
$data = $content['data'];
$key = $this->quotation_prefix . 'CTG_CNY';
$this->redis->hmset($key, 'low', $data['low'], 'high', $data['high'], 'last', $data['last']);
$this->redis->sadd($this->supported_symbol, 'CTG_CNY');
}
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment