ExBroker.php
5.2 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
<?php
namespace trader\okx;
require_once __DIR__ . '/../../struct/ApiInfo.php';
require_once __DIR__ . '/Api.php';
require_once __DIR__ . '/../../../jytools/func.php';
require_once __DIR__ . '/../../../jytools/Websocket.php';
use trader\struct\ApiInfo;
use trader\okx\Api as OkxApi;
use jytools\Websocket;
use function jytools\output;
class ExBroker
{
// static private $host = 'wss://ws.okx.com:8443';
static private $host = 'ws://okws.keetu.com';
static private $pathPrivate = '/ws/v5/private';
static private $pathPublic = '/ws/v5/public';
static private $pathBusiness = '/ws/v5/business';
private ApiInfo $apiInfo;
private OkxApi $api;
private ?Websocket $wsAcc;
private ?Websocket $wsKline;
public function __construct($apiInfo)
{
$this->apiInfo = $apiInfo;
$this->api = new OkxApi($apiInfo);
}
public function accListen(callable $onWsData)
{
if (isset($this->wsAcc)) {
$this->wsAcc->close();
}
$this->wsAcc = new Websocket(self::$host . self::$pathPrivate);
$this->wsAcc->connect(
$onOpen = function () {
$this->wsLogin();
},
$onMessage = function ($data) use ($onWsData) {
$this->onWsDataPre($data, $onWsData);
},
$onClose = function () {
// 关闭链接
}
);
}
public function klineListen($symbol, $period, callable $onData)
{
if (isset($this->wsKline)) {
$this->wsKline->close();
}
$this->wsKline = new Websocket(self::$host . self::$pathBusiness);
$this->wsKline->connect(
$onOpen = function () use ($symbol, $period) {
$subData = [];
$subData['op'] = 'subscribe';
$subData['args'] = [
[
'channel' => $this->getKlineChannels()[$period],
'instId' => $symbol,
],
];
output("订阅", $subData);
$this->wsKline->push(json_encode($subData));
},
$onMessage = function ($data) use ($onData) {
$data = json_decode($data, true);
if (!isset($data['data'])) {
return;
}
$data = $data['data'][0];
$onData($data);
},
$onClose = function () {
// 关闭链接
}
);
}
private function crateWsSign($timeStamp)
{
$method = 'GET';
$path = '/users/self/verify';
$str = $timeStamp . $method . $path;
$sign = hash_hmac('sha256', $str, $this->apiInfo->secret, true);
$sign = base64_encode($sign);
return $sign;
}
private function wsLogin()
{
$ts = time();
$subData = [];
$subData['op'] = 'login';
$subData['args'] = [
[
'apiKey' => $this->apiInfo->key,
'passphrase' => $this->apiInfo->passphrase,
'timestamp' => $ts,
'sign' => $this->crateWsSign($ts),
]
];
$this->wsAcc->push(json_encode($subData));
}
// ws 消息预处理
private function onWsDataPre($data, callable $onWsData)
{
$data = json_decode($data, true);
if (isset($data['event'])) {
if ($data['event'] == 'login' && $data['code'] == '0') {
output('ws登录成功');
$this->wsSubscribe();
return;
}
if ($data['event'] == 'subscribe' || $data['event'] == 'unsubscribe' || $data['event'] == 'channel-conn-count') {
// output("ws 过滤数据", $data);
return;
}
output("ok ws 未处理数据", $data);
}
call_user_func($onWsData, $data);
}
// 订阅
private function wsSubscribe()
{
$subData = [];
$subData['op'] = 'subscribe';
$subData['args'] = [
[
'channel' => 'orders',
'instType' => 'SWAP',
],
[
'channel' => 'positions',
'instType' => 'SWAP',
],
[
'channel' => 'account',
'ccy' => 'USDT',
]
];
$this->wsAcc->push(json_encode($subData));
}
public function placeOrder($param)
{
return $this->api->placeOrder($param);
}
public function getKlineChannels()
{
return [
'1s' => 'candle1s',
'1m' => 'candle1m',
'5m' => 'candle5m',
'15m' => 'candle15m',
'30m' => 'candle30m',
'1h' => 'candle1H',
'2h' => 'candle2H',
'4h' => 'candle4H',
'6h' => 'candle6H',
'12h' => 'candle12H',
'1d' => 'candle1D',
];
}
public function getSymbolInfos()
{
$res = $this->api->instruments(["instType" => "SWAP"]);
if ($res['code'] != '0') {
return [];
}
return $res['data'];
}
public function stopListen()
{
$this->wsAcc->close();
$this->wsKline->close();
}
}