-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdriver_options.go
95 lines (83 loc) · 2.37 KB
/
driver_options.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
package fireboltgosdk
import "github.com/firebolt-db/firebolt-go-sdk/client"
type driverOption func(d *FireboltDriver)
// WithEngineUrl defines engine url for the driver
func WithEngineUrl(engineUrl string) driverOption {
return func(d *FireboltDriver) {
d.engineUrl = engineUrl
}
}
// WithDatabaseName defines database name for the driver
func WithDatabaseName(databaseName string) driverOption {
return func(d *FireboltDriver) {
if d.cachedParams == nil {
d.cachedParams = map[string]string{}
}
d.cachedParams["database"] = databaseName
}
}
// WithAccountID defines account ID for the driver
func WithAccountID(accountID string) driverOption {
return func(d *FireboltDriver) {
if d.cachedParams == nil {
d.cachedParams = map[string]string{}
}
if accountID != "" {
d.cachedParams["account_id"] = accountID
}
}
}
func withClientOption(setter func(baseClient *client.BaseClient)) driverOption {
return func(d *FireboltDriver) {
if d.client != nil {
if clientImpl, ok := d.client.(*client.ClientImpl); ok {
setter(&clientImpl.BaseClient)
} else if clientImplV0, ok := d.client.(*client.ClientImplV0); ok {
setter(&clientImplV0.BaseClient)
}
} else {
cl := &client.ClientImpl{
ConnectedToSystemEngine: true,
BaseClient: client.BaseClient{},
}
cl.ParameterGetter = cl.GetQueryParams
setter(&cl.BaseClient)
d.client = cl
}
}
}
// WithToken defines token for the driver
func WithToken(token string) driverOption {
return withClientOption(func(baseClient *client.BaseClient) {
baseClient.AccessTokenGetter = func() (string, error) {
return token, nil
}
})
}
// WithUserAgent defines user agent for the driver
func WithUserAgent(userAgent string) driverOption {
return withClientOption(func(baseClient *client.BaseClient) {
baseClient.UserAgent = userAgent
})
}
// WithClientParams defines client parameters for the driver
func WithClientParams(accountID string, token string, userAgent string) driverOption {
return func(d *FireboltDriver) {
WithAccountID(accountID)(d)
WithToken(token)(d)
WithUserAgent(userAgent)(d)
}
}
// FireboltConnectorWithOptions builds a custom connector
func FireboltConnectorWithOptions(opts ...driverOption) *FireboltConnector {
d := &FireboltDriver{}
for _, opt := range opts {
opt(d)
}
return &FireboltConnector{
d.engineUrl,
d.client,
d.cachedParams,
d,
}
}