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
|
package api
import (
"fmt"
"immae.eu/Immae/Projets/Cryptomonnaies/Cryptoportfolio/Front/db"
)
type MarketConfigQuery struct {
In struct {
User db.User
Market string
}
}
func (q MarketConfigQuery) ValidateParams() *Error {
if q.In.Market != "poloniex" {
return &Error{BadRequest, "invalid market name", fmt.Errorf("'%v' is not a valid market name", q.In.Market)}
}
return nil
}
func (q MarketConfigQuery) Run() (interface{}, *Error) {
config, err := db.GetUserMarketConfig(q.In.User.Id, q.In.Market)
if err != nil {
return nil, NewInternalError(err)
}
if config == nil {
configMap := make(map[string]string)
configMap["key"] = ""
configMap["secret"] = ""
config, err = db.SetUserMarketConfig(q.In.User.Id, q.In.Market, configMap)
if err != nil {
return nil, NewInternalError(err)
}
}
return config.Config, nil
}
type UpdateMarketConfigQuery struct {
In struct {
User db.User
Market string
Key string
Secret string
}
}
func (q UpdateMarketConfigQuery) ValidateParams() *Error {
if q.In.Market == "" {
return &Error{BadRequest, "invalid market name", fmt.Errorf("'%v' is not a valid market name", q.In.Market)}
}
return nil
}
func (q UpdateMarketConfigQuery) Run() (interface{}, *Error) {
configMap := make(map[string]string)
if q.In.Key != "" {
configMap["key"] = q.In.Key
}
if q.In.Secret != "" {
configMap["secret"] = q.In.Secret
}
_, err := db.SetUserMarketConfig(q.In.User.Id, q.In.Market, configMap)
if err != nil {
return nil, NewInternalError(err)
}
return nil, nil
}
|