-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathapi.go
More file actions
226 lines (219 loc) · 8.2 KB
/
api.go
File metadata and controls
226 lines (219 loc) · 8.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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
package upbit
import (
"fmt"
"net/http"
)
const (
FuncGetAccounts = "GetAccounts"
FuncGetOrderChance = "GetOrderChance"
FuncGetOrder = "GetOrder"
FuncGetOrders = "GetOrders"
FuncPurchaseOrder = "PurchaseOrder"
FuncSellOrder = "SellOrder"
FuncCancelOrder = "CancelOrder"
FuncGetWithdraws = "GetWithdraws"
FuncGetWithdraw = "GetWithdraw"
FuncGetWithdrawChance = "GetWithdrawChance"
FuncWithdrawCoin = "WithdrawCoin"
FuncWithdrawKrw = "WithdrawKrw"
FuncGetDeposits = "GetDeposits"
FuncGetDeposit = "GetDeposit"
FuncGenerateDepositCoinAddress = "GenerateDepositCoinAddress"
FuncGetDepositCoinAddresses = "GetDepositCoinAddresses"
FuncGetDepositCoinAddress = "GetDepositCoinAddress"
FuncDepositKrw = "DepositKrw"
FuncGetWalletStatus = "GetWalletStatus"
FuncGetApiKeys = "GetApiKeys"
FuncGetMarkets = "GetMarkets"
FuncGetMinuteCandles = "GetMinuteCandles"
FuncGetDayCandles = "GetDayCandles"
FuncGetWeekCandles = "GetWeekCandles"
FuncGetMonthCandles = "GetMonthCandles"
FuncGetTradeTicks = "GetTradeTicks"
FuncGetTickers = "GetTickers"
FuncGetOrderbooks = "GetOrderbooks"
RouteAccounts = "/accounts"
RouteOrderChance = "/orders/chance"
RouteOrder = "/order"
RouteOrders = "/orders"
RouteWithdraws = "/withdraws"
RouteWithdraw = "/withdraw"
RouteWithdrawsChance = "/withdraws/chance"
RouteWithdrawsCoin = "/withdraws/coin"
RouteWithdrawsKrw = "/withdraws/krw"
RouteDeposits = "/deposits"
RouteDeposit = "/deposit"
RouteDepositsGenerateCoinAddress = "/deposits/generate_coin_address"
RouteDepositsCoinAddresses = "/deposits/coin_addresses"
RouteDepositsCoinAddress = "/deposits/coin_address"
RouteDepositsKrw = "/deposits/krw"
RouteStatusWallet = "/status/wallet"
RouteApiKeys = "/api_keys"
RouteMarketAll = "/market/all"
RouteCandlesMinutes = "/candles/minutes/"
RouteCandlesDays = "/candles/days"
RouteCandlesWeeks = "/candles/weeks"
RouteCandlesMonths = "/candles/months"
RouteTradesTicks = "/trades/ticks"
RouteTicker = "/ticker"
RouteOrderbook = "/orderbook"
ApiSectionExchange = "exchange"
ApiSectionQuotation = "quotation"
ApiGroupDefault = "default"
ApiGroupOrder = "order"
ApiGroupStatusWallet = "status-wallet"
ApiGroupMarket = "market"
ApiGroupCandles = "candles"
ApiGroupCrixTrades = "crix-trades"
ApiGroupTicker = "ticker"
ApiGroupOrderbook = "orderbook"
)
type ApiInfo struct {
Method, Url, Section, Group string
}
func GetApiInfo(funcName string) (*ApiInfo, error) {
switch funcName {
case FuncGetAccounts: //전체 계좌 조회
return &ApiInfo{
Method: http.MethodGet, Url: RouteAccounts,
Section: ApiSectionExchange, Group: ApiGroupDefault,
}, nil
case FuncGetOrderChance: //주문 가능 정보
return &ApiInfo{
Method: http.MethodGet, Url: RouteOrderChance,
Section: ApiSectionExchange, Group: ApiGroupDefault,
}, nil
case FuncGetOrder: //개별 주문 조회
return &ApiInfo{
Method: http.MethodGet, Url: RouteOrder,
Section: ApiSectionExchange, Group: ApiGroupDefault,
}, nil
case FuncGetOrders: //주문 리스트 조회
return &ApiInfo{
Method: http.MethodGet, Url: RouteOrders,
Section: ApiSectionExchange, Group: ApiGroupDefault,
}, nil
case FuncPurchaseOrder: //매수하기
return &ApiInfo{
Method: http.MethodPost, Url: RouteOrders,
Section: ApiSectionExchange, Group: ApiGroupOrder,
}, nil
case FuncSellOrder: //매도하기
return &ApiInfo{
Method: http.MethodPost, Url: RouteOrders,
Section: ApiSectionExchange, Group: ApiGroupOrder,
}, nil
case FuncCancelOrder: //주문 취소 접수
return &ApiInfo{
Method: http.MethodDelete, Url: RouteOrder,
Section: ApiSectionExchange, Group: ApiGroupDefault,
}, nil
case FuncGetWithdraws: //출금 리스트 조회
return &ApiInfo{
Method: http.MethodGet, Url: RouteWithdraws,
Section: ApiSectionExchange, Group: ApiGroupDefault,
}, nil
case FuncGetWithdraw: //개별 출금 조회
return &ApiInfo{
Method: http.MethodGet, Url: RouteWithdraw,
Section: ApiSectionExchange, Group: ApiGroupDefault,
}, nil
case FuncGetWithdrawChance: //출금 가능 정보
return &ApiInfo{
Method: http.MethodGet, Url: RouteWithdrawsChance,
Section: ApiSectionExchange, Group: ApiGroupDefault,
}, nil
case FuncWithdrawCoin: //코인 출금하기
return &ApiInfo{
Method: http.MethodPost, Url: RouteWithdrawsCoin,
Section: ApiSectionExchange, Group: ApiGroupDefault,
}, nil
case FuncWithdrawKrw: //원화 출금하기
return &ApiInfo{
Method: http.MethodPost, Url: RouteWithdrawsKrw,
Section: ApiSectionExchange, Group: ApiGroupDefault,
}, nil
case FuncGetDeposits: //입금 리스트 조회
return &ApiInfo{
Method: http.MethodGet, Url: RouteDeposits,
Section: ApiSectionExchange, Group: ApiGroupDefault,
}, nil
case FuncGetDeposit: //개별 입금 조회
return &ApiInfo{
Method: http.MethodGet, Url: RouteDeposit,
Section: ApiSectionExchange, Group: ApiGroupDefault,
}, nil
case FuncGenerateDepositCoinAddress: //입금 주소 생성 요청
return &ApiInfo{
Method: http.MethodPost, Url: RouteDepositsGenerateCoinAddress,
Section: ApiSectionExchange, Group: ApiGroupDefault,
}, nil
case FuncGetDepositCoinAddresses: //전체 입금 주소 조회
return &ApiInfo{
Method: http.MethodGet, Url: RouteDepositsCoinAddresses,
Section: ApiSectionExchange, Group: ApiGroupDefault,
}, nil
case FuncGetDepositCoinAddress: //개별 입금 주소 조회
return &ApiInfo{
Method: http.MethodGet, Url: RouteDepositsCoinAddress,
Section: ApiSectionExchange, Group: ApiGroupDefault,
}, nil
case FuncDepositKrw: //원화 입금하기
return &ApiInfo{
Method: http.MethodPost, Url: RouteDepositsKrw,
Section: ApiSectionExchange, Group: ApiGroupDefault,
}, nil
case FuncGetWalletStatus: //입출금 현황
return &ApiInfo{
Method: http.MethodGet, Url: RouteStatusWallet,
Section: ApiSectionExchange, Group: ApiGroupStatusWallet,
}, nil
case FuncGetApiKeys: //API 키 리스트 조회
return &ApiInfo{
Method: http.MethodGet, Url: RouteApiKeys,
Section: ApiSectionExchange, Group: ApiGroupDefault,
}, nil
case FuncGetMarkets: //마켓 코드 조회
return &ApiInfo{
Method: http.MethodGet, Url: RouteMarketAll,
Section: ApiSectionQuotation, Group: ApiGroupMarket,
}, nil
case FuncGetMinuteCandles: //분 캔들
return &ApiInfo{
Method: http.MethodGet, Url: RouteCandlesMinutes,
Section: ApiSectionQuotation, Group: ApiGroupCandles,
}, nil
case FuncGetDayCandles: //일 캔들
return &ApiInfo{
Method: http.MethodGet, Url: RouteCandlesDays,
Section: ApiSectionQuotation, Group: ApiGroupCandles,
}, nil
case FuncGetWeekCandles: //주 캔들
return &ApiInfo{
Method: http.MethodGet, Url: RouteCandlesWeeks,
Section: ApiSectionQuotation, Group: ApiGroupCandles,
}, nil
case FuncGetMonthCandles: //월 캔들
return &ApiInfo{
Method: http.MethodGet, Url: RouteCandlesMonths,
Section: ApiSectionQuotation, Group: ApiGroupCandles,
}, nil
case FuncGetTradeTicks: //당일 체결 내역
return &ApiInfo{
Method: http.MethodGet, Url: RouteTradesTicks,
Section: ApiSectionQuotation, Group: ApiGroupCrixTrades,
}, nil
case FuncGetTickers: //현재가 정보
return &ApiInfo{
Method: http.MethodGet, Url: RouteTicker,
Section: ApiSectionQuotation, Group: ApiGroupTicker,
}, nil
case FuncGetOrderbooks: //호가 정보 조회
return &ApiInfo{
Method: http.MethodGet, Url: RouteOrderbook,
Section: ApiSectionQuotation, Group: ApiGroupOrderbook,
}, nil
default:
return nil, fmt.Errorf("function is not defined")
}
}