-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.go
281 lines (232 loc) · 6.71 KB
/
main.go
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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
package main
import (
"context"
"encoding/json"
"flag"
"fmt"
"log"
"net/http"
"os"
"path/filepath"
"sort"
"strings"
"time"
engine "github.com/z-Wind/concurrencyengine"
"github.com/z-Wind/stock/instance"
"github.com/z-Wind/stock/stocker"
)
var (
buildstamp = ""
githash = ""
goversion = ""
// flag
addr string
accountID string
exePath string
stockers map[string]stocker.Stocker
)
func init() {
flag.StringVar(&addr, "addr", "", "host:port, like localhost:6060 or 127.0.0.1:8090")
flag.StringVar(&accountID, "accountID", "", "(option) TDAmeritrade account id")
}
func setting() {
stockers = make(map[string]stocker.Stocker)
var err error
var path string
exePath, err = getCurExePath()
if err != nil {
path = "./instance"
} else {
path = filepath.Join(exePath, "instance")
}
log.Printf("Current Path:%s", path)
td, err := stocker.NewTDAmeritradeTLS(
filepath.Join(path, "client_secret.json"),
"TDAmeritrade-go.json", filepath.Join(path, "cert.pem"),
filepath.Join(path, "key.pem"),
)
if err != nil {
panic(err)
}
Register("TDAmeritrade", td)
av, err := stocker.NewAlphavantage(instance.AlphaVantageKey)
if err != nil {
panic(err)
}
Register("alphavantage", av)
twse, err := stocker.NewTWSE(exePath)
if err != nil {
panic(err)
}
Register("twse", twse)
yfinance, err := stocker.NewYahooFinance()
if err != nil {
panic(err)
}
Register("yfinance", yfinance)
}
func main() {
flag.Parse()
if addr == "" {
fmt.Printf("addr is empty\n")
flag.PrintDefaults()
return
}
if accountID == "" {
accountID = instance.AccountID
}
setting()
engine.ELog.Start(filepath.Join(exePath, "engine.log"), os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0666)
engine.ELog.SetFlags(0)
defer engine.ELog.Stop()
fmt.Println("=========================================")
fmt.Printf("Git Commit Hash: %s\n", githash)
fmt.Printf("Build Time : %s\n", buildstamp)
fmt.Printf("Golang Version : %s\n", goversion)
fmt.Println("=========================================")
http.Handle("/", http.HandlerFunc(handleIndex))
http.Handle("/quote", http.HandlerFunc(handleGet))
http.Handle("/priceHistory", http.HandlerFunc(handleGet))
http.Handle("/priceAdjHistory", http.HandlerFunc(handleGet))
http.Handle("/savedOrder", http.HandlerFunc(handleSavedOrder))
fmt.Printf("start stock server: http://%s\n", addr)
fmt.Println("=========================================")
fmt.Printf("accountID : %q\n", accountID)
fmt.Println("=========================================")
log.Fatal(http.ListenAndServe(addr, nil))
}
// Register 註冊可用 stocker
func Register(name string, s stocker.Stocker) {
stockers[name] = s
}
func handleIndex(w http.ResponseWriter, req *http.Request) {
w.Header().Set("Content-Type", "text/html")
template, err := parseTemplate(filepath.Join(exePath, "templates/index.html"), nil)
if err != nil {
http.Error(w, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError)
return
}
fmt.Fprintf(w, string(template))
}
func makeQuoteParseFunc(ctx context.Context, f func(context.Context, string) (float64, error)) func(engine.Request) (engine.ParseResult, error) {
return func(req engine.Request) (engine.ParseResult, error) {
parseResult := engine.ParseResult{
Item: nil,
ExtraRequests: []engine.Request{},
RedoRequests: []engine.Request{},
Done: false,
}
symbol := req.Item.(string)
price, err := f(ctx, symbol)
if err != nil {
switch err.(type) {
case stocker.ErrorNoSupport, stocker.ErrorNoFound, stocker.ErrorFatal:
parseResult.Done = true
default:
parseResult.RedoRequests = append(parseResult.RedoRequests, req)
}
return parseResult, err
}
rsp := Response{
symbol: symbol,
item: price,
}
parseResult.Item = rsp
parseResult.Done = true
return parseResult, nil
}
}
func makePriceHistoryParseFunc(ctx context.Context, f func(context.Context, string) ([]*stocker.DatePrice, error)) func(engine.Request) (engine.ParseResult, error) {
return func(req engine.Request) (engine.ParseResult, error) {
parseResult := engine.ParseResult{
Item: nil,
ExtraRequests: []engine.Request{},
RedoRequests: []engine.Request{},
Done: false,
}
symbol := req.Item.(string)
history, err := f(ctx, symbol)
if err != nil {
switch err.(type) {
case stocker.ErrorNoSupport, stocker.ErrorNoFound, stocker.ErrorFatal:
parseResult.Done = true
default:
parseResult.RedoRequests = append(parseResult.RedoRequests, req)
}
return parseResult, err
}
// 日期由小到大
sort.Slice(history, func(i, j int) bool {
return time.Time(history[i].Date).Unix() < time.Time(history[j].Date).Unix()
})
rsp := Response{
symbol: symbol,
item: history,
}
parseResult.Item = rsp
parseResult.Done = true
return parseResult, nil
}
}
func reqToKey(req engine.Request) interface{} {
key := req.Item.(string)
return strings.ToUpper(key)
}
func handleGet(w http.ResponseWriter, req *http.Request) {
w.Header().Set("Content-Type", "application/json")
query := req.URL.Query()
symbolQ := query.Get("symbols")
if symbolQ == "" {
http.Error(w, "symbols is empty", http.StatusBadRequest)
return
}
symbols := strings.Split(symbolQ, ",")
symbols = removeDuplicates(symbols)
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
e := engine.New(ctx, 10, reqToKey)
requests := []engine.Request{}
ctxMap := make(map[string]context.CancelFunc, len(symbols))
for _, symbol := range symbols {
symbol = strings.ToUpper(symbol)
ctxSymbol, cancelSymbol := context.WithCancel(context.Background())
ctxMap[symbol] = cancelSymbol
for _, stk := range stockers {
var parseFunc func(engine.Request) (engine.ParseResult, error)
switch req.URL.Path {
case "/quote":
parseFunc = makeQuoteParseFunc(ctxSymbol, stk.Quote)
case "/priceHistory":
parseFunc = makePriceHistoryParseFunc(ctxSymbol, stk.PriceHistory)
case "/priceAdjHistory":
parseFunc = makePriceHistoryParseFunc(ctxSymbol, stk.PriceAdjHistory)
default:
http.Error(w, fmt.Sprintf("%s\n not support", req.URL.Path), http.StatusBadRequest)
return
}
requests = append(requests, engine.Request{
Item: symbol,
ParseFunc: parseFunc,
})
}
}
// 初始化
prices := make(map[string]interface{}, len(symbols))
for _, symbol := range symbols {
prices[symbol] = nil
}
rspChan := e.Run(requests...)
for rsp := range rspChan {
result := rsp.(Response)
prices[result.symbol] = result.item
e.Recorder.Done(result.symbol)
ctxMap[result.symbol]()
}
err := json.NewEncoder(w).Encode(prices)
if err != nil {
log.Printf("json.NewEncoder error: %s\n", err)
}
}
func handleSavedOrder(w http.ResponseWriter, req *http.Request) {
savedOrder(w, req)
}